반응형
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
- dataframe
- Java
- Tkinter
- Redshift
- Mac
- gas
- Google Spreadsheet
- math
- list
- PANDAS
- Kotlin
- hive
- django
- numpy
- Python
- google apps script
- 파이썬
- array
- Google Excel
- SQL
- matplotlib
- Github
- PySpark
- GIT
- string
- PostgreSQL
- c#
- Apache
- Excel
Archives
- Today
- Total
달나라 노트
Python numpy : random shuffle (array 랜덤하게 섞기) 본문
728x90
반응형
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하는걸 확인할 수 있습니다.
728x90
반응형
'Python > Python numpy' 카테고리의 다른 글
Python numpy : split (array 나누기, array split) (0) | 2022.01.23 |
---|---|
Python numpy : random normal, random uniform (정규 분포, 균등 분포, 정규 분포 array, 균등 분포 array, normal distribution, uniform distribution) (0) | 2022.01.23 |
Python numpy : random seed (예상되는 난수 생성하기) (0) | 2022.01.22 |
Python numpy : sinh, cosh, tanh (0) | 2022.01.22 |
Python numpy : sqrt (제곱근, numpy 제곱근, numpy 루트) (0) | 2022.01.22 |
Comments