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
- 파이썬
- 티스토리
- Ga
- Pandas
- 한빛미디어
- Linux
- 한빛미디어서평단
- tensorflow
- Tistory
- Google Analytics
- 시각화
- MySQL
- Blog
- 파이썬 시각화
- matplotlib
- SQL
- 월간결산
- Visualization
- 독후감
- 리눅스
- 딥러닝
- 통계학
- Python
- MATLAB
- 텐서플로
- 매틀랩
- 블로그
- 서평단
- python visualization
- 서평
Archives
- Today
- Total
목록python DataFrame (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