Finding the Median of a Small or Large Data Set

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

This is the exact way my maths teacher taught me how to calculate the median of an even number of data 2 years ago but I forgot the method.
Thank you so much for teaching me!!!

Inertia.
Автор

This is going to make statistics way faster. Thanks!

Etriant
Автор

FOR BEGINNER CODERS+PROGRAMMERS:

If you're here because you're struggling to find the Median in coding/programming, follow this solution:

1ST: combine all numbers like such: double num1 =65.9; double num2=78.8; double num3=80.0;

2ND: next create a variable to convert them: double Convert_Numbers = num1 + num2 + num3

3RD: Place a precedence enclosure (Parenthesis) around all the numbers like such: (num1 + num2 + num3)

4TH: Place the number you're dividing them by after the Parenthesis like such: (num1 + num2 + num3) / 3;

FINISHED PRINT OUT RESULT:

whathuh
Автор

2 in the middle is 14 and 14
not 12 and 14

Saymyname.