Scatch note
Pandas 기초 사용법
05.15.20211 Min Read — In howto

공통코드

import pandas as pd
data = pd.DataFrame([
  {'name':'mglee', 'age': 23},
  {'name':'python', 'age': 23},
  {'name':'pandas', 'age': 23},
  {'name':'datadog', 'age': 23},
  ])

# 아래와 같이 선언할수도 있음
data = pd.DataFrame({
  "name": ["mglee", "python", "pandas", "datadog"],
  "age": [23,23,23,23]
})

loc: label이나 쿼리를 통해 선택하는 방법

label orientied : inclusive of end

Location

iloc: 행번호로 선택하는 방법

position oriented : exclusive of end

Index location

data.iloc[0:1]
print(data)

#    name   age
# 0  mglee  23