From 65dc2d424d1d21509270a717d2d5263381c710da Mon Sep 17 00:00:00 2001 From: John-Paul Robinson <jpr@uab.edu> Date: Tue, 23 Feb 2021 16:25:11 -0600 Subject: [PATCH] Add plot for per-node hourly and increase default figure size. --- power-stats.ipynb | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/power-stats.ipynb b/power-stats.ipynb index 87bdee3..cad5cef 100644 --- a/power-stats.ipynb +++ b/power-stats.ipynb @@ -26,6 +26,15 @@ "import matplotlib.dates as mdates" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "plt.rcParams[\"figure.figsize\"] = (20,6)" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -179,6 +188,25 @@ " m6_hourly_pwr[entity]= node_pwr[startdate:enddate]\n" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Plot Per-node Hourly\n", + "\n", + "This is just to see the data for each node in one plot and get a feel for how the nodes behave relative to each other. There is too much data to decern individual behavior of specific nodes\n", + "but it does give a sense of how the total power adds up." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "m6_hourly_pwr['2020-02-01':'2020-07-09'].iloc[:,1:].plot(legend=False)" + ] + }, { "cell_type": "markdown", "metadata": {}, -- GitLab