I have a 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")
How do I set it's width and height? I am using shiny and on my UI.r I have
tabsetPanel(tabPanel("Main",uiOutput("plots", height = 500, width = 800)) )#tabsetPanel
but I get an error:
Error in uiOutput("plots", height = 500, width = 800) :
unused arguments (height = 500, width = 800)
Thank you.