일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- django
- Redshift
- numpy
- PostgreSQL
- Kotlin
- GIT
- list
- Excel
- matplotlib
- SQL
- Google Spreadsheet
- string
- Google Excel
- array
- c#
- Python
- Java
- google apps script
- math
- dataframe
- PySpark
- Github
- Apache
- PANDAS
- gas
- 파이썬
- Mac
- Tkinter
- hive
- Today
- Total
목록Python/Python numpy (38)
달나라 노트
numpy의 power method는 거듭제곱을 계산해줍니다. Syntax numpy.power(a, b) power는 위처럼 사용할 수 있고 a ^ b의 결과를 계산해줍니다. import numpy as np print(np.power(2, 3)) -- Result 8 2 ^ 3 = 8 을 계산한 것을 볼 수 있습니다.
numpy의 percentile() method는 어떠한 값들을 기준으로 백분위를 구하고 그 값들 사이에서의 백분위수를 return해주는 기능을 합니다. (백분위에 대한 개념을 알고 싶으면 아래 글을 참조하면 좋습니다.) https://cosmosproject.tistory.com/826 백분위(Percentile Rank), 백분위수(Percentile), 사분위수(Quartile) 알아보기 수학, 통계, 데이터 분석 등 다양한 곳에서 백분위라는 말이 쓰입니다. 수능 성적을 받아도 백분위라는 것이 있죠. 이 백분위라는 것이 무엇이고, 왜/어떻게 쓰이며, 어떻게 계산할 수 있는지 알 cosmosproject.tistory.com Syntax numpy.percentile( a=array, q=percen..
numpy의 ones() method는 1로만 채워진 array를 생성합니다. 아래 예시들을 봅시다. import numpy as np arr_ones = np.ones(shape=3) print(arr_ones) -- Result [1. 1. 1.] ones(3)의 의미는 3개의 1을 요소로서 가지는 1차원 array를 생성하라는 의미입니다. 이렇게 ones() method는 기본적으로 1차원 array를 생성합니다. import numpy as np arr_ones = np.ones(shape=3, dtype=int) print(arr_ones) -- Result [1 1 1] 위 예시처럼 dtype 옵션을 이용해서 data type을 명시해줄 수 있습니다. 위 예시는 1의 data type을 모두 ..
numpy의 clip method는 전달받은 숫자를 최소값 또는 최대값 사이의 값인지 체크합니다. 최소값보다 작은 값은 최소값으로 return하며, 최대값보다 큰 값은 최대값으로 return합니다. 만약 array를 전달받았을 경우 array에 있는 각각의 요소들마다 clip을 적용하여 array를 return합니다. Syntax numpy.clip(value_array, min, max) value_array = clip method를 적용할 어떤 값 또는 array입니다. min = 최소값입니다. max = 최대값입니다. import numpy as np val_test = np.clip(10, 2, 7) print(val_test) -- Result 7 10은 max값인 7보다 크므로 7이 retu..