mprop_12192016: mprop_12192016 dataset

Description Usage Format Author(s) Examples

Description

This contains the City of Milwaukee MasterProperty Database (MPROP). The file was downloaded and processed to a data frame on December 19, 2016.

Usage

1

Format

An object of class tbl_df (inherits from tbl, data.frame) with 161685 rows and 92 columns.

Author(s)

Matthew Schumwinger

Examples

1
2
3
4
5
6
7
8
9
head(mprop_12192016)
# join to parcels spdf
combo <- merge(parcels, mprop_12192016, by = TAXKEY, all.x = T)
# how much vacant land in Milwaukee?
v <- subset(combo, LAND_USE_GP == "13")
sum(as.numeric(v$LOT_AREA), na.rm = T) / sum(as.numeric(combo$LOT_AREA), na.rm = T)
# plot vacant land
plot(mkeoutline)
plot(subset(v, add = T, border = "brown")

MatthewSchumwinger/mkedata documentation built on May 7, 2019, 4:34 p.m.