如何从csv文件格式化具有结构化行和列的漂亮表格?

时间:2019-09-09 23:42:41

标签: python pandas jupyter

我找到了这个FIFA玩家数据集,正在清理它,但我不知道要在列和行中指定它的熊猫函数。

输出看起来像这样:

delayed expansion

我在熊猫上没有找到执行此功能的功能,也许像这样的功能可能有效,但是我不确定。我想知道熊猫是否有简单的方法。

id, name, rating, position, height, foot, rare, pace, shooting, passing, dribbling, defending, heading, diving, handling, kicking, reflexes, speed, positioning
0   1001, Gábor Király, 69, GK, 191, Right, 0, ,...
1   100143, Frederik Boi, 65, M, 184, Right, 0, 61...
2   100264, Tomasz Szewczuk, 57, A, 185, Right, 0,...
3   100325, Steeve Joseph-Reinette, 63, D, 180, Le...
4   100326, Kamel Chafni, 72, M, 181, Right, 0, 75...

在说明中

1 个答案:

答案 0 :(得分:1)

import pandas as pd
fifa_df=pd.read_csv("FIFA.csv")
#check the data is as you expect
fifa_df.head()

#Save to an excel file
fifa_df.to_excel("output.xlsx")