Explore
Connect
Documentation
Snippets
Log in
Sign up
1
2
3
4
5
6
7
8
# Example 1 - the Animals dataset
library(MASS)
Animals
qplot(brain, body, data = Animals)
# Example 2 - a power transformation
qplot(brain, body, log =
"xy"
, data = Animals)
Enter to Rename, Shift+Enter to Preview
Run