Aashish34 commited on
Commit
45a5266
Β·
1 Parent(s): 9936e84

add README File contecnt

Browse files
Files changed (1) hide show
  1. README.md +52 -1
README.md CHANGED
@@ -1,6 +1,6 @@
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
 
@@ -8,6 +8,9 @@ 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
 
@@ -29,6 +32,30 @@ Visit our courses directly in your browser:
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
@@ -85,6 +112,30 @@ ml_complete-all-topics/
85
  └── app.js # Interactive components
86
  ```
87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  ## Notes about repository cleanup
89
 
90
  While repairing the repository I removed macOS Finder metadata files (names beginning with `._`) that had been added inside the `.git` metadata and working tree. Those `._*` files are resource-fork metadata and are not project code. A `.gitignore` entry was added to ignore these moving forward:
 
1
  # πŸ“Š DataScience Learning Hub
2
 
3
+ Welcome to a comprehensive collection of educational web projects for learning data science! This repository contains multiple interactive courses and resources covering statistics, machine learning, visualization, mathematics, and feature engineering.
4
 
5
  ## 🎯 Live Demos
6
 
 
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
+ - [πŸ“Š Data Visualization](https://aashishgarg13.github.io/DataScience/Visualization/)
12
+ - [πŸ”’ Mathematics for Data Science](https://aashishgarg13.github.io/DataScience/math-ds-complete/)
13
+ - [βš™οΈ Feature Engineering Guide](https://aashishgarg13.github.io/DataScience/feature-engineering/)
14
 
15
  ## πŸ“š Contents
16
 
 
32
  - Visual Learning Aids
33
  - Step-by-Step Explanations
34
 
35
+ ### πŸ“Š Data Visualization
36
+ - **Location:** `Visualization/`
37
+ - **Features:**
38
+ - Interactive Data Visualization Examples
39
+ - Chart Types and Best Practices
40
+ - Dynamic Visualization Techniques
41
+ - Data Presentation Guidelines
42
+
43
+ ### πŸ”’ Mathematics for Data Science
44
+ - **Location:** `math-ds-complete/`
45
+ - **Features:**
46
+ - Linear Algebra Fundamentals
47
+ - Calculus for Machine Learning
48
+ - Statistical Mathematics
49
+ - Optimization Theory
50
+
51
+ ### βš™οΈ Feature Engineering Guide
52
+ - **Location:** `feature-engineering/`
53
+ - **Features:**
54
+ - Data Preprocessing Techniques
55
+ - Feature Selection Methods
56
+ - Feature Transformation
57
+ - Dimensionality Reduction
58
+
59
  > πŸ’‘ Both projects are pure static websites - no server needed! Open directly in your browser or use a simple static server.
60
 
61
  ## πŸš€ Quick Start
 
112
  └── app.js # Interactive components
113
  ```
114
 
115
+ ### Data Visualization
116
+ ```
117
+ Visualization/
118
+ β”œβ”€β”€ index.html # Visualization examples
119
+ β”œβ”€β”€ style.css # Visualization styling
120
+ └── app.js # Interactive charts
121
+ ```
122
+
123
+ ### Mathematics for Data Science
124
+ ```
125
+ math-ds-complete/
126
+ β”œβ”€β”€ index.html # Mathematics course interface
127
+ β”œβ”€β”€ style.css # Course styling
128
+ └── app.js # Interactive math demonstrations
129
+ ```
130
+
131
+ ### Feature Engineering Guide
132
+ ```
133
+ feature-engineering/
134
+ β”œβ”€β”€ index.html # Feature engineering guide
135
+ β”œβ”€β”€ style.css # Guide styling
136
+ └── app.js # Interactive examples
137
+ ```
138
+
139
  ## Notes about repository cleanup
140
 
141
  While repairing the repository I removed macOS Finder metadata files (names beginning with `._`) that had been added inside the `.git` metadata and working tree. Those `._*` files are resource-fork metadata and are not project code. A `.gitignore` entry was added to ignore these moving forward: