Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ or higher is required to generate the TMD files.

When using version 2.1.4 to generate **sub-national weights**, there
will be (presumably small) differences from the sub-national weights
generated using earlier versions; however, the sub-national weights
fingerprints have not yet been updated.
generated using earlier versions; however, the Congressional district
weights fingerprints have not yet been updated.

The earlier TMD 2.0.0 version introduced the following significant
improvements:
Expand Down Expand Up @@ -75,3 +75,23 @@ values match state-level (or CD-level) totals from IRS Statistics of Income
See [`tmd/areas/README.md`](tmd/areas/README.md) for how to build
the weights, what files you get, and how to use them — with or
without Tax-Calculator.

Here is how to generate the state weights after executing `make data`
to generate the national files. **First**, generate the state weights
by executing this command in the top-level folder of the repository:

```
make -C tmd/areas states WORKERS=8
```

changing the number of workers from 8 to 4 if spare computing power is
needed while this command executes. Report any test errors or other
problems by opening a new issue. **Second**, run the optional state
fingerprint test by executing this command in the top-level folder of
the repository:

```
pytest tests/test_fingerprint.py -v -k states
```

Report any test errors or other problems by opening a new issue.
Loading