-
Notifications
You must be signed in to change notification settings - Fork 6
juncheng edits #53
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
Open
poipiii
wants to merge
15
commits into
xy-241:v4
Choose a base branch
from
poipiii:v4
base: v4
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
juncheng edits #53
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
67df222
jc edits
poipiii 92f0d79
Merge remote-tracking branch 'origin/v4' into first-edits
poipiii 86a0bd7
Merge pull request #1 from poipiii/first-edits
poipiii 7702c55
Merge branch 'xy-241:v4' into v4
poipiii 589f383
Merge branch 'xy-241:v4' into v4
poipiii fa2c70f
Updated sll slr mips
poipiii 663bca5
Merge branch 'xy-241:v4' into v4
poipiii ab44378
Merge branch 'v4' into v4
poipiii 1e76e48
Merge branch 'v4' into v4
poipiii 9b09518
edits
poipiii f7d3a6b
Merge branch 'xy-241:v4' into v4
poipiii e7d81c4
Merge branch 'xy-241:v4' into v4
poipiii 185bfbe
edits
poipiii 2c7ba7a
Merge branch 'v4' of https://github.com/poipiii/CS-Notes into v4
poipiii 26674fb
Merge branch 'xy-241:v4' into v4
poipiii File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# gea1000 | ||
|
||
|
||
## probability sampling | ||
|
||
### simple random sampling | ||
|
||
randomly assign a person a number and then use a random. number generator to then pick x number | ||
|
||
|
||
### systematic sampling | ||
split the population into groups of k interval e.g populaton is 30 and k = 5 then each group have 6 | ||
|
||
then randomly pick one in each group | ||
|
||
|
||
### random stratified sampling | ||
|
||
split population into groups based on characteristics,e.g gender,age group | ||
|
||
then randomly pick a member from each group | ||
|
||
|
||
### cluster sampling | ||
|
||
cluster population into clusters based on similarity and then randomly sample form each cluster | ||
|
||
|
||
### pros and cons | ||
|
||
| Sampling Plan | Advantages | Disadvantages | | ||
|-------------------------|----------------------------------------------------|-------------------------------------------------------------| | ||
| Simple Random Sample | Good Representation of the Population | Time-consuming; accessibility of information | | ||
| Systematic Sample | Simpler selection process as opposed to Simple Random Sampling | Potentially under-representing the population | | ||
| Stratified Random Sample | Good Representation of Sample by Stratum | Require Sampling Frame and criteria for classification of population into stratum | | ||
| Cluster Random Sample | Less time-consuming and less costly | Require larger sample size in order to achieve low margin of error | | ||
|
||
|
||
## non probability sampling | ||
|
||
selection is not done using randomness/probability | ||
|
||
|
||
|
||
|
||
|
||
# data variables | ||
|
||
|
||
# numerical | ||
- discrete | ||
- continuous () | ||
|
||
|
||
# categorical | ||
- ordinal (e.g rating) | ||
- nominal (e.g name) | ||
|
||
|
||
# experimental groups | ||
|
||
- give a placebo | ||
- double blind means subject and asserrs dont know what is what hence no bias | ||
|
||
|
||
|
||
|
||
## identify variables | ||
|
||
variabkes used to indenity | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Please correct typos ('variabkes' → 'variables', 'indenity' → 'identify').
Copilot uses AI. Check for mistakes.