You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HousingOccupancyStatus = housing_occupancy_status.possible_values # "Import" the enum type. Careful: do not use python imports accross variables files: comparisons would not work!
116
+
HousingOccupancyStatus = housing_occupancy_status.possible_values # "Import" the enum type. Careful: do not use python imports across variables files: comparisons would not work!
Copy file name to clipboardexpand all lines: source/coding-the-legislation/40_legislation_evolutions.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ After this change, in a formula:
56
56
57
57
## Formula evolution
58
58
59
-
Some fiscal or benefit mechanism significantly evolve over time and call for a change in the formula that computes them. In this case, a simple parameter adjustement is not enough.
59
+
Some fiscal or benefit mechanism significantly evolve over time and call for a change in the formula that computes them. In this case, a simple parameter adjustment is not enough.
60
60
61
61
For instance, let's assume that from the 1st of Jan. 2017, the `flat_tax_on_salary` is not applied anymore on the first `1000` earned by a person.
Copy file name to clipboardexpand all lines: source/coding-the-legislation/bootstrapping_a_new_country_package.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Bootstraping a new country package
1
+
# Bootstrapping a new country package
2
2
3
3
If you want to use OpenFisca to run simulations about your own country's legislation, our [country package template](https://github.com/openfisca/country-template/) will provide you all the instructions and boilerplate code you need to quickly get something working.
If there are many households in your simulation, this parameter will be **vectorial**: it may have a different value for each household of your entity.
242
242
243
-
To be able to use this notation, all the children node of the parameter node `housing_benefit` must be **homogenous**. In the previous example, `housing_benefit.zone_1`, `housing_benefit.zone_2`, `housing_benefit.zone_3` are homogenous, as they have the same subnodes.
243
+
To be able to use this notation, all the children node of the parameter node `housing_benefit` must be **homogeneous**. In the previous example, `housing_benefit.zone_1`, `housing_benefit.zone_2`, `housing_benefit.zone_3` are homogeneous, as they have the same subnodes.
244
244
245
-
However, let's imagine that `housing_benefit.yaml` had another subnode named `coeff_furnished`, which described a coefficient to apply to the benefit is the accomodation is rented furnished:
245
+
However, let's imagine that `housing_benefit.yaml` had another subnode named `coeff_furnished`, which described a coefficient to apply to the benefit is the accommodation is rented furnished:
246
246
247
247
`housing_benefit.yaml` content:
248
248
249
249
```yaml
250
250
coeff_furnished:
251
-
description: "Coefficient to apply if the accomodation is rented furnished"
251
+
description: "Coefficient to apply if the accommodation is rented furnished"
252
252
values:
253
253
2015-01-01:
254
254
value: 0.75
@@ -269,7 +269,7 @@ To solve this issue, the good practice would be to create an intermediate node `
269
269
270
270
```yaml
271
271
coeff_furnished:
272
-
description: "Coefficient to apply if the accomodation is rented furnished"
272
+
description: "Coefficient to apply if the accommodation is rented furnished"
Copy file name to clipboardexpand all lines: source/installation/access-countrys-source-code.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The `OpenFisca-Country-Template` installation instructions are in its `README` [
14
14
15
15
Generally when making changes to legislation, there is a need to test the changes with a situation that works with the country's tax and benefit system.
16
16
17
-
Sometimes, these situations can be quite complicated to model. Instead of rewriting them everytime, they can be packaged in different formats:
17
+
Sometimes, these situations can be quite complicated to model. Instead of rewriting them every time, they can be packaged in different formats:
18
18
19
19
* As [YAML tests](./../coding-the-legislation/writing_yaml_tests.md) when the expected output result should be registered.
20
20
* As [JSON requests](./../openfisca-web-api/input-output-data.md#describing-the-situation) when the output isn't being tested. Refer to [these examples](https://github.com/openfisca/country-template/tree/main/openfisca_country_template/situation_examples) in the `OpenFisca-Country-Template` repository. These can be adapted as requests to be sent to the OpenFisca web API.
0 commit comments