想从一个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 '基隆市'
或用 | 连结都错误
有没有大大知道如何整理此类的资料,或者有资料整理的资源,感谢各位大大