View source: R/createPopulation.R
createPop | R Documentation |
Create a dataframe of all x and y coordinates (as integer values) within a rectangular or square grid of coordinates.
createPop(x_start, x_end, y_start, y_end)
x_start |
The most western coordinate of the grid |
x_end |
The most eastern coordinate of the grid. |
y_start |
The most southern coordinate of the grid. |
y_end |
The most northern coordinate of the grid. |
A grid of locations with coordinates (x, y).
population <- createPop( x_start = 5, x_end = 27, y_start = 5, y_end = 27 )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.