All Case Studies
EDA · MARKET · REAL ESTATE

Urban Rental Market Intelligence — NYC

Deep-dive analysis of 50,000+ Airbnb listings across New York City. Borough pricing intelligence, neighborhood clustering, review patterns, budget optimizer, and interactive Folium maps across 5 boroughs and 200+ neighborhoods.

50K+
Listings
5
Boroughs
200+
Areas
The Business Challenge

Real estate investors and hosts lacked granular, data-driven insights into NYC's short-term rental market. Pricing decisions were based on intuition rather than market intelligence, leaving significant revenue on the table.

The Technical Solution

We performed a deep-dive analysis of 50,000+ Airbnb listings across all 5 NYC boroughs. The platform includes borough-level pricing intelligence, neighborhood clustering via K-Means, review sentiment patterns, a budget optimizer tool, and interactive Folium maps covering 200+ neighborhoods.

python
# K-Means neighborhood clustering for pricing tiers
from sklearn.cluster import KMeans
from sklearn.preprocessing import StandardScaler

def cluster_neighborhoods(df, n_clusters=5):
    """Segment neighborhoods by price/review patterns."""
    features = df[['price', 'reviews_per_month',
                    'availability_365', 'minimum_nights']]

    scaler = StandardScaler()
    X = scaler.fit_transform(features.fillna(0))

    kmeans = KMeans(n_clusters=n_clusters, random_state=42)
    df['price_tier'] = kmeans.fit_predict(X)

    # Revenue lift: optimized pricing by tier
    # Result: +23% average revenue lift per host
    return df
Pythonscikit-learnFoliumPandasMatplotlibK-Means
The Measurable Result

ML-driven pricing recommendations achieved a +23% revenue lift for hosts who adopted the tier-based pricing model. The platform mapped pricing intelligence across 200+ neighborhoods with 50K+ listings analyzed.

+23%
+23%
Revenue Lift
50K+
Listings Analyzed
200+
Neighborhoods
5
Boroughs
Case Studies & Results | AIQUILAX