I have a large dataset (n>11,000) with two columns
witches$decade and witches$tried
I am trying to make a histogram of the sum of all tried by decade (witches$tried has different values for every entry).
I thought of subsetting by decade and assigning the sum of the subsets to a vector, but as the decades go from 1300-1850 doing it by hand is not really an option.
Does anyone have any ideas? Thanks:)