I am looking to see the number of tourism related policy implementations in the world in 2010. The data if further broken down by states/provinces in those countries and we have how many policy implementations occurred per state/province. I have a table/excel that gives me the following columns: (there are more columns but these are the relevant ones)
I want to make a histogram that shows the number of policy implementations in 2010 on a state/province level.
The problem is that I have quantitative and qualitative data. And I am unsure how to turn that qualitative data into quantitative for the histogram.
My current code:
hist(data.set$polimp2015)
but I don't think its correct
I called the number of tourism related policy implementations column polimp2015 and my overall data set, data.set
How can I show the number of policy implementations in 2010 on a state/province level?