Skip to content

Commit 1077f5b

Browse files
authored
Update PythonNotebook_CodingTutorialDocumented.ipynb
1 parent 2e7aacf commit 1077f5b

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

PythonNotebook_CodingTutorialDocumented.ipynb

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,22 @@
7474
"plt.grid(axis='x')\n",
7575
"plt.show()"
7676
]
77+
},
78+
{
79+
"cell_type": "code",
80+
"execution_count": null,
81+
"id": "3dfdeb10",
82+
"metadata": {},
83+
"outputs": [],
84+
"source": [
85+
"#violin plot\n",
86+
"plt.figure(figsize=(10,6))\n",
87+
"sns.violinplot(x='digit', y='Accuracy.FF', data=df, inner=\"quartile\", palette='pastel')\n",
88+
"plt.title('Violin Plot of Accuracy for Each Digit (0-9)')\n",
89+
"plt.xlabel('Digits')\n",
90+
"plt.ylabel('Accuracy')\n",
91+
"plt.show()"
92+
]
7793
},
7894
{
7995
"cell_type": "code",
@@ -92,22 +108,6 @@
92108
"plt.show()"
93109
]
94110
},
95-
{
96-
"cell_type": "code",
97-
"execution_count": null,
98-
"id": "3dfdeb10",
99-
"metadata": {},
100-
"outputs": [],
101-
"source": [
102-
"#violin plot\n",
103-
"plt.figure(figsize=(10,6))\n",
104-
"sns.violinplot(x='digit', y='Accuracy.FF', data=df, inner=\"quartile\", palette='pastel')\n",
105-
"plt.title('Violin Plot of Accuracy for Each Digit (0-9)')\n",
106-
"plt.xlabel('Digits')\n",
107-
"plt.ylabel('Accuracy')\n",
108-
"plt.show()"
109-
]
110-
},
111111
{
112112
"cell_type": "code",
113113
"execution_count": null,

0 commit comments

Comments
 (0)