在R中设置ggplot的宽度

时间:2015-01-13 01:42:45

标签: r ggplot2 shiny

我有一个ggplot

   gg<-ggplot(bigDF, aes(x=time, y=price)) + geom_line() + 
     geom_point(aes(shape = as.factor(ShapeType),
                    size = as.factor(PointSize), 
                   colour = PointColor)) +
    scale_color_manual(values = levels(as.factor(bigDF$PointColor)) ) +
    ggtitle("trades") +
    scale_shape_identity(guide="none") 

如何设置它的宽度和高度?  我在我的UI上使用闪亮的。我有

 tabsetPanel(tabPanel("Main",uiOutput("plots", height = 500, width = 800)) )#tabsetPanel  

但是我收到了错误:

Error in uiOutput("plots", height = 500, width = 800) : 
  unused arguments (height = 500, width = 800)

谢谢。

0 个答案:

没有答案