Skip to content

Commit 45ac5ee

Browse files
committed
Fixing frequency tables cookbook typos
1 parent 3de04f3 commit 45ac5ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cookbook/frequency_tables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ xan view
123123

124124
## 3. Sparing as much memory as possible
125125

126-
One thing to notice with both solution 1 and 2 is that we still need to be able to fit all the existing domains and the associated count in memory. This might be too much for some computers.
126+
One thing to notice with both solutions 1 and 2 is that we still need to be able to fit all the existing domains and the associated count in memory. This might be too much for some computers.
127127

128-
But if we look closely our input files, we would notice that the system cleverly write the monthly files sorted on the domain column. Luckily, it is very easy to merge sorted lists without using more memory than what is required to store one CSV row per merged file, using the proper [algorithms](https://en.wikipedia.org/wiki/Merge_algorithm).
128+
But if we look closely our monthly input files, we would notice that they are already sorted on the domain column. Luckily, it is very easy to merge sorted lists without using more memory than what is required to store one CSV row per merged file, using the proper [algorithms](https://en.wikipedia.org/wiki/Merge_algorithm).
129129

130130
This is what the `xan merge` command does:
131131

0 commit comments

Comments
 (0)