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
- 독후감
- Google Analytics
- 월간결산
- SQL
- MySQL
- 파이썬
- 서평
- 통계학
- 딥러닝
- 블로그
- Tistory
- tensorflow
- 서평단
- Ga
- MATLAB
- Blog
- 시각화
- 한빛미디어서평단
- 텐서플로
- Pandas
- Python
- 한빛미디어
- 리눅스
- 파이썬 시각화
- python visualization
- Visualization
- 매틀랩
- matplotlib
- Linux
- 티스토리
Archives
- Today
- Total
목록python query (1)
pbj0812의 코딩 일기
[PYTHON] pandas query 함수 사용하기
0. 목표 - query 함수 사용하기 1. 실습하기 1) library 호출 import pandas as pd 2) dataframe 생성 df = pd.DataFrame({'A' : [1, 2, 3, 4, 5], 'B' : ['apple', 'banana', 'apple', 'berry', 'watermelon']}) 3) query 사용하기 (1) where A > 3 df.query('A > 3') (2) where A > 3 and A 3 and A < 5') (3) where A = 1 or A = 4 df.query('A == 1 or A == 4') (4) where A in (1, 3, 5) df.query("A in (1, 3, 5)") (5) wher..
ComputerLanguage_Program/PYTHON
2021. 7. 9. 10:14