enacimie commited on
Commit
a2ed16b
·
verified ·
1 Parent(s): 094716a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -6
README.md CHANGED
@@ -6,14 +6,45 @@ 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).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  sdk: docker
7
  app_port: 8501
8
  tags:
9
+ - streamlit
10
+ - statistics
11
+ - data-analysis
12
+ - hypothesis-testing
13
  pinned: false
14
+ short_description: Interactive statistical dashboard for CSV.
15
  ---
16
 
17
+ # SimpleStats
18
 
19
+ Interactive Streamlit dashboard for basic statistical analysis and hypothesis testing of CSV files.
20
 
21
+ ## Author
22
+ Eduardo Nacimiento García
23
+ 📧 enacimie@ull.edu.es
24
+ 📜 Apache 2.0 License
25
+
26
+ ## Features
27
+ - Upload CSV or use built-in demo dataset
28
+ - Descriptive statistics
29
+ - Interactive histograms and scatter plots
30
+ - Correlation matrix
31
+ - Missing values detection
32
+ - **Statistical tests:**
33
+ - Independent T-Test (for 2 groups)
34
+ - ANOVA (for 3+ groups)
35
+ - Chi-Square Test (association between categorical variables)
36
+
37
+ ## Demo Dataset
38
+ Includes a "Load Demo Dataset" button with sample data containing:
39
+ - Numeric variables: Age, Income, Satisfaction
40
+ - Categorical variables: Group, Gender, Purchase (boolean)
41
+ - Intentional missing values for testing
42
+
43
+ ## Deployment
44
+ Ready to deploy on [Hugging Face Spaces](https://huggingface.co/spaces) (free tier).
45
+
46
+ > ⚠️ Since `sdk: docker` is used, make sure you also include a `Dockerfile` (see below).
47
+
48
+ ## Requirements
49
+ - Python 3.8+
50
+ - Streamlit, Pandas, NumPy, Plotly, SciPy