diff --git a/Dockerfile b/Dockerfile index 565c65c..c15d903 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,5 @@ FROM python:latest COPY . . # Install RUN make install -RUN make download # Run tests CMD ["make", "data"] \ No newline at end of file diff --git a/docs/pages/Aggregates.py b/docs/pages/Aggregates.py new file mode 100644 index 0000000..42ae083 --- /dev/null +++ b/docs/pages/Aggregates.py @@ -0,0 +1,8 @@ +import streamlit as st + +st.title("Aggregates") + +from policyengine_us import Microsimulation +from policyengine_us_data import EnhancedCPS_2024 + +sim = Microsimulation(dataset=EnhancedCPS_2024)