Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

🏑 Champaign-Urbana Zillow Sold Properties Dataset

This dataset contains information about properties sold in the Champaign-Urbana area (including Savoy), as listed on Zillow. It includes details such as the sale price, property type, number of bedrooms and bathrooms, square footage, and the date of sale. The data has been collected through HasData, a large-scale data collection platform.

πŸ” Search CriteriaΒΆ

πŸ“Š Consulting Scenario: Champaign-Urbana Housing Market AnalysisΒΆ

🏒 Background¢

You are working as a data consultant for a regional real estate investment firm, Kingfisher Residential Partners (KRP), which is looking to expand its portfolio in Champaign, Urbana, and Savoy, Illinois.

KRP specializes in acquiring single-family homes in college towns and mid-sized cities, targeting properties that can generate stable rental income and long-term appreciation.


⚠️ Business Problem¢

Over the past year, KRP has observed increased volatility in housing prices and longer listing times in certain Midwest markets. The firm is considering allocating $5-10 million toward property acquisitions in the Champaign-Urbana-Savoy area but lacks a clear, data-driven understanding of:

To support this decision, KRP has provided you with a dataset of recent Zillow listings in the region.

πŸ“¦ Why This Data MattersΒΆ

The dataset contains detailed listing-level information, including:

This data allows you to analyze both pricing dynamics and market liquidity, which are critical for identifying attractive investment opportunities.

🎯 Your Role¢

As a data consultant, your task is to analyze this dataset and provide actionable recommendations to KRP’s investment team.

❓ Key Questions to AddressΒΆ

You are expected to structure your analysis around the following:

πŸ™οΈ 1. Market OverviewΒΆ

πŸ’° 2. Pricing DriversΒΆ

⏱️ 3. Market Liquidity¢

πŸ—ΊοΈ 5. Geographic InsightsΒΆ

πŸ“‘ DeliverablesΒΆ

You will present your findings in a Jupyter notebook that includes:

πŸš€ Getting StartedΒΆ

Use the following code to load the dataset and begin your analysis. The dataset is in Parquet format and can be accessed directly from the provided URL.

df = pd.read_parquet("https://github.com/bdi593/datasets/raw/refs/heads/main/zillow-properties/zillow_properties_champaign_urbana_savoy.parquet")
df.head(3)