我在 R 中使用 Sparklines 包并使用 reshapeExt() 函数准备数据集,但遇到了一个非常奇怪的问题。数据集如下所示:
Company time value
1 Microsoft 1990 11
2 Time Warner 1990 22
3 Verizon 1990 33
4 Microsoft 1991 44
5 Time Warner 1991 55
6 Verizon 1991 66
7 Microsoft 1992 77
8 Time Warner 1992 88
9 Verizon 1992 99
然后我按照教程示例运行这些行:
example <- example[,c("Company","value","time")]
example$time <- as.numeric ( as.character ( example$ time ))
dat <- reshapeExt ( example , idvar =" Company " , varying = list (2))
莫名其妙地,R给了我这个“dat”:
Company time value Company
1 Microsoft 1 11 1
2 Time Warner 1 22 2
3 Verizon 1 33 3
4 Microsoft 1 44 4
5 Time Warner 1 55 5
6 Verizon 1 66 6
7 Microsoft 1 77 7
8 Time Warner 1 88 8
9 Verizon 1 99 9
时间列无缘无故地变成了 1。当我在https://web.warwick.ac.uk/statsdept/user2011/TalkSlides/Contributed/18Aug_0950_FocusVI_4-ReportingData_2-Kowarik.pdf第 18 页实施示例时,这不会发生- 这里发生了什么?
任何帮助表示赞赏