We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1393f61 commit 9fecd25Copy full SHA for 9fecd25
Chapter 3/Chapter_3_EDA_with_Personal_Email_Analysis.ipynb
@@ -1236,13 +1236,13 @@
1236
" df_r = received[received['dayofweek']==dow]\n",
1237
" weights = np.ones(len(df_r)) / len(received)\n",
1238
" wfun = lambda x: weights\n",
1239
- " plot_count_vs_tod(df_r, ax, dt=1, smooth=True, color=f'C{ct}',\n",
+ " plot_number_perdhour_per_year(df_r, ax, dt=1, smooth=True, color=f'C{ct}',\n",
1240
" alpha=0.8, lw=3, label=dow, weight_fun=wfun)\n",
1241
"\n",
1242
" df_s = sent[sent['dayofweek']==dow]\n",
1243
" weights = np.ones(len(df_s)) / len(sent)\n",
1244
1245
- " plot_count_vs_tod(df_s, ax, dt=1, smooth=True, color=f'C{ct}',\n",
+ " plot_number_perdhour_per_year(df_s, ax, dt=1, smooth=True, color=f'C{ct}',\n",
1246
" alpha=0.8, lw=2, label=dow, ls='--', weight_fun=wfun)\n",
1247
"ax.set_ylabel('Fraction of weekly emails per hour')\n",
1248
"plt.legend(loc='upper left')\n"
@@ -1331,4 +1331,4 @@
1331
]
1332
}
1333
1334
-}
+}
0 commit comments