Update README.md
Browse files
README.md
CHANGED
|
@@ -1,19 +1,59 @@
|
|
| 1 |
---
|
| 2 |
title: SimpleTS
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: docker
|
| 7 |
app_port: 8501
|
| 8 |
tags:
|
| 9 |
-
- streamlit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
pinned: false
|
| 11 |
-
short_description:
|
| 12 |
---
|
| 13 |
|
| 14 |
-
#
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: SimpleTS
|
| 3 |
+
emoji: 📈
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: blue
|
| 6 |
sdk: docker
|
| 7 |
app_port: 8501
|
| 8 |
tags:
|
| 9 |
+
- streamlit
|
| 10 |
+
- time-series
|
| 11 |
+
- forecasting
|
| 12 |
+
- prophet
|
| 13 |
+
- arima
|
| 14 |
+
- holt-winters
|
| 15 |
pinned: false
|
| 16 |
+
short_description: Analyze and forecast time series — no code required.
|
| 17 |
---
|
| 18 |
|
| 19 |
+
# SimpleTS
|
| 20 |
|
| 21 |
+
Interactive Streamlit dashboard for time series analysis and forecasting. Upload your CSV or use built-in demos.
|
| 22 |
|
| 23 |
+
## Author
|
| 24 |
+
Eduardo Nacimiento García
|
| 25 |
+
📧 enacimie@ull.edu.es
|
| 26 |
+
📜 Apache 2.0 License
|
| 27 |
+
|
| 28 |
+
## Features
|
| 29 |
+
- Upload CSV or use daily/monthly/weekly demo datasets
|
| 30 |
+
- Automatic date parsing and time series setup
|
| 31 |
+
- Stationarity test (ADF)
|
| 32 |
+
- Seasonal decomposition (trend, seasonality, residuals)
|
| 33 |
+
- ACF & PACF plots
|
| 34 |
+
- Forecasting models:
|
| 35 |
+
- Holt-Winters Exponential Smoothing
|
| 36 |
+
- ARIMA (configurable p,d,q)
|
| 37 |
+
- Prophet (by Meta)
|
| 38 |
+
- Metrics: MAE, MSE, RMSE
|
| 39 |
+
- Interactive future forecasting
|
| 40 |
+
- Plotly visualizations
|
| 41 |
+
|
| 42 |
+
## Demo Datasets
|
| 43 |
+
Three built-in demos:
|
| 44 |
+
- **Daily** (1 year, 365 points)
|
| 45 |
+
- **Weekly** (2 years, 104 points)
|
| 46 |
+
- **Monthly** (4 years, 48 points)
|
| 47 |
+
|
| 48 |
+
## Deployment
|
| 49 |
+
Ready for [Hugging Face Spaces](https://huggingface.co/spaces) (free tier).
|
| 50 |
+
|
| 51 |
+
> ⚠️ Uses `sdk: docker` — include `Dockerfile`.
|
| 52 |
+
|
| 53 |
+
## Requirements
|
| 54 |
+
- Python 3.8+
|
| 55 |
+
- Streamlit, pandas, numpy, plotly, statsmodels, prophet, scikit-learn
|
| 56 |
+
|
| 57 |
+
---
|
| 58 |
+
|
| 59 |
+
💡 Tip: After uploading, select date/value columns → analyze stationarity & seasonality → choose model → forecast future values!
|