|
15 | 15 | st.subheader("Team Members: Irina, Indra") |
16 | 16 | st.caption("Source: U.S. Energy Information Administration (EIA)") |
17 | 17 |
|
| 18 | +# ========================= |
| 19 | +# Project Proposal |
| 20 | +# ========================= |
| 21 | +with st.expander("Project Proposal", expanded=False): |
| 22 | + |
| 23 | + st.subheader("Project Overview") |
| 24 | + st.write(""" |
| 25 | + This project analyzes weekly U.S. petroleum product supplied data and |
| 26 | + WTI crude oil spot price data using the EIA API. Our goal is to explore |
| 27 | + how petroleum supply and crude oil prices evolve over time and whether |
| 28 | + they exhibit similar patterns during major economic or energy market events. |
| 29 | + """) |
| 30 | + |
| 31 | + st.subheader("Datasets") |
| 32 | + st.markdown(""" |
| 33 | + - **Weekly U.S. Petroleum Product Supplied** |
| 34 | + https://www.eia.gov/opendata/browser/petroleum/cons/wpsup |
| 35 | +
|
| 36 | + - **Weekly WTI Crude Oil Spot Price (RWTC)** |
| 37 | + https://www.eia.gov/opendata/browser/petroleum/pri/spt |
| 38 | + """) |
| 39 | + |
| 40 | + st.subheader("Research Questions") |
| 41 | + st.markdown(""" |
| 42 | + 1. How has U.S. petroleum product supplied changed since 2012? |
| 43 | + 2. How has WTI crude oil price changed over the same period? |
| 44 | + 3. Do petroleum supply and crude oil prices show similar patterns over time? |
| 45 | + 4. Are there noticeable disruptions during major events such as COVID-19 period? |
| 46 | + """) |
| 47 | + |
| 48 | + st.subheader("Link to the notebook") |
| 49 | + st.markdown("[Project Notebook](https://github.com/advanced-computing/giggling-wombat/blob/main/project.ipynb)") |
| 50 | + |
| 51 | + st.subheader("Target Visualization") |
| 52 | + st.markdown(""" |
| 53 | + - Weekly time-series line chart of U.S. petroleum product supplied |
| 54 | + - Weekly time-series line chart of WTI crude oil price |
| 55 | + - Visual comparison of trends between the two series |
| 56 | + """) |
| 57 | + |
| 58 | + st.subheader("Known Unknowns and Challenges") |
| 59 | + st.markdown(""" |
| 60 | + - Petroleum product supplied is a proxy for demand rather than a direct measure |
| 61 | + - Weekly data can be noisy and may obscure long-term trends |
| 62 | + - Oil prices and supply may react to different economic forces |
| 63 | + - The project depends on API data retrieval instead of downloadable CSV files |
| 64 | + """) |
| 65 | + |
| 66 | +st.divider() |
| 67 | + |
18 | 68 | API_KEY = st.secrets.get("EIA_API_KEY", None) |
19 | 69 | if not API_KEY: |
20 | 70 | st.error("Missing EIA API key. Set it in Streamlit Secrets as EIA_API_KEY.") |
|
0 commit comments