Skip to content

Commit 8e3b897

Browse files
authored
Better ReadMe
1 parent d20b39b commit 8e3b897

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ the number of items contained in the stream is unknown.
1111

1212
This has some advantages over other sampling procedures:
1313

14-
- If the iterable is lazy, the memory required grows in relation to the size of the sample, instead of the all population.
15-
- The sample collected is a random sample of the portion of the stream seen thus far at any point of the sampling process.
14+
- If the iterable is lazy, the memory required is a small constant or grows in relation to the size of the sample,
15+
instead of the all population.
16+
- With reservoir methods, the sample collected is a random sample of the portion of the stream seen thus far at any
17+
point of the sampling process.
1618
- In some cases, sampling with the techniques implemented in this library can bring considerable performance gains, since
1719
the population of items doesn't need to be previously stored in memory.
1820

0 commit comments

Comments
 (0)