Skip to content

Commit

Permalink
Update 10_example_paper.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
mvremec committed Mar 14, 2024
1 parent beb1628 commit 97691ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/examples/10_example_paper.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1416,11 +1416,11 @@
"dpet_rcp_etco2 = pd.DataFrame(index=rcp_temp.index, columns=[\"rcp_26\", \"rcp_45\", \"rcp_60\", \"rcp_85\"])\n",
"dpet_rcp_etco2_5th = pd.DataFrame(index=rcp_temp.index, columns=[\"rcp_26\", \"rcp_45\", \"rcp_60\", \"rcp_85\"])\n",
"dpet_rcp_etco2_95th = pd.DataFrame(index=rcp_temp.index, columns=[\"rcp_26\", \"rcp_45\", \"rcp_60\", \"rcp_85\"])\n",
"for year in rcp_temp.index:\n",
"for year in rcp_temp.index: \n",
" for rcp in [\"rcp_26\", \"rcp_45\", \"rcp_60\", \"rcp_85\"]:\n",
" df_rcp_et = pd.DataFrame()\n",
" df_rcp_etco2 = pd.DataFrame()\n",
" for i in np.arange(0, len(methods)):\n",
" for i in np.arange(0, len(methods[:2])): # only for two methods to reduce processing for RTD to handle!!!!!!!!!!!!\n",
" input1 = input_rcp(rcp_temp.loc[year, rcp])\n",
" df_rcp_et[methods[i]] = simulate(sollutions2[i], methods[i], input1[i])\n",
" df_rcp_etco2[methods[i]] = simulate(sollutions2[i], methods[i], \n",
Expand Down

0 comments on commit 97691ae

Please sign in to comment.