标签: python pandas
如果我有一个数据框,其中每列包含一个列表
a b [] [] [] [] . . . . . .
调用df.values将数据帧转换为ndarray,但将子列表保留为列表。有没有办法让所有子列表都是ndarrays?
df.values
由于