Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vishrut-b authored Dec 27, 2024
1 parent 7612c64 commit 7ad659b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,22 @@ EDA involved:
Z = \frac{X - \mu}{\sigma}
$$

Where :
- **\( Z \):** The Z-score, representing the normalized value of the feature. It indicates how many standard deviations a particular value (\( X \)) is from the mean (\( \mu \)).
- **\( X \):** The original value of the feature being normalized.
- **\( \mu \):** The mean (average) value of the feature, calculated as:
$$
\mu = \frac{\sum_{i=1}^{n} X_i}{n}
$$
where:
- \( n \): Number of data points.
- \( X_i \): Individual feature values.

- **\( \sigma \):** The standard deviation of the feature, measuring the spread or variability of the data around the mean, calculated as:
$$
\sigma = \sqrt{\frac{\sum_{i=1}^{n} (X_i - \mu)^2}{n}}
$$

### Clustering Process
1. **Optimal K Selection**:
- Used the **Elbow Method** and **Silhouette Scores** to determine \( k = 4 \).
Expand Down

0 comments on commit 7ad659b

Please sign in to comment.