This dataset, `housing_pts`, is a data frame containing information on median house prices for California districts, derived from the 1990 census. It includes geographic coordinates, demographic and housing characteristics, and district-level income and housing attributes. The dataset consists of 20,640 observations and 10 variables. Missing values may be present in some variables.
data(housing_pts)A data frame with 20,640 observations and 10 variables:
Longitude coordinate of the district (numeric)
Latitude coordinate of the district (numeric)
Median age of houses in the district (numeric)
Total number of rooms in the district (numeric)
Total number of bedrooms in the district (numeric)
Population of the district (numeric)
Number of households in the district (numeric)
Median income in the district (numeric)
Median house value in the district (numeric, in US dollars)
Proximity of the district to the ocean (character string categories)
The dataset name has been kept as `housing_pts` to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of your package and assists users in identifying its specific characteristics. The suffix `pts` indicates that the dataset contains georeferenced point data. The original content has not been modified in any way.