fkriuk commited on
Commit
27a731f
·
verified ·
1 Parent(s): a7c733a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +114 -27
README.md CHANGED
@@ -11,6 +11,8 @@ tags:
11
  - australia
12
  - property-prices
13
  - nsw
 
 
14
  size_categories:
15
  - 1M<n<10M
16
  configs:
@@ -25,51 +27,136 @@ configs:
25
 
26
  # NSW Property Dataset
27
 
28
- Comprehensive property market data for New South Wales, Australia.
29
 
30
- ## Dataset Configurations
31
 
32
- | Config | File | Rows | Description |
33
- |--------|------|------|-------------|
34
- | `sales` (default) | `nsw_property_sales_master.parquet` | 3.49M | Historical property transactions 1990-2024 |
35
- | `enriched` | `nsw_property_master_enriched.parquet` | 83.5K | Properties with analytics, demographics, transport |
36
- | `rental` | `nsw_rental_market_master.parquet` | 48.2K | Rental bond records with pricing |
 
 
 
 
37
 
38
  ## Usage
39
 
40
  ```python
41
  from datasets import load_dataset
42
 
43
- # Load sales data (default)
44
  sales = load_dataset("thehooklab/nsw-property")
45
 
46
- # Load enriched properties
47
  enriched = load_dataset("thehooklab/nsw-property", "enriched")
48
 
49
- # Load rental data
50
  rental = load_dataset("thehooklab/nsw-property", "rental")
 
 
 
51
  ```
52
 
53
- ## Key Features
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
- **Sales Data:**
56
- - Property ID, address, locality, postcode
57
- - Contract date and purchase price
58
- - Property type, zone, land area
59
- - Coordinates (lat/lon for some records)
60
 
61
- **Enriched Properties:**
62
- - Market analytics (median prices, growth potential)
63
- - Rental yield estimates
64
- - Transport accessibility (nearest station, distance)
65
- - Demographics (walkability, family-friendly scores)
66
- - School ratings and crime indices
 
 
 
67
 
68
- **Rental Data:**
69
- - Lodgement dates and weekly rent
70
- - Dwelling types and bedrooms
71
- - Bond amounts
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
 
73
  ## License
74
 
75
- MIT License
 
 
 
 
 
 
11
  - australia
12
  - property-prices
13
  - nsw
14
+ - property-market
15
+ - housing-data
16
  size_categories:
17
  - 1M<n<10M
18
  configs:
 
27
 
28
  # NSW Property Dataset
29
 
30
+ **The world's largest open-source dataset on New South Wales property data.**
31
 
32
+ This comprehensive dataset contains over 3.6 million records spanning property sales, enriched property analytics, and rental market data for New South Wales, Australia. It covers 35 years of historical transactions from 1990 to 2024.
33
 
34
+ ## Dataset Overview
35
+
36
+ | Config | File | Records | Description |
37
+ |--------|------|---------|-------------|
38
+ | `sales` (default) | `nsw_property_sales_master.parquet` | 3,493,361 | Historical property transactions (1990-2024) |
39
+ | `enriched` | `nsw_property_master_enriched.parquet` | 83,548 | Properties with market analytics and demographics |
40
+ | `rental` | `nsw_rental_market_master.parquet` | 48,158 | Rental bond records with pricing data |
41
+
42
+ **Total: 3,625,067 records**
43
 
44
  ## Usage
45
 
46
  ```python
47
  from datasets import load_dataset
48
 
49
+ # Load sales data (default configuration)
50
  sales = load_dataset("thehooklab/nsw-property")
51
 
52
+ # Load enriched properties with analytics
53
  enriched = load_dataset("thehooklab/nsw-property", "enriched")
54
 
55
+ # Load rental market data
56
  rental = load_dataset("thehooklab/nsw-property", "rental")
57
+
58
+ # Example: Filter Sydney properties over $1M
59
+ sydney_premium = sales.filter(lambda x: x['locality'] == 'SYDNEY' and x['purchase_price'] > 1000000)
60
  ```
61
 
62
+ ## Data Description
63
+
64
+ ### Sales Data (3.49M records)
65
+
66
+ Historical property transactions across NSW from 1990 to 2024.
67
+
68
+ | Column | Type | Description |
69
+ |--------|------|-------------|
70
+ | `property_id` | float | Unique property identifier |
71
+ | `house_number` | string | Street number |
72
+ | `street_name` | string | Street name |
73
+ | `locality` | string | Suburb/locality name |
74
+ | `postcode` | float | Australian postcode |
75
+ | `contract_date` | string | Date of sale contract |
76
+ | `purchase_price` | float | Sale price in AUD |
77
+ | `area` | float | Property area |
78
+ | `zone` | string | Zoning classification |
79
+ | `property_type` | string | Type (HOUSE, UNIT, VACANT LAND, etc.) |
80
+ | `sale_year` | int | Year of sale |
81
+ | `lat`, `lon` | float | Geographic coordinates |
82
+ | `num_bed`, `num_bath`, `num_parking` | float | Property features |
83
+ | `land_area` | float | Land size in sqm |
84
+ | `km_from_cbd` | float | Distance from Sydney CBD |
85
+ | `suburb_population` | float | Population of suburb |
86
+ | `suburb_median_income` | float | Median income of suburb |
87
+
88
+ ### Enriched Properties (83.5K records)
89
+
90
+ Properties enhanced with market analytics, demographic indicators, and transport accessibility scores.
91
+
92
+ | Column | Type | Description |
93
+ |--------|------|-------------|
94
+ | `avg_price` | float | Average historical price |
95
+ | `median_price` | float | Suburb median price |
96
+ | `price_category` | string | Affordable, Mid-range, Premium, Luxury |
97
+ | `market_heat` | string | Market activity indicator |
98
+ | `growth_potential` | string | Price growth forecast |
99
+ | `rental_yield_estimate` | float | Estimated rental yield % |
100
+ | `days_on_market_avg` | float | Average days to sell |
101
+ | `auction_clearance_estimate` | float | Auction success rate |
102
+ | `family_friendly_score` | float | Family suitability score |
103
+ | `walkability_score` | float | Pedestrian accessibility |
104
+ | `cafe_culture_score` | float | Local amenities score |
105
+ | `school_rating` | string | School quality rating |
106
+ | `crime_index` | float | Area crime indicator |
107
+ | `gentrification_index` | float | Neighborhood change indicator |
108
+ | `nearest_station` | string | Closest train station |
109
+ | `distance_to_station_km` | float | Distance to station |
110
+ | `transport_score` | float | Public transport accessibility |
111
+
112
+ ### Rental Market (48.2K records)
113
 
114
+ Rental bond lodgement data with weekly rent and dwelling information.
 
 
 
 
115
 
116
+ | Column | Type | Description |
117
+ |--------|------|-------------|
118
+ | `lodgement_date` | string | Bond lodgement date |
119
+ | `postcode` | float | Property postcode |
120
+ | `dwelling_type` | string | House, Unit, Townhouse, etc. |
121
+ | `bedrooms` | float | Number of bedrooms |
122
+ | `weekly_rent` | float | Weekly rent in AUD |
123
+ | `bond_amount` | float | Bond amount in AUD |
124
+ | `annual_rent` | float | Calculated annual rent |
125
 
126
+ ## Use Cases
127
+
128
+ - **Property Price Prediction**: Train ML models to predict property values
129
+ - **Market Analysis**: Analyze price trends across suburbs and time periods
130
+ - **Investment Research**: Identify high-growth areas and rental yields
131
+ - **Urban Planning**: Study development patterns and demographic shifts
132
+ - **Academic Research**: Housing affordability, market dynamics studies
133
+
134
+ ## Data Quality
135
+
136
+ - All numeric columns validated and cleaned
137
+ - String columns properly typed to avoid parsing errors
138
+ - Coordinates available for properties with geolocation data
139
+ - Data sourced from official NSW government records and verified sources
140
+
141
+ ## Citation
142
+
143
+ If you use this dataset in your research or projects, please cite:
144
+
145
+ ```bibtex
146
+ @dataset{nsw_property_2026,
147
+ title={NSW Property Dataset: The World's Largest Open-Source NSW Property Data},
148
+ author={TheHookLab},
149
+ year={2026},
150
+ publisher={HuggingFace},
151
+ url={https://huggingface.co/datasets/thehooklab/nsw-property}
152
+ }
153
+ ```
154
 
155
  ## License
156
 
157
+ MIT License - Free to use for commercial and non-commercial purposes.
158
+
159
+ ## Contributing
160
+
161
+ Found an issue or have suggestions? Open an issue on the dataset repository.
162
+