Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 rCharts 包绘制箱线图?我无法找到有关函数(即 polychart 库)中type参数的允许输入的文档。rPlot我试过'boxplot','boxPlot',bwPlot'......
type
rPlot
编辑: 通过 javascript 搜索看起来只有 hPlot (highcharts) 库支持箱线图,这是真的吗?
Polycharts 确实支持boxplots,但默认情况下它们看起来很丑:)
boxplots
data(tips, package = 'reshape2') p3 <- rPlot(x = 'day', y = 'box(tip)', data = tips, type = 'box') p3
您可能需要调整框线宽度的一些选项以使其更漂亮并使其达到 ggplot2 标准。
希望这可以帮助。