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
- pretraining
- 판다스 조건
- pytorch dataset split
- pandas row 제거
- molecular representation
- sktime 튜토리얼
- pandas 특정 조건 열 제거
- layer 일부 freeze
- EDA 추천 파이썬
- sktime tutorial
- 모델 freeze
- 경우의 수 파이썬
- 일부 레이어 고정
- python 경우의 수
- pandas
- 선형함수 딥러닝
- 비선형함수
- sktime
- pandas 행 제거
- Does GNN Pretraining Help Molecular Representation?
- 비선형함수 딥러닝
- 시계열 라이브러리
- Skip connection
- weight 일부 고정
- Prompt Tuning for Graph Neural Networks
- Graph Theory
- EDA in python
- pandas 조건
- pytorch 데이터셋 나누기
- sktime 예제
Archives
- Today
- Total
MoonNote
파이썬(Python)에서 모든 조합 구하기 본문
from itertools import combinations
features = ['GzmB1', 'age', 'Mean_pack_years', 'ANC', 'ALC', 'NLR', 'CRP', 'CEA', 'sex', 'smoking']
features_combination = []
# feature의 모든 조합을 구하기(1~10개)
for i in range(1, len(features) +1 ):
features_combination += list(combinations(features, i))
print(features_combination)
'Study > Python' 카테고리의 다른 글
주소 (0) | 2021.09.09 |
---|---|
EDA library 추천: pandas-profiling (0) | 2021.08.20 |
pandas: 특정 조건의 row를 drop하기 (0) | 2021.07.17 |
pandas: 조건 일치하는 dataframe 출력 (0) | 2021.07.16 |
한 개의 축에 여러 개 변수 시각화하기 (0) | 2021.07.06 |
Comments