반응형
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 | 31 |
Tags
- Tkinter
- Excel
- math
- PySpark
- Java
- Google Spreadsheet
- 파이썬
- string
- Redshift
- list
- matplotlib
- hive
- PANDAS
- django
- Github
- google apps script
- array
- Mac
- dataframe
- GIT
- c#
- Kotlin
- gas
- SQL
- Apache
- numpy
- PostgreSQL
- Python
- Google Excel
Archives
- Today
- Total
목록shuffle (2)
달나라 노트
Python numpy : random shuffle (array 랜덤하게 섞기)
numpy의 random.shuffle method는 array속 요소들을 랜덤한 순서로 섞어줍니다. import numpy as np arr_1 = np.array([1, 2, 3, 4, 5]) np.random.shuffle(arr_1) print(arr_1) -- Result [4 2 3 5 1] 위 예시를 보면 array 속 요소들의 순서가 바뀐 것을 볼 수 있습니다. 위 코드를 실행할 때 마다 다른 순서로 섞인 array를 return하는걸 확인할 수 있습니다.
Python/Python numpy
2022. 1. 22. 23:55