-
-
Notifications
You must be signed in to change notification settings - Fork 394
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
Use of par(mfrow) and grid.arrange #469
Comments
Hi. Thanks for the suggestion! Would you consider it a good idea to put it in the lesson itself or have a separate lesson on graphing? The rationale behind the latter might be that over the course of a live workshop participants would want to play around with the graphing a lot more. |
Hi, |
fmichonneau
pushed a commit
that referenced
this issue
Oct 15, 2020
``` cd assets/js wget https://code.jquery.com/jquery-3.5.1.min.js wget https://code.jquery.com/jquery-3.5.1.min.map mv -f jquery-3.5.1.min.js jquery.min.js mv -f jquery-3.5.1.min.map jquery.min.map ``` Fixes carpentries/styles#460
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I have a small suggestion for the lesson "programming with R". While reviewing the first episode "Analysis of patient data" it was great to see how learners can produce plots for three different things- namely average_day_inflammation, max_day_inflammation, and min_day_inflammation.
I feel here, we can additionally show them how it is also possible to view the three plots together in a single window instead of running each command separately.
This can be done by using the function
par(mfrow=c(1,3))
plot(avg_day_inflammation)
plot(max_day_inflammation)
plot(min_day_inflammation)
Similarly, we can also show them how to produce multiple ggplots in a single window using the function grid.arrange()
The text was updated successfully, but these errors were encountered: