coord_cartesian {ggplot2} | R Documentation |
Cartesian coordinates
coord_cartesian(...)
... |
ignored |
The Cartesian coordinate system is the most familiar, and common, type of coordinate system. There are no options to modify, and it is used by default, so you shouldn't need to call it explicitly
This page describes coord_cartesian, see layer
and qplot
for how to create a complete plot from individual components.
A layer
Hadley Wickham, http://had.co.nz/
## Not run: # There aren't any parameters that you can control with # the Cartesian coordinate system, and they're the default, so # you should never need to use it explicitly. Most of the configuration # of the axes and gridlines occurs in the scales, so look at # scale_continuous and scale_discrete for ideas. qplot(rating, length, data=movies) + coord_cartesian() ## End(Not run)