I am just starting to work with R and I want to make a column bargraph comparing the density of individuals for 3 different species over multiple months. Every time I enter the code for making a bargraph it outputs a graph with all the same y-values for each species in every month. The code I used is below. I first had to gather my data utilizing tidyr in order to make the graph as the data was organized by a column for each individual species. How can I make the bargraph display my y-values for each data point? Thanks.
ggplot(Bargraphstuff, aes(fill=Species, y='Density per 10 cm Octocoral', x=Month)) +
geom_bar(position="dodge", stat="identity")