#How to Exclude Variable Observations
##Household Survey
###Honduran Bean Producers 2012
######Data set is: HND_plotlevel_Sec_B_df
#>*trying to take data set and get a bar graph of observations of variable B36, specifically when those observations record values of 1,2,3,4,5,6, 7, and 99 - these eight options were the only values the survey gave as options.*
HND_plotlevel_Sec_B_df %>%
filter(B36 !="8-98") %>%
geom_bar(mapping=aes(x=B36))
#>I tried to exclude values of 8 thru 98 hoping that would leave me with only the ones I want listed above (1,2,3,4,5,6,7,99), but that don't seem to work. And when I plot without the filter function, it gives me a huge spread on the x axis which makes the bar graph look dumb. It'd be great to just compare the frequency of these specific observation values (1,2,3,4,5,6,7,99)