How to make boxplots of your data
- Download
and load your data into R
- Single
boxplot
- boxplot(stresschill$stress_value,
range=0)
- Boxplot
comparing stress chill within a category
- boxplot(stresschill$stress_value~stresschill$category)
- Or
you could make the labels vertical
i. boxplot(stresschill$stress_value~stresschill$category,
las=2)