How to make a histogram of your data

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