coord_cartesian {ggplot2}R Documentation

coord_cartesian

Description

Cartesian coordinates

Usage

coord_cartesian(...)

Arguments

... ignored

Details

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.

Value

A layer

Author(s)

Hadley Wickham, http://had.co.nz/

See Also

Examples

## 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)

[Package ggplot2 version 0.7 Index]