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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/populace_dynamics/data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@
readers -- marriage (:mod:`~populace_dynamics.data.marriage`), childbirth
and adoption (:mod:`~populace_dynamics.data.births`), and the family
relationship matrix (:mod:`~populace_dynamics.data.relmap`).

Also exposes the label-verified CPS ASEC firm-size (NOEMP) reader
(:mod:`~populace_dynamics.data.asec_firm_size`).
"""

from __future__ import annotations

from populace_dynamics.data.asec_firm_size import (
ASEC_FIRM_SIZE_YEARS,
NOEMP_BANDS,
firm_size_tabulation,
noemp_band_map,
read_asec_firm_size,
)
from populace_dynamics.data.births import birth_events, birth_history
from populace_dynamics.data.deaths import (
decode_death_code,
Expand Down Expand Up @@ -48,6 +58,11 @@
)

__all__ = [
"ASEC_FIRM_SIZE_YEARS",
"NOEMP_BANDS",
"firm_size_tabulation",
"noemp_band_map",
"read_asec_firm_size",
"decode_death_code",
"read_death_records",
"FAMILY_WAVES",
Expand Down
Loading