File size: 28,862 Bytes
40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 ee43b65 40e40b3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 |
import streamlit as st
import pandas as pd
import numpy as np
import streamlit.components.v1 as components
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.preprocessing import PowerTransformer
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression
from sklearn.tree import DecisionTreeRegressor, plot_tree
from sklearn.ensemble import RandomForestRegressor
from sklearn.metrics import mean_squared_error, mean_absolute_error, r2_score
import folium
from folium.plugins import HeatMap, MarkerCluster
import tempfile
import os
def folium_static(fig, height=500):
"""Render folium map by saving to HTML."""
temp = tempfile.NamedTemporaryFile(delete=False, suffix='.html')
temp_path = temp.name
temp.close()
fig.save(temp_path)
with open(temp_path, 'r', encoding='utf-8') as f:
html_data = f.read()
os.unlink(temp_path)
components.html(html_data, height=height)
st.set_page_config(page_title="Airbnb Fiyat Tahmini", page_icon="🏠", layout="wide")
st.markdown("""
<style>
.main-header {
font-size: 2.5rem;
color: black;
/* Airbnb color */
text-align: center;
margin-bottom: 1rem;
}
.section-header {
font-size: 1.8rem;
color: #484848;
margin-top: 1.5rem;
margin-bottom: 1rem;
}
.subsection-header {
font-size: 1.3rem;
color: #767676;
margin-top: 1rem;
}
.description {
font-size: 1rem;
color: #484848;
}
.info-box {
background-color: #f8f9fa;
padding: 15px;
border-radius: 5px;
border-left: 5px solid #FF5A5F;
}
</style>
""", unsafe_allow_html=True)
st.sidebar.title("Navigasyon")
pages = ["Ana Sayfa", "Veri İnceleme", "Ön İşleme Sonuçları", "Model Sonuçları", "Harita Görselleştirme","Raporlama","Fiyat Tahmin"]
selected_page = st.sidebar.radio("", pages)
@st.cache_data
def load_data():
try:
df = pd.read_csv("AB_NYC_2019.csv")
return df
except:
st.error("Lütfen AB_NYC_2019.csv dosyasını yükleyin veya doğru konumda olduğundan emin olun.")
return None
df = load_data()
if df is None:
st.warning("Devam etmek için veri dosyasını yükleyin.")
uploaded_file = st.file_uploader("AB_NYC_2019.csv dosyasını yükleyin", type="csv")
if uploaded_file is not None:
df = pd.read_csv(uploaded_file)
st.success("Veri başarıyla yüklendi!")
def preprocess_data(df):
processed_df = df.copy()
processed_df.drop(columns=["id", "name", "host_id", "host_name", "last_review"], inplace=True)
power_transformer = PowerTransformer(method='yeo-johnson')
reviews_temp = processed_df["reviews_per_month"].fillna(0)
processed_df["reviews_per_month"] = power_transformer.fit_transform(reviews_temp.values.reshape(-1, 1))
processed_df["reviews_per_month_original"] = power_transformer.inverse_transform(
processed_df["reviews_per_month"].values.reshape(-1, 1)
).flatten()
processed_df = pd.get_dummies(processed_df, columns=["neighbourhood_group", "room_type"], drop_first=True)
processed_df["neighbourhood_encoded"] = processed_df.groupby("neighbourhood")["price"].transform("mean")
processed_df.drop(columns=["neighbourhood"], inplace=True)
processed_df = processed_df[processed_df["price"] > 0]
processed_df["log_price"] = np.log1p(processed_df["price"])
processed_df["minimum_nights_log"] = np.log1p(processed_df["minimum_nights"])
processed_df["review_score"] = processed_df["reviews_per_month"] * processed_df["number_of_reviews"]
X = processed_df.drop(columns=["price"])
if "reviews_per_month_original" in X.columns:
X = X.drop(columns=["reviews_per_month_original"])
y = processed_df["price"]
return X, y, processed_df
if df is not None:
if selected_page == "Ana Sayfa":
st.markdown("<h1 class='main-header'>New York Airbnb Fiyat Tahmini</h1>", unsafe_allow_html=True)
st.markdown("<div>", unsafe_allow_html=True)
st.markdown("""
Bu projede, New York City'deki Airbnb kiralık dairelerin fiyatlarını tahmin etmek amacıyla regresyon modelleri geliştirilmiştir.
Amacımız, bir evi kiralamak isteyen birinin ödeyeceği fiyatı öngörebilmektir.
Bu doğrultuda, Doğrusal Regresyon, Karar Ağacı ve Random Forest modelleri uygulanmıştır.
""")
st.markdown("</div>", unsafe_allow_html=True)
st.markdown("<h2 class='section-header'>Veri Seti Genel Bakış</h2>", unsafe_allow_html=True)
st.dataframe(df.head())
rows, cols = df.shape
st.markdown(f"""
Veri seti toplam **{rows} gözlem (satır)** ve **{cols} özellik (sütun)** içermektedir.
""")
st.markdown("<h2 class='section-header'>Veri Seti Sütunları</h2>", unsafe_allow_html=True)
st.markdown("""
- **id**: Airbnb ilanının benzersiz kimlik numarası
- **name**: İlanın adı veya açıklaması
- **host_id**: İlan sahibinin benzersiz kimlik numarası
- **host_name**: İlan sahibinin adı
- **neighbourhood_group**: İlanın bulunduğu büyük bölge (örneğin Manhattan, Brooklyn)
- **neighbourhood**: İlanın bulunduğu mahalle
- **latitude**: İlanın enlem (latitude) koordinatı
- **longitude**: İlanın boylam (longitude) koordinatı
- **room_type**: Konaklama türü (Örneğin: "Private room", "Entire home/apt", "Shared room")
- **price**: Gecelik konaklama ücreti (USD cinsinden)
- **minimum_nights**: Konaklama için belirlenen minimum gece sayısı
- **number_of_reviews**: İlanın aldığı toplam inceleme sayısı
- **last_review**: İlanın son inceleme tarihi
- **reviews_per_month**: Aylık ortalama inceleme sayısı
- **calculated_host_listings_count**: Aynı ev sahibinin toplam ilan sayısı
- **availability_365**: Yıl boyunca müsait olduğu gün sayısı (365 gün üzerinden)
""")
elif selected_page == "Veri İnceleme":
st.markdown("<h1 class='main-header'>Veri İnceleme</h1>", unsafe_allow_html=True)
st.markdown("<h2 class='section-header'>Eksik Değer Analizi</h2>", unsafe_allow_html=True)
missing_vals = df.isnull().sum()
missing_cols = missing_vals[missing_vals > 0]
if len(missing_cols) > 0:
st.write("Eksik değer içeren sütunlar:")
st.write(missing_cols)
else:
st.success("Veri setinde eksik değer bulunmuyor.")
st.markdown("<h2 class='section-header'>Aylık Yorum Sayısı Analizi</h2>", unsafe_allow_html=True)
col1, col2 = st.columns(2)
with col1:
st.metric("Ortalama", f"{df['reviews_per_month'].mean():.2f}")
with col2:
st.metric("Medyan", f"{df['reviews_per_month'].median():.2f}")
st.markdown("<div>", unsafe_allow_html=True)
st.markdown("""
Çarpık bir dağılım var. Çünkü ortalama > medyan olduğundan aylık yorum sayısı verisi sağa çarpık bir dağılıma sahiptir.
Çünkü verilerin çoğu düşük yorum sayısına sahipken, birkaç popüler ilanın çok yüksek yorum alması ortalamayı yukarı çekmektedir.
""")
st.markdown("</div>", unsafe_allow_html=True)
fig, ax = plt.subplots(figsize=(10, 5))
sns.histplot(df["reviews_per_month"].dropna(), bins=50, kde=True, ax=ax)
ax.axvline(df["reviews_per_month"].dropna().mean(), color='red', linestyle='dashed', linewidth=2, label="ortalama")
ax.axvline(df["reviews_per_month"].dropna().median(), color='blue', linestyle='dashed', linewidth=2, label="median")
ax.set_title("Aylık Yorum Sayısı Dağılımı")
ax.legend()
st.pyplot(fig)
st.markdown("""
Daha fazla yorum sayısına sahip ilanlar ortalamayı yukarı çekiyor.
Burada çarpıklığı azaltmam gerekiyor. Dağılımı dengeli hale getirmek gerekiyor.
""")
elif selected_page == "Ön İşleme Sonuçları":
st.markdown("<h1 class='main-header'>Ön İşleme Sonuçları</h1>", unsafe_allow_html=True)
st.markdown("<h2 class='section-header'>Yeo-Johnson Dönüşümü Sonuçları</h2>", unsafe_allow_html=True)
processed_df = df.copy()
try:
power_transformer = PowerTransformer(method='yeo-johnson')
reviews_temp = processed_df["reviews_per_month"].fillna(0)
reviews_transformed = power_transformer.fit_transform(reviews_temp.values.reshape(-1, 1))
reviews_original = power_transformer.inverse_transform(reviews_transformed)
fig, axes = plt.subplots(1, 2, figsize=(16, 5))
sns.histplot(reviews_temp, bins=50, kde=True, ax=axes[0], color='skyblue')
axes[0].axvline(reviews_temp.mean(), color='red', linestyle='dashed', linewidth=2, label="ortalama")
axes[0].axvline(reviews_temp.median(), color='blue', linestyle='dashed', linewidth=2, label="median")
axes[0].set_title("Orijinal Veride Aylık Yorum Dağılımı")
axes[0].legend()
sns.histplot(reviews_transformed, bins=50, kde=True, ax=axes[1], color='lightgreen')
axes[1].axvline(reviews_transformed.mean(), color='red', linestyle='dashed', linewidth=2, label="ortalama")
axes[1].axvline(np.median(reviews_transformed), color='blue', linestyle='dashed', linewidth=2, label="median")
axes[1].set_title("Yeo-Johnson Dönüşüm Sonrası Dağılım")
axes[1].legend()
plt.tight_layout()
st.pyplot(fig)
fig, ax = plt.subplots(1, 2, figsize=(12, 6))
sns.boxplot(x=reviews_transformed.flatten(), ax=ax[0])
ax[0].set_title("Aylık Yorum Sayısı Dağılımı (Boxplot)")
sns.histplot(reviews_transformed.flatten(), bins=30, kde=True, ax=ax[1])
ax[1].set_title("Aylık Yorum Sayısı Histogramı")
st.pyplot(fig)
st.markdown("<div>", unsafe_allow_html=True)
st.markdown("""
Aylık yorum sayısı değişkeni başlangıçta oldukça sağa çarpıktı.
Bu durum, az sayıda ilanın aşırı fazla yorum alması nedeniyle, ortalamanın yukarı çekilmesinden kaynaklanıyordu.
Yeo-Johnson dönüşümü ile bu dağılım daha simetrik ve normal benzeri bir yapıya dönüştürüldü.
Böylece hem uç değerlerin etkisi azaldı, hem de regresyon modellerinin doğruluğu artırılmış oldu.
""")
st.markdown("</div>", unsafe_allow_html=True)
except Exception as e:
st.error(f"Dönüşüm sırasında hata oluştu: {e}")
st.markdown("<h2 class='section-header'>Eksik Değer Doldurma Stratejisi</h2>", unsafe_allow_html=True)
st.markdown("""
Eksik değerleri şu stratejiye göre doldurdum:
--Bu sütunlar ("id", "name", "host_id", "host_name", "last_review") analiz için gereksiz sutünlarımı verimden attım.
1. Aynı mahalle ve oda tipindeki medyan değerleri kullanarak eksik değerleri doldurdum.Çünkü benzer özellikteki evlerin benzer yorum alma ihtimali yüksek
2. Hala eksik değer varsa, mahalle bazında medyan değerleri kullandım.
3. Son olarak, kalan eksik değerleri 0 ile doldurdum.
""")
st.markdown("<h2 class='section-header'>Kategorik Değişken Dönüşümü ve Özellik Mühendisliği</h2>", unsafe_allow_html=True)
st.markdown("""
1. neighbourhood_group ve room_type kategorik değişkenlerini one-hot encoding ile sayısal değerlere dönüştürdüm.
2. neighbourhood sütunu, 200'den fazla farklı mahalle ismi içeriyordu.
Bu değişkeni doğrudan modele vermek hem anlamlı olmaz hem de yüksek boyutluluğa sebep olurdu.
Bunun yerine, her mahallenin ortalama fiyatını hesaplayarak neighbourhood_encoded adlı yeni bir sayısal değişken oluşturdum.BU sayede artık mahalle ismi degil o mahallenin ortalam fiyat bilgisini çektik.
3. Sıfır fiyatlı ilanları veri setinden çıkardım.
4. Fiyat değişkenine log(1 + price) dönüşümü uyguladım.
Bu sayede fiyatlardaki çarpıklığı azalttım ve veriyi modellere daha uygun hale getirdim.
5. Minimum konaklama süresi ve yorum sayısı gibi değişkenlerde yüksek uç değerler bulunuyordu.
minimum_nights değişkenine log dönüşümü uygulayarak bu uç değerlerin etkisini azalttım.
6. reviews_per_month ile number_of_reviews’u çarparak yeni bir review_score değişkeni oluşturdum.
Bu yeni özellik, hem evin ne kadar aktif olduğunu hem de ne kadar uzun süredir platformda olduğunu yansıtarak model için daha bilgilendirici hale geldi.
""")
# minimum_nights_log sütunu yoksa oluştur
if "minimum_nights_log" not in df.columns:
df["minimum_nights_log"] = np.log1p(df["minimum_nights"])
# Görselleştirme
fig, axes = plt.subplots(1, 2, figsize=(14, 5))
# Orijinal minimum_nights dağılımı
sns.histplot(df["minimum_nights"], bins=50, kde=True, ax=axes[0], color="skyblue")
axes[0].set_title("Minimum Nights (Orijinal)")
axes[0].set_xlabel("minimum_nights")
# Log dönüşümlü minimum_nights dağılımı
sns.histplot(df["minimum_nights_log"], bins=50, kde=True, ax=axes[1], color="lightgreen")
axes[1].set_title("Minimum Nights (Log Dönüşümlü)")
axes[1].set_xlabel("minimum_nights_log")
plt.tight_layout()
st.pyplot(fig)
elif selected_page == "Model Sonuçları":
st.markdown("<h1 class='main-header'>Model Sonuçları</h1>", unsafe_allow_html=True)
if st.checkbox("Modelleri Göster", value=True):
with st.spinner("Modeller hazırlanıyor..."):
X, y, processed_df = preprocess_data(df)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
st.markdown("<h2 class='section-header'>Doğrusal Regresyon Sonuçları</h2>", unsafe_allow_html=True)
lr_model = LinearRegression()
lr_model.fit(X_train, y_train)
lr_pred = lr_model.predict(X_test)
lr_mae = mean_absolute_error(y_test, lr_pred)
lr_mse = mean_squared_error(y_test, lr_pred)
lr_rmse = np.sqrt(lr_mse)
lr_r2 = r2_score(y_test, lr_pred)
col1, col2, col3,col4 = st.columns(4)
col1.metric("MAE", f"{lr_mae:.2f}")
col2.metric("RMSE", f"{lr_rmse:.2f}")
col3.metric("MSE", f"{lr_mse:.2f}")
col4.metric("R²", f"{lr_r2:.4f}")
fig, ax = plt.subplots(figsize=(8, 6))
sns.scatterplot(x=y_test, y=lr_pred, alpha=0.5, ax=ax)
ax.plot([y_test.min(), y_test.max()], [y_test.min(), y_test.max()], color="red", linestyle="--")
ax.set_xlabel("Gerçek Değerler (Fiyat)")
ax.set_ylabel("Tahmin Edilen Değerler (Fiyat)")
ax.set_title("Gerçek vs. Tahmin Edilen Fiyatlar")
st.pyplot(fig)
st.markdown("<h2 class='section-header'>Karar Ağacı Sonuçları</h2>", unsafe_allow_html=True)
dt_model = DecisionTreeRegressor(max_depth=4, random_state=42)
dt_model.fit(X_train, y_train)
dt_pred = dt_model.predict(X_test)
dt_mae = mean_absolute_error(y_test, dt_pred)
dt_mse = mean_squared_error(y_test, dt_pred)
dt_r2 = r2_score(y_test, dt_pred)
col1, col2, col3 = st.columns(3)
col1.metric("MAE", f"{dt_mae:.2f}")
col2.metric("MSE", f"{dt_mse:.2f}")
col3.metric("R²", f"{dt_r2:.4f}")
fig, ax = plt.subplots(figsize=(8, 6))
sns.scatterplot(x=y_test, y=dt_pred, alpha=0.5, ax=ax)
ax.plot([y_test.min(), y_test.max()], [y_test.min(), y_test.max()], color="brown", linestyle="--")
ax.set_xlabel("Gerçek Değerler (Fiyat)")
ax.set_ylabel("Tahmin Edilen Değerler (Fiyat)")
ax.set_title("Gerçek vs. Tahmin Edilen Fiyatlar")
st.pyplot(fig)
if st.checkbox("Karar Ağacını Görselleştir"):
fig, ax = plt.subplots(figsize=(20, 10))
plot_tree(dt_model, feature_names=X.columns, filled=True, rounded=True, ax=ax)
ax.set_title("Decision Tree")
st.pyplot(fig)
st.markdown("<h2 class='section-header'>Random Forest Sonuçları</h2>", unsafe_allow_html=True)
rf_model = RandomForestRegressor(n_estimators=100, random_state=42)
rf_model.fit(X_train, y_train)
rf_pred = rf_model.predict(X_test)
rf_mae = mean_absolute_error(y_test, rf_pred)
rf_mse = mean_squared_error(y_test, rf_pred)
rf_r2 = r2_score(y_test, rf_pred)
col1, col2, col3 = st.columns(3)
col1.metric("MAE", f"{rf_mae:.2f}")
col2.metric("MSE", f"{rf_mse:.2f}")
col3.metric("R²", f"{rf_r2:.4f}")
fig, ax = plt.subplots(figsize=(8, 6))
sns.scatterplot(x=y_test, y=rf_pred, alpha=0.5, ax=ax)
ax.plot([y_test.min(), y_test.max()], [y_test.min(), y_test.max()], color="red", linestyle="--")
ax.set_xlabel("Gerçek Değerler (Fiyat)")
ax.set_ylabel("Tahmin Edilen Değerler (Fiyat)")
ax.set_title("Gerçek vs. Tahmin Edilen Fiyatlar")
st.pyplot(fig)
st.markdown("<h2 class='section-header'>Model Karşılaştırması</h2>", unsafe_allow_html=True)
comparison_df = pd.DataFrame({
'Model': ['Doğrusal Regresyon', 'Karar Ağacı', 'Random Forest'],
'MAE': [lr_mae, dt_mae, rf_mae],
'MSE': [lr_mse, dt_mse, rf_mse],
'R²': [r2_score(y_test, lr_pred), dt_r2, rf_r2]
})
comparison_df = comparison_df.set_index('Model')
st.dataframe(comparison_df.style.highlight_min(subset=['MAE', 'MSE']).highlight_max(subset=['R²']))
st.markdown("<div>", unsafe_allow_html=True)
st.markdown("""
Random Forest modeli en iyi performansı göstermiştir.
R² değeri 1'e yakın olduğu için modelin açıklama gücü yüksektir.
""")
# Korelasyon matrisi
st.markdown("<h2 class='section-header'>Korelasyon Matrisi</h2>", unsafe_allow_html=True)
# İşlenmiş veri ile korelasyon hesapla
_, _, processed_df = preprocess_data(df)
# Sadece sayısal sütunları alalım
corr = processed_df.select_dtypes(include=["float64", "int64"]).corr()
# Grafik
fig, ax = plt.subplots(figsize=(12, 10))
sns.heatmap(corr, annot=True, fmt=".2f", cmap="coolwarm", square=True, ax=ax)
ax.set_title("Değişkenler Arası Korelasyon Matrisi")
st.pyplot(fig)
# Yorum
st.markdown("""
Korelasyon matrisi, değişkenler arasındaki ilişkileri göstermektedir. Fiyatla en güçlü pozitif korelasyon neighbourhood_encoded (mahalle ortalama fiyatı) ve reviews_per_month_original (yorum yoğunluğu) değişkenlerindedir. Ayrıca review_score ile number_of_reviews arasında beklenen şekilde yüksek bir ilişki vardır. Bu analiz, modele en çok katkı sağlayan değişkenleri belirlemek için önemlidir.
""")
st.markdown("<h3 class='subsection-header'>Kategorik Değişkenler ve Ortalama Fiyat</h3>", unsafe_allow_html=True)
categorical_cols = ["room_type", "neighbourhood_group"]
selected_cat = st.selectbox("İncelemek istediğiniz kategorik değişkeni seçin:", categorical_cols)
# Seçilen kategoriye göre ortalama fiyat
avg_price_by_cat = df.groupby(selected_cat)["price"].mean().sort_values(ascending=False).reset_index()
fig, ax = plt.subplots(figsize=(8, 5))
sns.barplot(x="price", y=selected_cat, data=avg_price_by_cat, palette="magma", ax=ax)
ax.set_title(f"{selected_cat} kategorisine göre ortalama fiyat")
ax.set_xlabel("Ortalama Fiyat ($)")
ax.set_ylabel(selected_cat)
st.pyplot(fig)
# Açıklama
st.markdown(f"""
**{selected_cat}** değişkenine göre Airbnb fiyatlarının nasıl değiştiği yukarıdaki grafikte görülmektedir.
Bu grafik:
- Her bir kategori için **ortalama fiyat** değerini gösterir.
- Modelin `room_type` ve `neighbourhood_group` gibi değişkenlere neden önem verdiğini açıklar.
""")
elif selected_page == "Harita Görselleştirme":
st.markdown("<h1 class='main-header'>Harita Görselleştirme</h1>", unsafe_allow_html=True)
try:
st.markdown("<h2 class='section-header'>Semtlere Göre Konum Dağılımı</h2>", unsafe_allow_html=True)
fig, ax = plt.subplots(figsize=(10, 6))
sns.scatterplot(x=df.longitude, y=df.latitude, hue=df.neighbourhood_group, ax=ax)
ax.set_title('Neighbourhood Group Location')
st.pyplot(fig)
st.markdown("<h2 class='section-header'>Oda Tiplerine Göre Konum Dağılımı</h2>", unsafe_allow_html=True)
fig, ax = plt.subplots(figsize=(10, 6))
sns.scatterplot(x=df.longitude, y=df.latitude, hue=df.room_type, ax=ax)
ax.set_title('Room type location per Neighbourhood Group')
st.pyplot(fig)
st.markdown("<h2 class='section-header'>İlan Yoğunluğu Haritası</h2>", unsafe_allow_html=True)
if st.button("Yoğunluk Haritasını Göster"):
m = folium.Map(location=[40.76586, -73.98436], tiles='cartodbpositron', zoom_start=11)
sample_df = df.sample(min(5000, len(df)))
HeatMap(data=sample_df[['latitude', 'longitude']].values.tolist(), radius=10).add_to(m)
folium_static(m, height=600)
st.markdown("<h2 class='section-header'>İlan Kümeleme Haritası</h2>", unsafe_allow_html=True)
if st.button("Kümeleme Haritasını Göster"):
m = folium.Map(location=[40.76586, -73.98436], tiles='cartodbpositron', zoom_start=11)
sample_df = df.sample(min(1000, len(df)))
sample_df["All"] = 'Room type: ' + sample_df['room_type'].astype(str) + ', ' + \
'Availability (365 days): ' + sample_df["availability_365"].astype(str) + ', ' + \
'Price: $' + sample_df["price"].astype(str)
marker_cluster = MarkerCluster().add_to(m)
for idx, row in sample_df.iterrows():
folium.Marker(
location=[row['latitude'], row['longitude']],
popup=row['All']
).add_to(marker_cluster)
folium_static(m, height=600)
except Exception as e:
st.error(f"Harita oluşturulurken bir hata oluştu: {e}")
elif selected_page == "Raporlama":
st.markdown("<h1 class='main-header'>📊Proje Raporlaması</h1>", unsafe_allow_html=True)
st.markdown("<h2 class='section-header'> Sonuçlar ve Yorumlar</h2>", unsafe_allow_html=True)
st.markdown("""
- En başarılı model: **Random Forest**,
- Overfitting gözlemlenmemiştir (train ve test R² yakın)
- Modelin en önemli değişkenleri:
- `neighbourhood_encoded`: mahalle ortalama fiyatı
- `latitude`, `longitude`: konum bilgisi
- `room_type_Entire home/apt`:
""")
st.markdown("<h2 class='section-header'> Çıkarımlar</h2>", unsafe_allow_html=True)
st.markdown("""
- Lokasyon ve mahalle ortalamaları fiyat üzerinde en baskın faktörlerdir.
- Ev fiyatları üzerinde 'oda tipi', 'yorum_sayısı' da etkilemektedir.
- Model, düşük fiyatlı evlerde daha başarılı tahmin yaparken, uç değerlerde sapmalar yaşanmıştır.
""")
elif selected_page == "Fiyat Tahmin":
st.markdown("<h1 class='main-header'> Airbnb Fiyat Tahmin Aracı</h1>", unsafe_allow_html=True)
X, y, processed_df = preprocess_data(df)
rf_model = RandomForestRegressor(n_estimators=100, random_state=42)
rf_model.fit(X, y)
st.markdown("<h2 class='section-header'>Bilgilerinizi Girin</h2>", unsafe_allow_html=True)
# Girişler
latitude = st.number_input("Latitude (Enlem)", value=40.75)
longitude = st.number_input("Longitude (Boylam)", value=-73.98)
minimum_nights = st.number_input("Minimum Konaklama Gecesi", min_value=1, value=3)
number_of_reviews = st.number_input("Yorum Sayısı", min_value=0, value=10)
reviews_per_month = st.number_input("Aylık Ortalama Yorum", min_value=0.0, value=0.5)
availability_365 = st.slider("Yıllık Müsaitlik (gün)", 0, 365, 180)
neighbourhood_encoded = st.slider("Mahalle Ortalama Fiyatı", min_value=20, max_value=500, value=150)
neighbourhood_group = st.selectbox("Bölge", ["Brooklyn", "Manhattan", "Queens", "Staten Island", "Bronx"])
room_type = st.selectbox("Oda Tipi", ["Private room", "Entire home/apt", "Shared room"])
# Özellik vektörü oluştur
input_data = {
"latitude": latitude,
"longitude": longitude,
"minimum_nights": minimum_nights,
"number_of_reviews": number_of_reviews,
"reviews_per_month": reviews_per_month,
"calculated_host_listings_count": 1,
"availability_365": availability_365,
"neighbourhood_encoded": neighbourhood_encoded,
"review_score": reviews_per_month * number_of_reviews,
"minimum_nights_log": np.log1p(minimum_nights),
"neighbourhood_group_Manhattan": 1 if neighbourhood_group == "Manhattan" else 0,
"neighbourhood_group_Queens": 1 if neighbourhood_group == "Queens" else 0,
"neighbourhood_group_Staten Island": 1 if neighbourhood_group == "Staten Island" else 0,
"neighbourhood_group_Bronx": 1 if neighbourhood_group == "Bronx" else 0,
"room_type_Private room": 1 if room_type == "Private room" else 0,
"room_type_Shared room": 1 if room_type == "Shared room" else 0
}
# Modelin beklediği sırayla dataframe'e dönüştür
input_df = pd.DataFrame([input_data], columns=X.columns)
# Tahmin
if st.button("Tahmini Fiyatı Göster"):
prediction = rf_model.predict(input_df)[0]
st.success(f"Tahmini Gecelik Fiyat: **${prediction:.2f}**")
if __name__ == "__main__":
pass |