从Shiny(R)pt下载png。 2

时间:2014-11-19 03:25:53

标签: r download png shiny maptools

这涉及我之前曾问过的一个问题:

Downloading png from Shiny (R)

我现在已经创建了多个闪亮的图并下载了它们,但是对于使用maptools包的图,我只是得到了一个空的png。

这是Shiny中的错误还是我的代码出错?

以下是我的服务器文件的相关摘录:

plotInput2 <- function(){


  my.data<-DataInput()
  sub <- subset(DataInput(), as.character(DataInput()[,2])==input$var1)
  a = which(names(sub)==input$var2)
  x_lab <- as.numeric(sub[,a])   
  Country <- as.character(sub[,1])
  mapdata <- data.frame(Country=Country,Perc=x_lab)

  percent_map <- function(data) {
    # world <- map_data("world")
    data(wrld_simpl)
    world <- fortify(wrld_simpl,region='NAME')

    names(world) <- list("long","lat","order","hole","piece","group", "Country")
    world$Country <- tolower(world$Country)
    data$Country <- tolower(data$Country)
    world$Country <- tolower(world$Country)
    choro <- merge(world, data, by=c("Country"),all=TRUE)
    choro <- choro[order(choro$order), ]
    choro$Perc <-as.numeric(as.character(choro$Perc)) 

    ## PLOT MAP IN GREY ##
    ggplot() + geom_polygon(aes(long,lat,group=group),data=world, fill=NA) +


      ## PLOT DATA ##
      geom_polygon(aes(long, lat, group = group,  fill=Perc),data = choro)       

  }

  percent_map(mapdata)

    }    


output$mapjoon <- renderPlot({
  print(plotInput2())
})


output$downloadPlot2 <- downloadHandler(
  filename = "Shinyplot2.png",
  content = function(file) {
    png(file)
    plotInput2()
    dev.off()
  })

1 个答案:

答案 0 :(得分:1)

这与Save plots made in a shiny app

高度相关

尝试将print(plotInput2())添加到downloadHandler而不是plotInput2()

需要print()的原因可以从以下网址找到:http://cran.r-project.org/doc/FAQ/R-FAQ.html#Why-do-lattice_002ftrellis-graphics-not-work_003f

似乎ggplot没有绘制图,但只创建了一个图形对象。