Stats Exam 2 Flashcards
What is a descriptive project
describes situation, not carry out hypothesis test
what is a differences project
compares two sets of data, hypothesis relates to differences between two sets
what is a correlation/regression project
emphasis on linking variables, looking at strength and direction of links between two or more variables
what is an association project
looking for links between variables that are categorical
what graph to use of a descriptive project
histograms, density plots, boxplots
what graph to use for differences projects
bar charts and boxplots
what graph to use for a correlation/regression project
scatterplots and line plots
what graph to use for association projects
bar charts and pie charts
What is the outcome of hypothesis testing
likelihood that a hypothesis is correct
what do we test when we test a hypothesis
the null
how does the p-value help make conclusions
tells the probability that the null hypothesis is correct
what conclusions can we draw with a p-value
reject or fail to reject null hypothesis (no change/difference)
code to make a histogram
hist(object)
code to make a boxplot
boxplot(object)
code to scale x axis
xlim=c(number,number)
code to scale y axis
ylim=c(number, number)
code to label x axis
xlab=”title”
code to label y axis
ylab=”title”
code to title graph
main=”title”