Revision a19ff1c55edca3d01e2c66898a67f077c4269f8f authored by Jakub Nowosad on 15 November 2022, 18:30:06 UTC, committed by cran-robot on 15 November 2022, 18:30:06 UTC
1 parent ac4f6ab
depmunic.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/depmunic.R
\docType{data}
\name{depmunic}
\alias{depmunic}
\title{Municipality departments of Athens (Sf)}
\format{
An sf object of 7 polygons with the following 7 variables.
\itemize{
\item{num_dep}{An unique identifier for each municipality department.}
\item{airbnb }{The number of airbnb properties in 2017}
\item{museums }{The number of museums}
\item{population }{The population recorded in census at 2011.}
\item{pop_rest }{The number of citizens that the origin is a non european country.}
\item{greensp}{The area of green spaces (unit: square meters).}
\item{area}{The area of the polygon (unit: square kilometers). }
}
}
\usage{
depmunic
}
\description{
The geographic boundaries of departments (sf) of the municipality of Athens. This is accompanied by various characteristics in these areas.
}
\examples{
if (requireNamespace("sf", quietly = TRUE)) {
library(sf)
data(depmunic)
depmunic$foreigners <- 100*depmunic$pop_rest/depmunic$population
plot(depmunic["foreigners"], key.pos=1)
}
}
\seealso{
properties
}
\keyword{datasets}
\keyword{sf}
Computing file changes ...