R Studio Lab Summary Sheet
R Studio Lab Summary Sheet
R Studio Lab Summary Sheet
Categorical Data
Calculating using R Studio table(variable) one-way table
+ addition table(variable1,variable2) two-way table
- subtraction percent=round(100*table(variable/sum(variable)))
* multiplication
/ division pie(table(variable)) for a pie
^ powers chart
() to ensure the BEDMAS rules are applied barplot(table(variable)) for a bar
correctly chart