Created
September 28, 2017 23:52
-
-
Save calvimor/70d23aecf999bcfe8debc501e2625136 to your computer and use it in GitHub Desktop.
Repasando conceptos básicos | Estadística
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import statistics as stats | |
numbersMean = [1525, 257, 378, 9543, 7854, 152] | |
numbersMode = [9, 5, 9, 4, 3, 6, 7, 1, 2, 3, 9, 1, 2] | |
numbersMedian = [9, 5, 9, 4, 3, 6, 7, 1, 2, 3, 9, 1, 2] | |
print(stats.mean(numbersMean)) | |
print(stats.mode(numbersMode)) | |
print(stats.median(numbersMedian)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment