diff --git a/power-stats.ipynb b/power-stats.ipynb index 87bdee37b4c895674ea5b63ff42c072ef9a07473..cad5cefe6e4bc2f5560050e0c8ce89feb3bc4bd8 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": {},