Skip to content

Commit de94013

Browse files
committed
chore: fix headings
1 parent e3425ea commit de94013

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

_posts/2024-10-28-understanding normality tests a deep dive into their power and limitations.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,9 @@ Assessing normality is a nuanced process that requires more than a one-size-fits
300300

301301
In practice, a comprehensive approach that combines statistical tests with visual inspection and a thorough understanding of the data will lead to more robust and reliable conclusions. By appreciating the strengths and limitations of various normality tests, statisticians and data analysts can make informed decisions that enhance the quality of their analyses.
302302

303-
## Appendix: Python Code for Normality Tests
303+
## Appendix
304+
305+
### Python Code for Normality Tests
304306

305307
```python
306308
# Import necessary libraries
@@ -358,7 +360,7 @@ geary_ratio = mad / sd
358360
print(f"Geary's Kurtosis: {geary_ratio}")
359361
```
360362

361-
# Appendix: R Code for Normality Tests
363+
### R Code for Normality Tests
362364

363365
```r
364366
# Load necessary libraries
@@ -415,7 +417,7 @@ geary_ratio <- mad / sd
415417
print(paste("Geary's Kurtosis: ", geary_ratio))
416418
```
417419

418-
# Appendix: Ruby Code for Normality Tests
420+
### Ruby Code for Normality Tests
419421

420422
```ruby
421423
# Load necessary libraries
@@ -486,7 +488,7 @@ geary_ratio = mad / sd
486488
puts "Geary's Kurtosis: #{geary_ratio}"
487489
```
488490

489-
# Appendix: Scala Code for Normality Tests
491+
### Scala Code for Normality Tests
490492

491493
```scala
492494
// Import necessary libraries
@@ -555,7 +557,7 @@ val gearyRatio = mad / stdDev
555557
println(s"Geary's Kurtosis: $gearyRatio")
556558
```
557559

558-
# Appendix: Go Code for Normality Tests
560+
### Go Code for Normality Tests
559561

560562
```go
561563
package main

0 commit comments

Comments
 (0)