diff --git a/analysis/hf_reanalysis/reanalysis.ipynb b/analysis/hf_reanalysis/reanalysis.ipynb index 0230536c5..ebb3d4c73 100644 --- a/analysis/hf_reanalysis/reanalysis.ipynb +++ b/analysis/hf_reanalysis/reanalysis.ipynb @@ -924,7 +924,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 27, "id": "cf7a0b36", "metadata": {}, "outputs": [], @@ -934,6 +934,7 @@ " x_key='N', \n", " y_key='D', \n", " z_key='L', \n", + " color_key='L',\n", " fit_fn=single_epoch_fit,\n", " savepath='single-epoch-runs-fitted.html'\n", ")" @@ -981,7 +982,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 28, "id": "dd301104-be42-4d08-9028-6a2a24927161", "metadata": { "tags": [] @@ -996,7 +997,80 @@ " color_key='R',\n", " color_type='log',\n", " fit_fn=single_epoch_fit,\n", - " savepath='single-epoch-runs-fitted-multiepoch-color.html'\n", + " savepath='single-epoch-runs-fitted-multiepoch-D_total.html'\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "42a33d7d-589c-4035-ac7c-63c96f5c46a8", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "runs = {\n", + " **runs, \n", + " 'residuals': runs['L'] - single_epoch_fit(runs['N'], runs['D_total'])\n", + "}\n", + "\n", + "scaling_scatter(\n", + " runs, \n", + " x_key='N', \n", + " y_key='D_total', \n", + " z_key='residuals', \n", + " z_type='linear',\n", + " color_key='R',\n", + " color_type='log',\n", + " savepath='single-epoch-runs-fitted-multiepoch-D_total-residuals.html'\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "8d99e451-c54a-4134-877e-ad0d5cab1929", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "scaling_scatter(\n", + " runs, \n", + " x_key='N', \n", + " y_key='D', \n", + " z_key='L', \n", + " color_key='R',\n", + " color_type='log',\n", + " fit_fn=single_epoch_fit,\n", + " savepath='single-epoch-runs-fitted-multiepoch-D.html'\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "64a2b62c-3716-4f37-bedb-8cbaac612bb6", + "metadata": { + "tags": [] + }, + "outputs": [], + "source": [ + "runs = {\n", + " **runs, \n", + " 'residuals': runs['L'] - single_epoch_fit(runs['N'], runs['D'])\n", + "}\n", + "\n", + "scaling_scatter(\n", + " runs, \n", + " x_key='N', \n", + " y_key='D', \n", + " z_key='residuals', \n", + " z_type='linear',\n", + " color_key='R',\n", + " color_type='log',\n", + " savepath='single-epoch-runs-fitted-multiepoch-D-residuals.html'\n", ")" ] } diff --git a/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D-residuals.html b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D-residuals.html new file mode 100644 index 000000000..d3d658d4f --- /dev/null +++ b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D-residuals.html @@ -0,0 +1,14 @@ + + + +
+
+ + \ No newline at end of file diff --git a/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D.html b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D.html new file mode 100644 index 000000000..61d067e40 --- /dev/null +++ b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D.html @@ -0,0 +1,14 @@ + + + +
+
+ + \ No newline at end of file diff --git a/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D_total-residuals.html b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D_total-residuals.html new file mode 100644 index 000000000..e99b43208 --- /dev/null +++ b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D_total-residuals.html @@ -0,0 +1,14 @@ + + + +
+
+ + \ No newline at end of file diff --git a/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D_total.html b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D_total.html new file mode 100644 index 000000000..243514410 --- /dev/null +++ b/analysis/hf_reanalysis/single-epoch-runs-fitted-multiepoch-D_total.html @@ -0,0 +1,14 @@ + + + +
+
+ + \ No newline at end of file