我试图弄清楚如何在我的 R Shiny 项目中保存反应性 ggplots。我已按照本指南以及 R Shiny 网站上的指南进行操作。但是,我认为我可能会遇到问题,因为我使用的是反应图。
这是我到目前为止的代码。
ui <- fluidPage(
dashboardBody(
fluidRow(uiOutput('topbox')),
fluidRow(
tabBox(
id = 'tabset1',
width = '100%',
tabPanel('Grades Graph', downloadButton('Download'), plotOutput('individualGraph')),
)
)
)
)
server <- function(input, output, session) {
grades <- reactive({
req(input$file)
inFile <- input$file
if (endsWith(inFile$name, '.xlsx')){
gradesTbl <- read_excel(inFile$datapath)
gradesTbl <- gradesTbl %>%
arrange(Period, Student, Date, Type) %>%
mutate(Date = as.Date(Date))
return(gradesTbl)
} else if (endsWith(inFile$name, 'csv')){
gradesTbl <- read_csv(inFile$datapath)
gradesTbl <- gradesTbl %>%
arrange(Period, Student, Date, Type) %>%
mutate(Date = mdy(Date))
return(gradesTbl)
}
})
output$Download <- downloadHandler(
filename = function(){
paste('test', '.png', sep = '')
},
content = function(file){
ggsave(file, plot = output$individualGraph, device = 'png')
}
)
indivdf <- function(){
data.frame(grades()) %>%
filter((Student == input$studentVar) & (Period == input$periodVar) & (Type %in% input$typeVar) & (Unit %in% input$unitVar))
}
output$individualGraph <- renderPlot({
req(input$periodVar)
indivdf() %>%
ggplot(aes(x = Date, y = Grade,
color = Type, shape = Unit)) +
geom_point(size = 4) +
ggtitle(paste(input$studentVar, "'s Individual Grades", sep = '')) +
plotTheme() +
scale_shape_manual(values = 1:10) +
facet_wrap(Unit~.) +
scale_color_manual(values = c('#E51A1D', '#377DB9', '#4EAE4A'))
})
shinyApp(ui = ui, server = server)
完整的代码在这里,但我认为这就是我想要做的一切。我只是不知道如何保存这些反应性的表和图。我觉得这与使用'plot = output$indididualGraph'有关,但我真的不知道。