Created
August 31, 2015 13:31
-
-
Save Mooophy/4c070b83abd0b377beb0 to your computer and use it in GitHub Desktop.
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
| np.percentile([1,2,3,4,5,6,7,8,9,10], 50) | |
| #5.5 | |
| np.percentile([1,2,3,4,5,6,7,8,9,10], 25) | |
| #3.25 | |
| np.percentile([1,2,3,4,5,6,7,8,9,10], 75) | |
| #7.75 |
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
| quantile(c(1,2,3,4,5,6,7,8,9,10)) | |
| # output: | |
| # 0% 25% 50% 75% 100% | |
| # 1.00 3.25 5.50 7.75 10.00 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment