我有一个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)
谢谢。