feat(Data): added csv downloaded from oecd website, prototype preprocessing script

This commit is contained in:
Mark Aron Szulyovszky
2021-11-07 15:16:45 +01:00
parent 842e99e4c7
commit 9f54cdc81f
2 changed files with 38960 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
#%%
import pandas as pd
oecd_housing = pd.read_csv('data/oecd_housing_prices.csv')
# we're only interested in "real" prices
oecd_housing = oecd_housing[oecd_housing['SUBJECT'] == 'REAL']
# we're only interested annual data
oecd_housing = oecd_housing[oecd_housing['FREQUENCY'] == 'A']
oecd_housing
# %%
countries = oecd_housing['LOCATION'].unique()
countries
# %%
oecd_housing[oecd_housing['LOCATION'] == 'HUN'].plot(x = "TIME", y= "Value")
# %%
# %%