Hello, I'm just starting to learn R.
How can a data point be removed from ggplot?
I would like to remove the "Total Age" row as it's skewing the plot.
All help and guidance is appreciated.
Examples below...
library(ggplot2)
my_data <- read.csv(file = 'Age_data.csv', header = TRUE)
ggplot(my_data) +
geom_point(aes(x=Characteristics, y=Male))
Example of data below...