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
- JSON
- Selenium
- C#
- error
- SSH
- paramiko
- C++
- Python
- VS Code
- 명령어
- pip
- mysql
- 프로그래머스
- Numpy
- ubuntu
- pytorch
- LIST
- YOLO
- 핑거스타일
- 채보
- label
- Visual Studio
- pandas
- 오류
- Docker
- C
- windows forms
- Linux
- OpenCV
- 기타 연주
Archives
- Today
- Total
목록특정 column (1)
기계는 거짓말하지 않는다
Python DataFrame 특정 columns 추출
DataFrame에서 특정 column만 추출 import numpy as np import pandas as pd dataFrame = pd.read_csv("data.csv", delimiter=",", encoding="euc-kr", skiprows=1)# 첫 행이 columns이면 skiprows 불필요 select_cols = ["col1", "col2", "col3", "col4"] # 특정 column의 field name another_cols = ["col5", "col6"] select_cols_frame = dataFrame[select_cols] another_cols_frame = dataFrame[another_cols] print(select_cols_frame) # nump..
Python
2021. 10. 5. 15:18