import pandas as pd
museum = pd.read_csv("data/museum_3.csv", dtype={'지역번호': str})
number = pd.read_csv("data/region_number.csv", dtype={'지역번호': str})
# 여기에 코드를 작성하세요
combined = pd.merge(museum, number, on='지역번호', how='left')
combined
'자동제어 > Python for robotics' 카테고리의 다른 글
iqr (0) | 2023.03.25 |
---|---|
.isnull(), .sum(), .dropna(inplace=True) (0) | 2023.03.24 |
groupby(), .sort_values(by=), (0) | 2023.03.24 |
.map(), .rename(column={}, inplace = True) (0) | 2023.03.21 |
.str.split() (0) | 2023.03.21 |