自动以闪亮的方式绘制

问题描述 投票:0回答:1

我正在使用 R 编程,我想自动绘制数值和分类变量的图,并带有摘要。

我正在使用闪亮的库。

r shiny
1个回答
0
投票

这是使用 ggplot2 为闪亮的数值变量创建直方图的示例:

output$plot1 <- renderPlot({
  ggplot(data, aes(x = variable))+
geom_histogram(binwidth = 1)})
© www.soinside.com 2019 - 2024. All rights reserved.