diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-10-19 11:51:19 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-10-19 11:51:19 -0500 |
commit | 2f1bb3400c76edce98eaa11a9601b06d5d18fac2 (patch) | |
tree | acd7b06f701b595f5c53cc85b86f2598f66c2818 | |
parent | 52ea45732eecad05855725be1fdb42b0f999a446 (diff) | |
download | audit-tools-2f1bb3400c76edce98eaa11a9601b06d5d18fac2.tar.gz audit-tools-2f1bb3400c76edce98eaa11a9601b06d5d18fac2.tar.bz2 audit-tools-2f1bb3400c76edce98eaa11a9601b06d5d18fac2.zip |
missed a couple pylint fixes in comments
-rw-r--r-- | sampling/sample.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sampling/sample.py b/sampling/sample.py index f8ea211..7f74285 100644 --- a/sampling/sample.py +++ b/sampling/sample.py @@ -30,5 +30,5 @@ print("Sample:\n", sample) # larger than the population, you will need to use the `replace=True` parameter. # # # Sample Size: 25 + 5 replacement samples -# sample_size = 30 -# sample = df.sample(30, replace=True) +# SAMPLE_SIZE = 30 +# sample = df.sample(SAMPLE_SIZE, replace=True) |