我需要将列从unicode转换为str。 我试试
f.edge(str(group['subdomain']).iloc[i], str(group['subdomain'].iloc[i+1]),
label=str(group['search_term'].iloc[i+1]))
但它会返回AttributeError: 'str' object has no attribute 'iloc'
我该如何解决这个问题?
答案 0 :(得分:1)
您在访问iloc
属性之前正在投射:
str(group['subdomain']).iloc[i]
# ^
将括号移动到更远的位置:
str(group['subdomain'].iloc[i])