Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sampling with & without replacement #310

Open
csawtelle opened this issue Mar 6, 2018 · 2 comments
Open

Sampling with & without replacement #310

csawtelle opened this issue Mar 6, 2018 · 2 comments

Comments

@csawtelle
Copy link
Collaborator

Sampling with replacement, calculate the parameter. Sampling with replacement just means that when you "take out" the sample, you leave a duplicate in its place.

Ex Sample without replacement:
data = {1,2,3,4,5} sample out 4 - result data = {1,2,3,5}
another sample
data = {1,2,3,5} sample out 1 - result data = {2,3,5}
etc...

Sampling with replacement just means that you can sample out the same number multiple times, since you leave the "duplicate" inside the dataset.

@csawtelle
Copy link
Collaborator Author

@csawtelle
Copy link
Collaborator Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant