想從一個dataframe中取得某些特定關鍵字的資料
year location rainfall
01 107 台北市 90
02 107 新北市 80
03 108 台北市 70
類似上面的dataframe取得北部區域的資料
附上程式碼
if location in ['台北市', '新北市', '基隆市']:
a = df[df.location.str.contain(台北市)]
b = df[df.location.str.contain(新北市)]
c = df[df.location.str.contain(基隆市)]
d = a.append(b,c)
return d
elif 其他區域
跑的時候遇到
ValueError:The truth value of a DataFrame is ambitious.
有嘗試將
if location in ['台北市', '新北市', '基隆市']
改成
if location == '台北市' or '新北市' or '基隆市'
或用 | 連結都錯誤
有沒有大大知道如何整理此類的資料,或者有資料整理的資源,感謝各位大大