일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Apache
- PostgreSQL
- math
- c#
- Github
- Kotlin
- matplotlib
- SQL
- PySpark
- google apps script
- list
- django
- gas
- Google Excel
- dataframe
- 파이썬
- Excel
- Mac
- Python
- Google Spreadsheet
- GIT
- array
- PANDAS
- Redshift
- Tkinter
- hive
- Java
- string
- numpy
- Today
- Total
목록Python (379)
달나라 노트
notes = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B'] print(notes.index('A')) print(notes.index('C')) -- Result 9 0 list에 index(value)를 적용하면 value를 list내에서 찾아 그 value의 index를 반환해줍니다.
3의 5승(3 ^ 5)을 영어로 표현하면 3 to the power of 5 입니다. 이렇게 거듭제곱을 표현하는 단어는 영어에서 power라는 단어인데 이 단어의 앞글자를 딴 method가 Python에 존재합니다. pow(n, m) .위처럼 사용할 수 있으며 n의 m승(n ^ m)을 의미합니다. print(pow(2, 3)) print(pow(3, 2)) print(pow(8, 2)) -- Result 8 9 64
numpy의 concatenate는 list나 array등을 하나의 list또는 array로 합쳐줍니다. import numpy as np x = [1, 2, 3, 4, 5] y = [1, 2, 3, 4, 5] print(np.concatenate([x, y])) -- Result [1 2 3 4 5 1 2 3 4 5] 위 예시는 2개의 list를 합친 것입니다. import numpy as np x = np.array([ [1, 2], [3, 4] ]) y = np.array([ [5, 6], [7, 8], [9, 10] ]) print(np.concatenate([x, y])) -- Result [[ 1 2] [ 3 4] [ 5 6] [ 7 8] [ 9 10]] 위 예시는 2개의 array를 하나로 ..
numpy는 삼각함수를 적용한 값을 얻어낼 수 있습니다. import numpy as np sin_0 = np.sin(np.pi/2 * 0) print(sin_0) sin_90 = np.sin(np.pi/2 * 1) print(sin_90) -- Result 0.0 1.0 np.sin(x)에서 x는 라디안입니다. π/2 * 1 = 90도 π/2 * 2 = 180도 π/2 * 3 = 270도 π/2 * 4 = 360도 이런식이죠. sin그래프를 생각하면 위 예시의 값이 왜 0과 1이 나왔는지 아실겁니다. 만약 모르겠다면 아래 예시를 봅시다. import numpy as np import matplotlib.pylab as plt arr_x_range = np.linspace(0, 2 * np.pi, num..