library(GGally)
library(ggplot2)
data(diamonds, package="ggplot2")
diamonds.samp <- diamonds[sample(1:dim(diamonds)[1],100),]
gpd <- ggparcoord(data = diamonds.samp,columns = c(1,5:10),groupColumn = 2)抛出错误
> Error: (list) Object can not be converted to 'double'这是来自GGally的例子。这是(另一个)虫子吗?
发布于 2016-01-18 15:19:24
从干净的会话中再次运行。
https://stackoverflow.com/questions/34740580
复制相似问题