require(devtools)
install_github("ramnathv/rCharts")
(如果出现问题,可以尝试先安装以下三个包,再试一下)
library("curl")
library("openssl")
library("httr")
###安装出现问题,可以尝试先加载前面三个包试试,自己安装时候搞了好久
require(devtools)
install_github("ramnathv/rCharts")
library(rCharts)
# 指定展示尺寸 options(RCHART_WIDTH = 700, RCHART_HEIGHT = 500) # 使用内置数据集iris# 按照Species的不同类型进行分面和颜色,指定绘图类型为"point"
names(iris) = gsub("\\.", "", names(iris))
rc<-rPlot(SepalLength ~ SepalWidth | Species, data = iris, color = 'Species', type = 'point',x="vehwv")
rc$save('r1.html') ##保存成html格式 打开可以是交互的图