当我尝试str
在 R 中使用该函数时出现错误。
这是数据:
> dput(data1)
data1<- structure(list(Year = 1990:2010, Counts = c(1401L, 1290L, 1168L,1260L, 1252L, 1381L, 1330L, 1275L, 1235L, 1248L, 1237L, 1206L, 1175L, 1172L, 1055L, 1030L, 1002L, 987L, 915L, 806L, 868L)), .Names = c("Year", "Counts"), class = "data.frame", row.names = c(NA, -21L))
我不知道为什么 R 给我以下错误,str
而 whileclass
函数清楚地表明 data1 是 a data.frame
。
> class(data1)
[1] "data.frame"
> str(data1)
Error in str(data1) :
unable to find a non-generic version of function "str"
我正在为 Windows 使用 R 版本 2.15.0 (2012-03-30)。
任何帮助将不胜感激。
编辑: 通过干净的 R 会话,它起作用了。但是为什么会出现这种问题呢?这有可能知道吗?