如何转置DataFrame
返回的 by concat()
?
df = DataFrame([
dict(a=1, b=10, c=41),
dict(a=1, b=20, c=42),
])
concat([df, df]).T
我得到:
AttributeError: 'DataFrame' object has no attribute 'dtypes' !
如果我尝试:
concat([df, df]).T.to_dict()
我得到:
RuntimeError: maximum recursion depth exceeded in cmp
我认为这与索引中引入的重复项有关,concat()
但没有找到解决方法。