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
- Prompt Tuning for Graph Neural Networks
- python 경우의 수
- sktime 예제
- 일부 레이어 고정
- layer 일부 freeze
- pandas 특정 조건 열 제거
- EDA 추천 파이썬
- 경우의 수 파이썬
- weight 일부 고정
- sktime
- pandas 조건
- pytorch 데이터셋 나누기
- 모델 freeze
- EDA in python
- pandas
- molecular representation
- sktime 튜토리얼
- Graph Theory
- 선형함수 딥러닝
- pretraining
- 시계열 라이브러리
- 판다스 조건
- Skip connection
- 비선형함수 딥러닝
- pandas 행 제거
- Does GNN Pretraining Help Molecular Representation?
- sktime tutorial
- pytorch dataset split
- 비선형함수
- pandas row 제거
Archives
- Today
- Total
MoonNote
pandas: 조건 일치하는 dataframe 출력 본문
1. and 조건의 경우에는 &을 사용한다.
df1 = df[(df.a != -1) & (df.b != -1)]
2. or 조건의 경우에는 |을 사용한다.
df2 = df[(df.a != -1) | (df.b != -1)]
'Study > Python' 카테고리의 다른 글
주소 (0) | 2021.09.09 |
---|---|
EDA library 추천: pandas-profiling (0) | 2021.08.20 |
pandas: 특정 조건의 row를 drop하기 (0) | 2021.07.17 |
파이썬(Python)에서 모든 조합 구하기 (0) | 2021.07.14 |
한 개의 축에 여러 개 변수 시각화하기 (0) | 2021.07.06 |
Comments