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
- 제시 리버모어
- 아웃풋 트레이닝
- 마크미너비니
- python
- 2%룰
- 파이어족 자산
- 마크 미너비니
- 퀀트 트레이딩
- 이클립스
- 퀀터스 하지 마세요
- 연금저축계좌
- tensorflow
- 에드워드 소프
- 파이어족 포트폴리오
- 데이빗 라이언
- 통계적 유의성
- 파이어족
- 니콜라스 다바스
- 추세추종 2%룰
- 자산배분
- H는 통계를 모른다.
- 신의 시간술
- 파이어족 자산증식
- 김프
- eclipse
- GIT
- mark minervini
- 데이비드 라이언
- AWS
- 파이어족 저축
Archives
- Today
- Total
머신러닝과 기술적 분석
[python] 순서를 유지하면서 random sampling 하기 본문
728x90
그냥 random.sample() 하면 기존의 순서유지가 안된다. 간단하게 List의 index를 random sample하면 됨.
import numpy as np
import random
input_items = [1, 2, 5, 10, 6]
# 1. 순서 관계없이 샘플링
sample_items = random.sample(input_items, 2)
print(sample_items)
# [6, 5]
# 2. 순서를 유지
sample_idxes = random.sample(range(len(input_items)), 2)
sample_idxes.sort()
sample_items = np.array(input_items)[sample_idxes].tolist()
print(sample_items)
# [2, 5]
728x90
반응형
'python' 카테고리의 다른 글
[python] f-sting에서 zero padding 하는 법 (0) | 2022.10.09 |
---|---|
[Python] 날짜 사칙연산 (n일을 더하기, 빼기) (0) | 2022.08.10 |
리눅스 nohup 사용법 (0) | 2021.07.17 |
python Logging Error 수정방법 (0) | 2021.07.13 |
python 2to3 사용방법 (0) | 2017.11.03 |
Comments