Create a data folder for all static files

This commit is contained in:
Alexander Hess 2018-09-03 16:12:15 +02:00
commit fd91de812d
8 changed files with 10 additions and 10 deletions

View file

@ -27,7 +27,7 @@
"name": "stdout",
"output_type": "stream",
"text": [
"2018-09-03 15:55:55 CEST\n",
"2018-09-03 16:11:06 CEST\n",
"\n",
"CPython 3.6.5\n",
"IPython 6.5.0\n",
@ -2130,7 +2130,7 @@
"metadata": {},
"outputs": [],
"source": [
"with open(\"weakly_and_strongly_correlated_variables.json\", \"w\") as file:\n",
"with open(\"data/weakly_and_strongly_correlated_variables.json\", \"w\") as file:\n",
" file.write(json.dumps({\n",
" \"weakly_correlated\": sorted(\n",
" list(pearson_weakly_correlated) + list(spearman_weakly_correlated)\n",
@ -3009,7 +3009,7 @@
"metadata": {},
"outputs": [],
"source": [
"df.to_csv(\"data_clean_with_transformations.csv\")"
"df.to_csv(\"data/data_clean_with_transformations.csv\")"
]
}
],