Skip to content

Commit

Permalink
Fix missed attribute access (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
spjuhel authored Aug 30, 2024
1 parent e86d569 commit aae51ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/tutorial/climada_util_calibrate.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@
"from climada.util.constants import SYSTEM_DIR\n",
"\n",
"emdat = pd.read_csv(SYSTEM_DIR / \"tc_impf_cal_v01_EDR.csv\")\n",
"emdat_subset = emdat[(emdat.cal_region2 == \"NA1\") & (emdat.year >= 2010)]\n",
"emdat_subset = emdat[(emdat["cal_region2"] == \"NA1\") & (emdat["year"] >= 2010)]\n",
"emdat_subset"
]
},
Expand Down

0 comments on commit aae51ae

Please sign in to comment.