在R中,我正在使用SCORECARD PACKAGE。 一切都很好,但是
决赛桌未显示我的ID栏!
score_list = lapply(dt_list, function(x) scorecard_ply(x,card, only_total_score=FALSE))
例如:我表的ID是PERSON_ID, R给了我最终名单(score_list)
但是它只是给出了类似的分数:
rows 1 2 3 4 5
scores 942 898 919 546 662
当然,我需要PERSON_ID和分数。 (我不知道哪个分数属于哪个PERSON_ID!ridicolus!)
因此无法使用...,因为我需要PERSON_ID和SCORES。
有人可以帮助我吗? 谢谢
答案 0 :(得分:0)
通过matrix = []
for each_line in file:
matrix.append(each_line.split()) #each_line.split will make a array and then we append this in matrix
print(matrix)
从github安装最新版本的记分卡,然后再次尝试下面的代码。它应该能够将id列保留在scorecard_ply中。
devtools::install_github('shichenxie/scorecard)