File: borders-yk.rd

package info (click to toggle)
r-cran-ggplot2 0.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,084 kB
  • sloc: makefile: 3
file content (35 lines) | stat: -rw-r--r-- 979 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
\name{borders}
\alias{borders}
\title{Map borders.}
\author{Hadley Wickham <h.wickham@gmail.com>}

\description{
Create a layer of map borders
}
\usage{borders(database = "world", regions = ".", fill = NA, colour = "grey50", ...)}
\arguments{
\item{database}{map data, see \code{\link[maps]{map}} for details}
\item{regions}{map region}
\item{fill}{fill colour}
\item{colour}{border colour}
\item{...}{other arguments passed on to \code{\link{geom_polygon}}}
}



\examples{if (require(maps)) {
ia <- map_data("county", "iowa")
mid_range <- function(x) mean(range(x))
seats <- ddply(ia, .(subregion), colwise(mid_range, .(lat, long)))
ggplot(ia, aes(long, lat)) + 
geom_polygon(aes(group = group), fill = NA, colour = "grey60") +
geom_text(aes(label = subregion), data = seats, size = 2, angle = 45)

data(us.cities)
capitals <- subset(us.cities, capital == 2)
ggplot(capitals, aes(long, lat)) +
borders("state") + 
geom_point(aes(size = pop)) + 
scale_area()
}}
\keyword{hplot}