Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion docs/how_to_guides/calculating_elterngeld.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment_2023 = set_up_policy_environment(2023)\n",
"environment_2023 = set_up_policy_environment(\"2023-01-01\")\n",
"\n",
"net_wage_approximation = compute_taxes_and_transfers(\n",
" data=data_before_birth,\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment = set_up_policy_environment(2020)"
"environment = set_up_policy_environment(\"2020-01-01\")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/how_to_guides/visualizing_the_system.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment = set_up_policy_environment(date=2020)"
"environment = set_up_policy_environment(date=\"2020-01-01\")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/advanced_usage.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment = set_up_policy_environment(2020)"
"environment = set_up_policy_environment(\"2020-01-01\")"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/basic_usage.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"source": [
"The function `set_up_policy_environment` allows you to load the policy environment in Germany for a given date. The function returns an `PolicyEnvironment` object.\n",
"\n",
"Below, we load the policy environment for the year 2020. The exact date for this input will be January 1st, 2020. An exact date would be accepted as an input, too."
"Below, we load the policy environment for 1 January 2020. GETTSIM always requires exact dates, either in the format YYYY-MM-DD or as a datetime.date object."
]
},
{
Expand All @@ -63,7 +63,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment = set_up_policy_environment(2020)"
"environment = set_up_policy_environment(\"2020-01-01\")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/debugging.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment = set_up_policy_environment(2020)"
"environment = set_up_policy_environment(\"2020-01-01\")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/parameters.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment = set_up_policy_environment(2020)"
"environment = set_up_policy_environment(\"2020-01-01\")"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/policy_functions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"metadata": {},
"outputs": [],
"source": [
"environment = set_up_policy_environment(2020)"
"environment = set_up_policy_environment(\"2020-01-01\")"
]
},
{
Expand Down
Loading
Loading