8000 GitHub - lineageispig/lineageispig: Config files for my GitHub profile.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

lineageispig/lineageispig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

  • 👋 Hi, I’m @lineageispig
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...

title: "Hypothesis Testing in R" output: html_notebook

# generate random population
population <- rnorm(300, mean=65, sd=3.5)

# calculate population mean here:
population_mean <- mean(population)
population_mean
# generate sample 1
sample_1 <- sample(population, size=30)
sample_1

# calculate sample 1 mean
sample_1_mean <- mean(sample_1)
sample_1_mean
# generate samples 2,3,4 and 5
sample_2 <- sample(population, size=30)
sample_3 <- sample(population, size=30)
sample_4 <- sample(population, size=30)
sample_5 <- sample(population, size=30)
# calculate sample means here:
sample_2_mean <- "Not calculated"
sample_2_mean
sample_3_mean <- "Not calculated"
sample_3_mean
sample_4_mean <- "Not calculated"
sample_4_mean
sample_5_mean <- "Not calculated"
sample_5_mean

About

Config files for my GitHub profile.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0