Main Goal
Statistics is all about using the sample statistic to estimate the population parameter.
During this worksheet we will explore R and RStudio. We’ll be using these throughout the course both to learn the statistical concepts discussed and to analyze real data and come to informed conclusions. ___
Statistics is all about using the sample statistic to estimate the population parameter.
qualitative data: nominal (favorite color) or ordinal (favorite classes top 5, or somewhat agree, strongly agree etc.)
quantitative data: discrete (number of students in a particular major) or continuous (time dependent)
bar graphs, pie charts, and pareto charts are good for qualitative data.
basically all other graphs are for quantitative data
care mostly about display data effectively and accurately
Each time you take a sample, the statstic you measure is likely to vary
the top left pane is called the Workspace. It can be used to write code!
bottom left pane is where the coding happens
bottom right pane is file manager, plots, package manager
top right pane is your environment
# this is an R code chunk
students <- 8
groupA <- 3/4*students
groupB <- 1/4*students