I have variables called Category, BottSold, and County. Basically I want to use the gather and ggplot functions to make multiple bar graphs at once. The bar graph would be County vs. BottSold, but each graph would only take into account a different value of category. Category has values like Vodka, Gin, Whiskey. Basically, the output would be a graph of the different counties vs Bottsold for Whiskey, one for Vodka, one for Gin, and so on. Here is what I've tried to do so far:
Iowa_Gather <- gather(Iowa_Liqour, Category, County, -BottSold)
head(Iowa_Gather)