2018-06-03 10:04:16 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
2018-06-06 20:59:01 +02:00
|
|
|
import pandas as pd
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
import numpy as np
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def wczytaj_dane():
|
2018-06-06 20:59:01 +02:00
|
|
|
mieszkania = pd.read_csv('mieszkania.csv',
|
|
|
|
sep=',',
|
|
|
|
encoding='UTF-8',
|
|
|
|
usecols=[0,1,2,3,4,5,6])
|
|
|
|
return mieszkania
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def most_common_room_number(dane):
|
2018-06-06 20:59:01 +02:00
|
|
|
return dane.mode(numeric_only=True)["Rooms"][0]
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def cheapest_flats(dane, n):
|
2018-06-06 20:59:01 +02:00
|
|
|
return dane.sort_values(by=['Expected'], ascending=False).head(n)
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def find_borough(desc):
|
|
|
|
dzielnice = ['Stare Miasto',
|
|
|
|
'Wilda',
|
|
|
|
'Jeżyce',
|
|
|
|
'Rataje',
|
|
|
|
'Piątkowo',
|
|
|
|
'Winogrady',
|
|
|
|
'Miłostowo',
|
|
|
|
'Dębiec']
|
2018-06-06 20:59:01 +02:00
|
|
|
for i in dzielnice:
|
|
|
|
if desc.find(i) + 1:
|
|
|
|
return (i)
|
|
|
|
return ('Inne')
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
def add_borough(dane):
|
2018-06-06 20:59:01 +02:00
|
|
|
dane['Borough'] = dane['Location'].apply(find_borough)
|
|
|
|
return (dane)
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def write_plot(dane, filename):
|
2018-06-06 20:59:01 +02:00
|
|
|
bar = dane["Borough"].value_counts().plot(kind="bar", figsize=(6, 6))
|
|
|
|
fig = bar.get_figure()
|
|
|
|
fig.savefig(filename)
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def mean_price(dane, room_number):
|
2018-06-06 20:59:01 +02:00
|
|
|
return dane[dane["Rooms"] == room_number]["Expected"].mean()
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def find_13(dane):
|
2018-06-06 20:59:01 +02:00
|
|
|
return dane[dane["Floor"] == 13]["Borough"].unique()
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def find_best_flats(dane):
|
2018-06-06 20:59:01 +02:00
|
|
|
return dane[(dane["Borough"] == "Winogrady") & (dane["Floor"] == 1) & (dane["Rooms"] == 3)]
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
def main():
|
|
|
|
dane = wczytaj_dane()
|
|
|
|
print(dane[:5])
|
|
|
|
|
|
|
|
print("Najpopularniejsza liczba pokoi w mieszkaniu to: {}"
|
|
|
|
.format(most_common_room_number(dane)))
|
|
|
|
|
2018-06-06 20:59:01 +02:00
|
|
|
print("{} to najładniejsza dzielnica w Poznaniu."
|
|
|
|
.format(find_borough("Grunwald i Jeżyce")))
|
2018-06-03 10:04:16 +02:00
|
|
|
|
|
|
|
print("Średnia cena mieszkania 3-pokojowego, to: {}"
|
|
|
|
.format(mean_price(dane, 3)))
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|