How to make a histogram of your data
- Download
and load your data into R
- You
may want to subset based on category or subcategory
- interactions
<- subset(stresschill, category == "My personal
interactions")
- Make a
histogram
- hist(interactions$stress_value)