diff options
author | Christian Cleberg <hello@cleberg.net> | 2025-08-02 13:02:43 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2025-08-02 13:02:43 -0500 |
commit | b598a79d270b3a91b0e6d5f3b9dca4aecca2dd4c (patch) | |
tree | 5faf22af7a20ea6f7639fa3bdbde5210144959e6 /sampling/README.md | |
parent | a24b16d1c04f396209d1e80168f5df12e79bc438 (diff) | |
download | audit-tools-b598a79d270b3a91b0e6d5f3b9dca4aecca2dd4c.tar.gz audit-tools-b598a79d270b3a91b0e6d5f3b9dca4aecca2dd4c.tar.bz2 audit-tools-b598a79d270b3a91b0e6d5f3b9dca4aecca2dd4c.zip |
fix: convert README.org to README.md
Diffstat (limited to 'sampling/README.md')
-rw-r--r-- | sampling/README.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sampling/README.md b/sampling/README.md new file mode 100644 index 0000000..005424a --- /dev/null +++ b/sampling/README.md @@ -0,0 +1,31 @@ +# `sample.py` + +``` bash +python ./sample.py +``` + +``` text +Dataframe size (rows, columns): (100, 9) +Sample size: 5 +Sample: + Index Organization Id ... Industry Number of employees +79 80 cBa7EFe5D05Adaf ... Online Publishing 7805 +97 98 E7df80C60Abd7f9 ... Broadcast Media 236 +3 4 2bFC1Be8a4ce42f ... Automotive 921 +42 43 A2D89Ab9bCcAd4e ... Capital Markets / Hedge Fund / Private Equity 3816 +70 71 32BB9Ff4d939788 ... Wireless 6146 + +[5 rows x 9 columns] +``` + +# `sample.html` + +This is an interactive web page that allows users to submit their +population size, sample size(s), and generate a psuedo-random sample +list of numbers to use when sampling against their population. + +Samples can be re-generated and validated using the seed numbers +provided during the original generation. + +<span class="spurious-link" +target="sample-html.png">*sample-html.png*</span> |