This database contains house sales price and characteristics for a spatial hedonic regression, Baltimore, MD 1978.
baltimore_home
An sf data frame with 211 rows, 18 variables, and a geometry column:
ID variable
Sales price of house in $1,000 (MLS)
Number of rooms
1 if detached unit, 0 otherwise
Number of bathrooms
1 if patio, 0 otherwise
1 if fireplace, 0 otherwise
1 if air conditioning, 0 otherwise
1 if basement, 0 otherwise
Number of stores
Number of car spaces in garage (0 = no garage)
Age of dwelling in years
1 if dwelling is in Baltimore County, 0 otherwise
Lot size in hundreds of square feet
Interior living space in hundreds of square feet
X Coordinate on the Maryland grid
Y Coordinate on the Maryland grid
Original data made available by Robin Dubin, Weatherhead School of Management, Case Western Research University, Cleveland, OH. Reference: Dubin, Robin A. (1992). Spatial autocorrelation and neighborhood quality. Regional Science and Urban Economics 22(3), 433-452.
Sf object, projected, X,Y on Maryland grid, projection type unknown.
if (requireNamespace("sf", quietly = TRUE)) { library(sf) data(baltimore_home) plot(baltimore_home["AGE"]) }