circle: Compute cartesian coordinates of a cluster center and radius

View source: R/circle.R

circleR Documentation

Compute cartesian coordinates of a cluster center and radius

Description

This function is used for plotting purposes

Usage

circle(geo, cluster.center, cluster.end)

Arguments

geo

A n x 2 table of the x-coordinate and y-coordinates of the centroids of each area

cluster.center

The area index (an integer between 1 and n) indicating the center of the circle

cluster.end

The area index (an integer between 1 and n) indicating the area at the end of the circle

Value

cluster.radius

A data frame that you can plot

Author(s)

Albert Y. Kim

Examples

data(pennLC)
geo <- pennLC$geo[,2:3]
plot(geo,type='n')
text(geo,labels=1:nrow(geo))
lines( circle(geo, 23, 46), col = "red" )

SpatialEpi documentation built on March 7, 2023, 8 p.m.