Skip to content

Commit 53e1c3a

Browse files
committed
more edits
1 parent 1cc7eb5 commit 53e1c3a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/posts/flox-smart/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,16 +137,16 @@ For more detail [see the docs](https://flox.readthedocs.io/en/latest/implementat
137137
Suggestions and improvements are very welcome!
138138

139139
Here is containment `C[i, j]` for a range of chunk sizes from 1 to 12 for computing `groupby("time.month")` of a monthly mean dataset.
140-
The images only show 12 time steps.
141-
These are colored so that light yellow is C=0, and dark purple is C=1.
140+
These panels are colored so that light yellow is `C=0`, and dark purple is `C=1`.
142141
`C[i,j] = 1` when the chunks occupied by group `i` perfectly overlaps with those occupied by group `j` (so the diagonal elements
143142
are always 1).
143+
Since there are 12 groups, `C` is a 12x12 matrix.
144144
The title on each image is `(chunk size, sparsity)`.
145-
When the chunksize _is_ a divisor of the period 12, $C$ is a [block diagonal](https://en.wikipedia.org/wiki/Block_matrix) matrix.
146-
When the chunksize _is not_ a divisor of the period 12, $C$ is much less sparse in comparison.
145+
When the chunksize _is_ a divisor of the period 12, `C` is a [block diagonal](https://en.wikipedia.org/wiki/Block_matrix) matrix.
146+
When the chunksize _is not_ a divisor of the period 12, `C` is much less sparse in comparison.
147147
![flox sparsity image](https://flox.readthedocs.io/en/latest/_images/containment.png)
148148

149-
Given the above `C`, flox will choose `"cohorts"` for chunk sizes (1, 2, 3, 4, 6, 12), and `"map-reduce"` for the rest.
149+
Given the above `C`, flox will choose `"cohorts"` for chunk sizes (1, 2, 3, 4, 6), and `"map-reduce"` for the rest.
150150

151151
Cool, isn't it?!
152152

0 commit comments

Comments
 (0)