I would like one category per faceted box plot. Instead I am currently getting distribution points for all categories in each faceted box.
Category Age
A 31
A 35
A 28
B 34
B 30
B 40
C 22
C 25
C 24
ggplot(DATASET, aes(x = DATASET$Category, y = DATASET$Age)) +
geom_point() +
ggtitle('Distribution of Player Age By Category') +
facet_grid( .~DATASET$Category )