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
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
changed:
- Deleted visualization functionality.
8 changes: 2 additions & 6 deletions docs/demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,15 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import pandas as pd\n",
"\n",
"import taxcalc as tc\n",
"import microdf as mdf\n",
"\n",
"import matplotlib as mpl\n",
"import matplotlib.pyplot as plt\n",
"import seaborn as sns"
"import microdf as mdf"
]
},
{
Expand Down
3 changes: 0 additions & 3 deletions microdf/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
from .agg import agg, combine_base_reform, pctchg_base_reform
from .chart_utils import currency_format, dollar_format
from .charts import quantile_pct_chg_plot
from .concat import concat
from .constants import (
BENS,
Expand Down Expand Up @@ -47,7 +45,6 @@
poverty_rate,
squared_poverty_gap,
)
from .style import AXIS_COLOR, DPI, GRID_COLOR, TITLE_COLOR, set_plot_style
from .tax import mtr, tax_from_mtrs
from .taxcalc import (
add_weighted_metrics,
Expand Down
37 changes: 0 additions & 37 deletions microdf/chart_utils.py

This file was deleted.

62 changes: 0 additions & 62 deletions microdf/charts.py

This file was deleted.

54 changes: 0 additions & 54 deletions microdf/style.py

This file was deleted.

4 changes: 0 additions & 4 deletions microdf/tests/test_quantile_chg.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,3 @@

def test_quantile_chg() -> None:
mdf.quantile_chg(DF1, DF2, "v", "w", "v", "w")


def test_quantile_pct_chg_plot() -> None:
mdf.quantile_pct_chg_plot(DF1, DF2, "v", "w", "v", "w")
12 changes: 2 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "microdf-python"
version = "0.4.6"
name = "microdf"
version = "0.4.5"
description = "Survey microdata as DataFrames"
readme = "README.md"
authors = [
Expand All @@ -26,25 +26,17 @@ dev = [
"docformatter",
"isort",
"linecheck",
"matplotlib",
"pip",
"pytest",
"pytest-cov",
"seaborn",
"setuptools",
"build",
]
docs = [
"jupyter_book",
]
taxcalc = [
"taxcalc",
]
charts = [
"seaborn",
"matplotlib",
"matplotlib-label-lines",
]

[tool.setuptools.packages.find]
where = ["."]
Expand Down