You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today we covered most of the material from lesson 2 leaving out most of the examples of how to customize ggplots.
We did exercises 1 through 3 in some capacity. We talked about factors a bit following the planned lesson, but we wound up using an example from the ggplot2 documentation do demonstrate how factors vs continuous variables work.
This happened because it was causing students issues when coloring data because there's an example in the ggplot2 reference manual that coerces a continuous variable to a factor
I had students replicate the plot without the factor call to see that ggplot by default makes it a color gradient. This is because the data type is a numeric not a factor.
I then used the factor(c("one", "two", "two", "three")) example to illustrate how factors have levels and their default assignment is alphanumeric ordering.
I ended the class by showing them how to make facets and how to use the labs function to rename axis labels and legend titles and showed them ggtitle to give a title to the plot. Finally, I told them about the theme() function and how it can be used to customize a lot of things, but I didn't give examples and instead pointed them to the ggplot2 reference page.
I told them to try to work on the final exercise outside of class and we will pick up & review it at the beginning of next weeks lesson.
The text was updated successfully, but these errors were encountered:
Today we covered most of the material from lesson 2 leaving out most of the examples of how to customize ggplots.
We did exercises 1 through 3 in some capacity. We talked about factors a bit following the planned lesson, but we wound up using an example from the ggplot2 documentation do demonstrate how factors vs continuous variables work.
This happened because it was causing students issues when coloring data because there's an example in the ggplot2 reference manual that coerces a continuous variable to a factor
I had students replicate the plot without the
factor
call to see that ggplot by default makes it a color gradient. This is because the data type is a numeric not a factor.I then used the
factor(c("one", "two", "two", "three"))
example to illustrate how factors have levels and their default assignment is alphanumeric ordering.I ended the class by showing them how to make facets and how to use the
labs
function to rename axis labels and legend titles and showed themggtitle
to give a title to the plot. Finally, I told them about thetheme()
function and how it can be used to customize a lot of things, but I didn't give examples and instead pointed them to the ggplot2 reference page.I told them to try to work on the final exercise outside of class and we will pick up & review it at the beginning of next weeks lesson.
The text was updated successfully, but these errors were encountered: