enacimie commited on
Commit
642e362
·
verified ·
1 Parent(s): 7f3dfc6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -9
README.md CHANGED
@@ -1,19 +1,59 @@
1
  ---
2
  title: SimpleTS
3
- emoji: 🚀
4
- colorFrom: red
5
- colorTo: red
6
  sdk: docker
7
  app_port: 8501
8
  tags:
9
- - streamlit
 
 
 
 
 
10
  pinned: false
11
- short_description: Streamlit template space
12
  ---
13
 
14
- # Welcome to Streamlit!
15
 
16
- Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
17
 
18
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
19
- forums](https://discuss.streamlit.io).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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!