반응형
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
- PANDAS
- dataframe
- SQL
- gas
- Python
- math
- GIT
- list
- array
- Kotlin
- Excel
- Java
- django
- string
- Google Excel
- Redshift
- Google Spreadsheet
- PostgreSQL
- numpy
- 파이썬
- Github
- Mac
- PySpark
- c#
- hive
- google apps script
- Tkinter
- matplotlib
- Apache
Archives
- Today
- Total
목록LOC (1)
달나라 노트
Python Pandas : DataFrame.loc & DataFrame.iloc
DataFrame.loc & DataFrame.iloc DataFrame의 loc, iloc는 DataFrame에서 내가 원하는 행 또는 내가 원하는 컬럼만을 추출할 수 있게 해줍니다. 먼저 test용 DataFrame을 생성합니다. import pandas as pd dict_name = { 'item_id': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 'item_name': ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'], 'status': [1, 1, 1, 0, 0, 1, 0, 1, 1, 1] } df_name = pd.DataFrame(dict_name) print(df_name) print(type(df_name)) - Output it..
Python/Python Pandas
2020. 11. 4. 20:09