Лаб 1 #1

Merged
Arutunyan-Dmitry merged 3 commits from lab_1 into main 2024-09-21 09:31:25 +04:00
Showing only changes of commit 47a3d3da45 - Show all commits

View File

@ -11,7 +11,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 1, "execution_count": 3,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
@ -28,7 +28,7 @@
"source": [ "source": [
"import matplotlib.pyplot as plt\n", "import matplotlib.pyplot as plt\n",
"import pandas as pd\n", "import pandas as pd\n",
"df = pd.read_csv(\".//static//csv//neo.csv\", nrows=15000)\n", "df = pd.read_csv(\"..//static//csv//neo.csv\", nrows=15000)\n",
"print(df.columns)\n" "print(df.columns)\n"
] ]
}, },
@ -68,7 +68,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 22, "execution_count": 4,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
@ -77,7 +77,7 @@
"<Axes: title={'center': 'Разница между макс. диаметром (est_diameter_max) и мин диаметром (est_diameter_min) объекта (первые 100 записей)'}, xlabel='Порядковый номер объекта в датасете', ylabel='Разница'>" "<Axes: title={'center': 'Разница между макс. диаметром (est_diameter_max) и мин диаметром (est_diameter_min) объекта (первые 100 записей)'}, xlabel='Порядковый номер объекта в датасете', ylabel='Разница'>"
] ]
}, },
"execution_count": 22, "execution_count": 4,
"metadata": {}, "metadata": {},
"output_type": "execute_result" "output_type": "execute_result"
}, },
@ -108,16 +108,16 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 69, "execution_count": 5,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
"data": { "data": {
"text/plain": [ "text/plain": [
"<matplotlib.legend.Legend at 0x2530c87c410>" "<matplotlib.legend.Legend at 0x22b94809250>"
] ]
}, },
"execution_count": 69, "execution_count": 5,
"metadata": {}, "metadata": {},
"output_type": "execute_result" "output_type": "execute_result"
}, },
@ -138,12 +138,7 @@
"handles = [plt.Rectangle((0,0),1,1, color='blue'), plt.Rectangle((0,0),1,1, color='red')]\n", "handles = [plt.Rectangle((0,0),1,1, color='blue'), plt.Rectangle((0,0),1,1, color='red')]\n",
"labels = ['Потенциально не опасный', 'Потенциально опасный']\n", "labels = ['Потенциально не опасный', 'Потенциально опасный']\n",
"data2.plot(kind='bar', figsize=(10, 6), color=['blue', 'red'], xlabel='Значение столбца \"hazardous\"')\n", "data2.plot(kind='bar', figsize=(10, 6), color=['blue', 'red'], xlabel='Значение столбца \"hazardous\"')\n",
"plt.legend(handles, labels)\n", "plt.legend(handles, labels)"
"\n",
"\n",
"#ПОЧЕМУ НЕ ОТОБРАЖАЕТСЯ ОБЕ ПОЛОСКИ В КОДЕ НИЖЕ без handles?\n",
"# plot = df.groupby('hazardous')['relative_velocity'].mean().plot.bar(color=[\"pink\", \"green\"])\n",
"# plot.legend([\"Потенциально не опасный\", \"Потенциально опасный\"])"
] ]
}, },
{ {