Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- start exercise
- Github
- MySQL
- __init__
- multiple lines
- machine learning
- error
- variables
- pie charts
- data distribution
- line color
- polynomial regression
- line width
- iterates
- AS
- SQL
- break
- continue
- matplotlib
- PANDAS
- Else
- matplotlib.pyplot
- Text mining
- Python
- train/test
- For loops
- Default X points
- Text Analytics
- self parameter
- PROJECT
Archives
- Today
- Total
Data Science Explorer
Machine Learning: Percentiles 본문
반응형
- Percentiles
Percentiles are used in statistics to give you a number that describes the value that a given percent of the values are lower than.
Example
Use the Numpy percentile () method to find the percentiles.
import numpy
ages = [5,31,43,48,50,41,7,11,15,39,80,82,32,2,8,6,25,36,27,61,31]
x = numpy.percentile(ages, 75)
print(x)
What is the 75. percentile? The answer is 43, meaning that 75 percent of the people are 43 or younger.
'Machine Learning' 카테고리의 다른 글
Machine Learning : Polynomial Regression (0) | 2023.11.17 |
---|---|
Machine Learning: Linear Regression (0) | 2023.11.15 |
Machine Learning : Standard Deviation (0) | 2023.11.13 |
Mean Median Mode (0) | 2023.11.12 |
Text Mining #4 Stemming and Lemmatization (0) | 2023.09.06 |