Skip to content

Commit

Permalink
Merge pull request #32 from ihmeuw/develop
Browse files Browse the repository at this point in the history
Release v0.3.0
  • Loading branch information
rmudambi authored Apr 5, 2023
2 parents 182c4f7 + 4c9cf81 commit 57b1545
Show file tree
Hide file tree
Showing 15 changed files with 1,285 additions and 163 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
**0.3.0 - 04/04/23**

- Implement numeric miswriting noise function
- Implement age miswriting noise function
- Implement additional forms: ACS, CPS, WIC, and SSA
- Read data in from HDF files instead of CSV files

**0.2.1 - 03/31/23**

- Fix bug preventing generation of W2/1099 forms
Expand Down
2 changes: 1 addition & 1 deletion src/pseudopeople/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
__summary__ = "pseudopeople is package which adds noise to simulated census-scale data using standard scientific Python tools."
__uri__ = "https://github.com/ihmeuw/pseudopeople"

__version__ = "0.2.1"
__version__ = "0.3.0"

__author__ = "The pseudopeople developers"
__email__ = "[email protected]"
Expand Down
9 changes: 8 additions & 1 deletion src/pseudopeople/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,11 @@
__uri__,
__version__,
)
from pseudopeople.interface import generate_decennial_census, generate_w2
from pseudopeople.interface import (
generate_american_communities_survey,
generate_current_population_survey,
generate_decennial_census,
generate_social_security,
generate_taxes_w2_and_1099,
generate_women_infants_and_children,
)
4 changes: 2 additions & 2 deletions src/pseudopeople/data/incorrect_select_options.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AL,Reference person,Female,White,W2,creation
AK,Opp-sex spouse,Male,Black,1099,death
AZ,Opp-sex partner,,Asian,,
AR,Same-sex spouse,,AIAN,,
CA,Same-sex partne,,NHOPI,,
CA,Same-sex partner,,NHOPI,,
CO,Biological child,,Multiracial or Other,,
CT,Adopted child,,Latino,,
DE,Stepchild,,,,
Expand All @@ -16,7 +16,7 @@ IN,Other relative,,,,
IA,Roommate,,,,
KS,Foster child,,,,
KY,Other nonrelative,,,,
LA,Institutionalized GQ po,,,,
LA,Institutionalized GQ pop,,,,
ME,Noninstitutionalized GQ pop,,,,
MD,,,,,
MA,,,,,
Expand Down
Loading

0 comments on commit 57b1545

Please sign in to comment.