AashishAIHub commited on
Commit
353f93d
Β·
1 Parent(s): 3ca3212

add README File contecnt

Browse files
Files changed (1) hide show
  1. README.md +56 -14
README.md CHANGED
@@ -1,22 +1,51 @@
1
- # DataScience
2
 
3
- A small collection of educational, static web projects for learning statistics and machine learning.
4
 
5
- ## Contents
6
 
7
- - `complete-statistics/` β€” An interactive, browser-based Statistics course (HTML/CSS/JS). It includes 40+ topics (descriptive statistics, probability, distributions, hypothesis testing, visualizations and interactive canvases).
8
- - `ml_complete-all-topics/` β€” A comprehensive Machine Learning guide with interactive demos and explanatory pages (static HTML/CSS).
9
 
10
- There are no server-side components β€” each subproject is a static website you can open in a browser or serve with a simple static server.
 
11
 
12
- ## Quick Start (run locally)
13
 
14
- Option A β€” open in your browser (double-click):
 
 
 
 
 
 
 
 
15
 
16
- 1. Navigate to the folder of the subproject you want to view (for example `complete-statistics/`).
17
- 2. Open `index.html` in your browser.
 
 
 
 
 
18
 
19
- Option B β€” serve locally (recommended to avoid CORS/cache issues):
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
  From the repository root, run one of the following in a terminal:
22
 
@@ -38,10 +67,23 @@ Then open http://localhost:8000/complete-statistics/ or http://localhost:8000/ml
38
 
39
  Because these are static sites you can also host them on Netlify, Vercel, or any static host.
40
 
41
- ## Files of interest
42
 
43
- - `complete-statistics/index.html`, `complete-statistics/style.css`, `complete-statistics/app.js` β€” interactive statistics lessons and canvas visualizations
44
- - `ml_complete-all-topics/index.html` β€” long-form machine learning guide with examples and UI controls
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  ## Notes about repository cleanup
47
 
 
1
+ # πŸ“Š DataScience Learning Hub
2
 
3
+ Welcome to an interactive collection of educational web projects for learning statistics and machine learning! This repository contains two main interactive courses that you can access directly through your browser.
4
 
5
+ ## 🎯 Live Demos
6
 
7
+ Visit our courses directly in your browser:
 
8
 
9
+ - [πŸ“ˆ Interactive Statistics Course](https://aashishgarg13.github.io/DataScience/complete-statistics/)
10
+ - [πŸ€– Machine Learning Guide](https://aashishgarg13.github.io/DataScience/ml_complete-all-topics/)
11
 
12
+ ## πŸ“š Contents
13
 
14
+ ### πŸ“ˆ Complete Statistics Course
15
+ - **Location:** `complete-statistics/`
16
+ - **Features:**
17
+ - 40+ Interactive Topics
18
+ - Descriptive Statistics
19
+ - Probability & Distributions
20
+ - Hypothesis Testing
21
+ - Interactive Visualizations & Canvas
22
+ - Hands-on Learning Experience
23
 
24
+ ### πŸ€– Machine Learning Guide
25
+ - **Location:** `ml_complete-all-topics/`
26
+ - **Features:**
27
+ - Comprehensive ML Topics
28
+ - Interactive Demonstrations
29
+ - Visual Learning Aids
30
+ - Step-by-Step Explanations
31
 
32
+ > πŸ’‘ Both projects are pure static websites - no server needed! Open directly in your browser or use a simple static server.
33
+
34
+ ## πŸš€ Quick Start
35
+
36
+ ### Option A: View Online
37
+ Visit our GitHub Pages hosted versions:
38
+ 1. [Statistics Course](https://aashishgarg13.github.io/DataScience/complete-statistics/)
39
+ 2. [Machine Learning Guide](https://aashishgarg13.github.io/DataScience/ml_complete-all-topics/)
40
+
41
+ ### Option B: Run Locally (Recommended for Development)
42
+
43
+ #### Simple Browser Opening:
44
+ 1. Clone this repository
45
+ 2. Navigate to either project folder
46
+ 3. Double-click `index.html`
47
+
48
+ #### Using Local Server (Recommended to avoid CORS issues):
49
 
50
  From the repository root, run one of the following in a terminal:
51
 
 
67
 
68
  Because these are static sites you can also host them on Netlify, Vercel, or any static host.
69
 
70
+ ## πŸ“ Project Structure
71
 
72
+ ### Statistics Course
73
+ ```
74
+ complete-statistics/
75
+ β”œβ”€β”€ index.html # Main course interface
76
+ β”œβ”€β”€ style.css # Course styling
77
+ └── app.js # Interactive visualizations
78
+ ```
79
+
80
+ ### Machine Learning Guide
81
+ ```
82
+ ml_complete-all-topics/
83
+ β”œβ”€β”€ index.html # Main guide interface
84
+ β”œβ”€β”€ style.css # Guide styling
85
+ └── app.js # Interactive components
86
+ ```
87
 
88
  ## Notes about repository cleanup
89