我试图弄清楚如何在我的R Shiny项目中保存反应性ggplots。我遵循了this指南以及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)
完整代码为here,但我认为这是所有可以说明我要执行的操作的代码。我只是不知道如何保存这些反应性的表和图。我觉得这与使用'plot = output $ indididualGraph'有关,但我真的不知道。
答案 0 :(得分:6)
您需要使用代码来生成图并将其从renderPlot
移到reactive
中。
然后,您可以从reactive
内部调用相同的renderPlot
,以在用户界面中显示图形,而从downloadHandler
中调用图形,以下载图形。
请参见下面的示例。
对于反应式(individualGraph()
)和输出返回(output$individualGraph
)使用相同的变量名称可能不是最佳的编码实践,但我发现它更方便。
server <- function(input, output, session) {
individualGraph <- reactive({
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'))
})
output$individualGraph <- renderPlot({
req(individualGraph())
individualGraph()
})
output$Download <- downloadHandler(
filename = function(){
paste('test', '.png', sep = '')
},
content = function(file){
req(individualGraph())
ggsave(file, plot = individualGraph(), device = 'png')
}
)
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)
}
})
indivdf <- function(){
data.frame(grades()) %>%
filter((Student == input$studentVar) & (Period == input$periodVar) & (Type %in% input$typeVar) & (Unit %in% input$unitVar))
}
}