examples/us_budgetary_impact.py:38 contains:
print(f" Loaded: {dataset}")
PolicyEngineUSDataset's __repr__/__str__ dumps every underlying dataframe to stdout, which floods the example output.
Replace with something more concise, e.g.:
print(f" Loaded: {dataset.name} ({len(dataset.data.person):,} people)")
Reported in the discussion on #264.
examples/us_budgetary_impact.py:38contains:PolicyEngineUSDataset's__repr__/__str__dumps every underlying dataframe to stdout, which floods the example output.Replace with something more concise, e.g.:
Reported in the discussion on #264.