Hi everyone, I'm new to R studio and I'm trying to make a bar graph plot with ggplot2. I have the "base" for the code, however im having a hard time figuring out what goes into certain parts. Here is a reprex of my dataset (also new to making a reprex) as well as the code im using. The error I'm encountering is with what to put for aes (x= y= and color)
picoeukaryotes sample
1 1834 Site 1
2 3139 Site 2
3 1361 Site 3
ggplot(picoeukaryotes, aes(x=axis1, y=axis2, color=dx)) +
geom_point(shape =10, size =2)+
scale_color_manual(name=NULL,
values = c("blue","red","black"),
breaks = c("Site 1","Site 2","Site 3"),
labels = c("1","2","3"))+
coord_fixed()+
labs(title = "Amount of Picoeukaryotes",
x="Site",
y="Number of Species")+
theme_light()