From Plot vectors of different length with ggplot2, I’ve got my plot with lines.
ggplot(plotData, aes(x, y, label=label, group=label)) + geom_line() + stat_smooth()
But this smooths one line each. How do I smooth over all data points?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
should do it. The idea here is to provide a new group aesthetic so that the fitted smoother is based on all the data, not the
group = labelaesthetic.Following the example from @Andrie’s Answer the modification I propose would be:
which would produce: