Hi everyone im trying to change the y scale and used the following code chunk
ggplot(data=Merged_Dataset, aes(x=MintuesAsleep, y=TimeInBed))+
geom_point() + geom_smooth() +labs(title="Mintues Asleep vs Time In Bed")+
xlim=c(0,200)+
ylim=c(0,200)
and got error message :"Error in c(0, 200) + ylim = c(100, 150) :
target of assignment expands to non-language object"
im simply trying to change the y scale in increments of 200 instead of 250