Solution: Create Plots with Facets, Colors and Descriptive Labels
Let's have a look at the solution of the previous exercise.
Solution
As always, let’s look at the structure to make sure everything looks good.
R
str(RxP.clean)
We want to examine how Age.DPO
at metamorphosis varies with SVL.final
at metamorphosis. The assignment didn’t specify what type of plot to make, but hopefully, you were able to work it out. Since both variables are continuous, we’re making a scatterplot. We can use the qplot()
function to ...