From 2d91e205a2037b00a34cfcab65d5237200270661 Mon Sep 17 00:00:00 2001 From: scuti Date: Sun, 20 Apr 2025 07:47:29 -0700 Subject: [PATCH] Came up with better names for axes (language comparison). --- stackoverflow-survey.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stackoverflow-survey.ipynb b/stackoverflow-survey.ipynb index 83869f6..cd96f03 100644 --- a/stackoverflow-survey.ipynb +++ b/stackoverflow-survey.ipynb @@ -208,8 +208,8 @@ " if saveto is not None:\n", " plt.savefig(saveto, bbox_inches='tight')\n", " pass\n", - "key_x = \"Have Worked With\"\n", - "key_y = \"Want To Use and Have Used Difference\"\n", + "key_x = \"Users\"\n", + "key_y = \"Potential '\\u0394'Users\"\n", "df1 = pd.DataFrame(l1.items(), columns=['Language', key_x])\n", "df2 = pd.DataFrame(motiv_diff.items(), columns=['Language', key_y])\n", "# chatgpt tells me how to combine df\n",