我使用ipython从CSV接收数据 Here is an image of the data.
在这里,我试图调用标记为(Among_’Yes’)Then,_where_do_you_meet_people_in_Seoul?
的pandas数据框的列。
print('(Among_’Yes’)Then,_where_do_you_meet_people_in_Seoul?\n?')
output4 = []
d4 = data30.((Among_’Yes’)Then,_where_do_you_meet_people_in_Seoul? \n).value_count()
但是,似乎问号(?)在没有任何设置的情况下无法通过ipython读取。在这种情况下,我该怎么做才能通读 括号,问号等?
答案 0 :(得分:0)
您正在尝试错误地调用列。尝试:
d4 = data30["(Among_’Yes’)Then,_where_do_you_meet_people_in_Seoul?"].value_counts()