Browse Source

Corretgir exportar objecte.

master
Costa 3 years ago
parent
commit
d58e3d6e0e
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      app.R

+ 3
- 2
app.R

@ -269,9 +269,10 @@ server <- function(input, output) {
png("plot.png", width = input$width, height=input$height, units = "px", res=720) png("plot.png", width = input$width, height=input$height, units = "px", res=720)
plot(dades$plot) plot(dades$plot)
dev.off() dev.off()
save(dades$plot, list="plot", file="plot.RObject")
plot<-dades$plot
save(plot, file="plot.RObject")
zip(file, zip(file,
c("plot.png")
c("plot.png", "plot.RObject")
) )
} }
) )

Loading…
Cancel
Save