I am trying to add a y limit and x and y labels to my ggplot/violin plot but when I type in the commands below the y axis still has a limit of 3 and the axis titles haven't changed, why is this?
biol<-ggplot(five,aes(Derivative,Score),ylim=c(0,10), xlab=("TLR4 Antagonist"), ylab=("Score"))
biol+geom_violin()+geom jitter(height=0,width=0.1)