我有几个不同的 CSV 文件,如下所示:
one:
iq, name
69, joe
122, james
...
two:
iq_start, iq_end, category
120,500, Very Superior
120,129, Superior
110,119, High Average
90,109, Average
80,89, Low Average
70,79, Borderline
0,69, Extremely Low
three:
iq, career
69 , manual work
122, doctor
我想将数据拉入 pandas ,并像这样输出数据
[
"122" = {
"name" : "james",
"career" : "doctor"
"category" : "Superior"
},
"69" = {
"name" : "joe",
"career" : "manual work"
"category" : "Extremely Low"
}
]
熊猫可以解决这个问题或给我一些帮助吗?