Explore methods for visualizing data in R using
Single categorical predictor
Two categorical predictors
Single quantitative variable
Mix of quantitative and categorical variables
Remember:
goal(y~x, data=mydata)Variations:
goal(~x, data=mydata) for just one variablegoal(y~x|z, data=mydata) for a multipanel plot (for grouped data)goal(y~x, color=~z, data=mydata) to map color to a third variableFor a few other variations, see this website!
Access with ?function name
Description Provides information about what the function does.
Usage gives examples of how you would use the function.
Arguments provides a list of options that you can supply to the function.
Details gives more information about how the function works.
Value tells you what is returned when you type the function.
Examples Examples illustrating the use of the code.