pierce_county_house_sales | R Documentation |
Real estate sales for Pierce County, WA in 2020.
pierce_county_house_sales
A data frame with 16814 rows and 19 variables.
Date the legal document (deed) was executed.
Dollar amount recorded for the sale.
Sum of the square feet for the building.
Finished living area in the attic.
Total square footage of the basement..
Total square footage of the attached or built in garage(s).
Total detached garage(s) square footage.
Total count of single, double or PreFab stoves.
Text description associated with the predominant heating source for the built-as structure i.e. Forced Air, Electric Baseboard, Steam, etc. .
Predominant type of construction materials used for the exterior siding on Residential Buildings.
Predominant type of materials used on the interior walls. i.e. Sheetrock or Paneling.
Number of floors/building levels above grade. Stories do not include attic or basement areas.
Material used for the roof. I.e. Composition Shingles, Wood Shake, Concrete Tile, etc.
Year the building was built, as stated by the building permit or a historical record.
Number of bedrooms listed for a residential property.
Number of baths listed for a residential property. The number is listed as a decimal, i.e. 2.75 = two full and one three-quarter baths. A tub/sink/toilet combination (plus any additional fixtures) is considered 1.0 bath. A shower/sink/toilet combination (plus any additional fixtures) is 0.75 bath. A sink/toilet combination is .5 bath.
Describes the type of waterfront the property adjoins or has legal access to.
Assigned to reflect the market appeal of the overall view available from the dwelling or property.
Identifies if sewer/septic is installed, available or not available or if the property does not support an on site sewage disposal system.
library(dplyr)
library(lubridate)
# List house sales frequency and average price grouped by month
pierce_county_house_sales |>
mutate(month_sale = month(sale_date)) |>
group_by(month_sale) |>
summarize(freq = n(), mean_price = mean(sale_price)) |>
arrange(desc(freq))
# List house sales frequency and average price group by waterfront type
pierce_county_house_sales |>
group_by(waterfront_type) |>
summarize(freq = n(), mean_price = mean(sale_price)) |>
arrange(desc(mean_price))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.