Description Usage Format References Examples
The SydneyRealEstate data frame has data on several variables concerning houses sold in Sydney, Australia,
during 2001.
1 |
This data frame contains the following columns:
logSalePricenatural logarithm of sale price in Australian dollars.
lotSizelot size in square meters but with some imputation.
longitudedegrees longitude of location of house.
latitudedegrees latitude of location of house.
saleDatesale date in dd/mm/yyy format.
saleQtrfinancial quarter in which sale took place.
infRateinflation rate measure as a percentage.
postCodefour-digit post code of the suburb in which the house located.
crimeDensitycrime density measure for the suburb in which the house is located.
crimeRatecrime rate measure for the suburb in which the house is located.
incomeaverage weekly income of the suburb in which the house is located.
distToBusStopdistance from house to the nearest bus stop (kilometers).
distToCoastlinedistance from house to the nearest coastline location (kilometers).
distToNatParkdistance from house to the nearest national park (kilometers).
distToParkdistance from house to the nearest park (kilometers).
distToRailLinedistance from house to the nearest railway line (kilometers).
distToRailStationdistance from house to the nearest railway station (kilometers).
distToHighwaydistance from house to the nearest highway (kilometers).
distToFreewaydistance from house to the nearest freeway (kilometers).
distToTunneldistance from house to the Sydney Harbour Tunnel (kilometers).
distToMainRoaddistance from house to the nearest main road (kilometers).
distToSealedRoaddistance from house to the nearest sealed road (kilometers).
distToUnsealedRoaddistance from house to the nearest sealed road (kilometers).
airNoiseaircraft noise exposure measure.
foreignerRatioproportion of foreigners in the suburb in which the house is located.
distToGPOdistance from the house to the General Post Office in Sydney's central business district (kilometers).
NOnitrous oxide level recorded at the air pollution monitoring station nearest to the house.
NO2nitrogen dioxide level recorded at the air pollution monitoring station nearest to the house.
ozoneozone level recorded at the air pollution monitoring station nearest to the house.
nephnephelometer suspended matter measurement recorded at the air pollution monitoring station nearest to the house.
PM10particulate matter with a diameter of under 10 micrometers leve recorded at the air pollution monitoring station nearest to the house.
SO2sulphur dioxide level recorded at the air pollution monitoring station nearest to the house.
distToAmbulancedistance from house to the nearest ambulance station (kilometers).
distToFactorydistance from house to the nearest factory (kilometers).
distToFerrydistance from house to the nearest ferry wharf (kilometers).
distToHospitaldistance from house to the nearest hospital (kilometers).
distToMedicaldistance from house to the nearest medical services (kilometers).
distToSchooldistance from house to the nearest school (kilometers).
distToUniversitydistance from house to the nearest university (kilometers).
Chernih, A. and Sherris, M. (2004). Geoadditive hedonic pricing models. Unpublished manuscript. University of New South Wales, Australia.
1 2 3 4 5 6 7 8 9 10 | library(HRW) ; data(SydneyRealEstate)
## Not run:
for (colNum in setdiff((2:39),c(5,8)))
{
plot(jitter(SydneyRealEstate[,colNum]),SydneyRealEstate$logSalePrice,pch = ".",
xlab = names(SydneyRealEstate)[colNum],ylab = "log(sale price)",col = "blue")
readline("Hit Enter to continue.\n")
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.