-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Line Plot dialogue is not producing multiple plots for multiple variables #9273
Comments
@fagiothree that is correct, the issue is with code. When you set colour directly in geom_line(), you're specifying a fixed color for all the lines. In the current code, colour="blue" means that all the lines will be blue, regardless of the data. I'm ignoring the reason it has been changed like that. Perhaps @rdstern can explain this or it is just an issue with code that needs to be fixed now. |
Thanks @fagiothree for pointing this out, we experience the same issue during Uganda workshop and as @N-thony mentioned, the colour is fixed for all the lines. I think we can remove that part to match how it worked in earlier versions. |
@N-thony @Vitalis95 I think the problem is not just in the colour, but it is considering all the points as part of the same line, see this graph displaying mean(tmax) and mean(tmin) by year for dodoma |
@fagiothree this is what I get when I edit the code from the script window by removing |
Describe the bug
In R-Instat 0.8.0 the Line Plot dialogue is not producing multiple plots for multiple variables, but a single plot
To Reproduce
Steps to reproduce the behaviour (could use any data set). For example
the output obtained is the following
Expected behaviour
We should get a line per variable (graph obtained with the same dialogue in R-Instat 0.7.6
The text was updated successfully, but these errors were encountered: