diff --git a/notebooks/EDA.ipynb b/notebooks/EDA.ipynb index 59e6a2d..f3b62cd 100644 --- a/notebooks/EDA.ipynb +++ b/notebooks/EDA.ipynb @@ -58,28 +58,42 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 62, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - "C:\\Users\\fatik\\AppData\\Local\\Temp\\ipykernel_12208\\551298004.py:3: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", + "C:\\Users\\fatik\\AppData\\Local\\Temp\\ipykernel_12208\\3238385593.py:3: FutureWarning: Series.__getitem__ treating keys as positions is deprecated. In a future version, integer keys will always be treated as labels (consistent with DataFrame behavior). To access a value by position, use `ser.iloc[pos]`\n", " dicter[x.id] = x[1]\n" ] + }, + { + "data": { + "text/plain": "'Стефен Ананикз'" + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ "dicter = {}\n", "def get_dict(x):\n", " dicter[x.id] = x[1]\n", - "data[\"json\"] = data.apply(lambda x: get_dict(x), axis=1)" + "data[\"json\"] = data.apply(lambda x: get_dict(x), axis=1)\n", + "import pickle\n", + "\n", + "with open('saved_dictionary.pkl', 'wb') as f:\n", + " pickle.dump(dicter, f)\n", + "with open('saved_dictionary.pkl', 'rb') as f:\n", + " loaded_dict = pickle.load(f)" ], "metadata": { "collapsed": false, "ExecuteTime": { - "end_time": "2024-03-29T06:52:14.631001800Z", - "start_time": "2024-03-29T06:52:14.473163900Z" + "end_time": "2024-03-29T06:54:05.064292600Z", + "start_time": "2024-03-29T06:54:04.924879400Z" } } }, diff --git a/notebooks/saved_dictionary.pkl b/notebooks/saved_dictionary.pkl new file mode 100644 index 0000000..92c0b8d Binary files /dev/null and b/notebooks/saved_dictionary.pkl differ