简体   繁体   English

输入文件后显示R闪亮图

[英]Display R Shiny Plot After Inputting File

I would like to display a chart (for a Shiny app), based on data inputted by a user through a file. 我想根据用户通过文件输入的数据显示一个图表(针对有光泽的应用程序)。 With the current setup, there is an error message claiming the data is not found, so the plot (from the rCharts package) does not get displayed. 使用当前设置,会出现一条错误消息,提示未找到数据,因此不会显示该图(来自rCharts包)。

Code attached below: 随附的代码如下:

ui.R 用户界面

library(rCharts)
library(shinydashboard)
library(shiny)
dashboardPage(
  skin = "black",
  header <- dashboardHeader(
    titleWidth = 475
  ),
  sidebar <- dashboardSidebar(
    sidebarMenu(
    )    
  ),
  body <- dashboardBody(
    tabItems(
      tabItem("setup",
              box(width = 4,title = tags$b('Input Dataset'), solidHeader = T, status = 'primary', collapsible = T,
                  helpText("Default max. file size is 5 MB. Please upload both files for analysis in csv format."),
                  fileInput("file1","Upload the first file"),
                  fileInput("file2","Upload the second file")
              ),                  
              box(height = 500, width = 12,title = tags$b('Visualize Data'), solidHeader = T, status = 'primary',
                  showOutput("myPlot", "Highcharts")                  
              )
      )
    )
  )
)

server.R 服务器

library(shiny)
library(rCharts)
# Define server logic required to draw a histogram
shinyServer(function(input, output) {
  observe({
    file1 = input$file1
    file2 = input$file2
    if (is.null(file1) || is.null(file2)) {
      return(NULL)
    }
    data1 = read.csv(file1$datapath)
    data2 = read.csv(file2$datapath)
  })
  output$myPlot<-renderChart2({
    # Prepare data

    data1[,2] <- (data1[,2])/sum(data1[,2])

    # Create chart
    a <- rCharts:::Highcharts$new()
    a$chart(type = "column")
    a$xAxis(categories = rownames(x))
    a$yAxis(title = list(text = "Normalized Intensity"))
    a$data(data1)
    a$set(width = 600, height = 500)
    return(a)
  })
})

Try adding something like this. 尝试添加类似的内容。 Make sure you check for nrow and return and empty Highcharts$new() object as renderChart2 expects one. 确保检查nrow并返回并且清空Highcharts$new()对象,如renderChart2期望的那样。

library(shiny)
library(rCharts)
# Define server logic required to draw a histogram
shinyServer(function(input, output) {

  data1 <- reactive({read.csv(file1$datapath)})
  data2 <- reactive({read.csv(file2$datapath)})

  output$myPlot<-renderChart2({
    data1 <- data1()
    # Prepare data
    if(nrow(data1==0)){return(Highcharts$new())}
    data1[,2] <- (data1[,2])/sum(data1[,2])

    # Create chart
    a <- rCharts:::Highcharts$new()
    a$chart(type = "column")
    a$xAxis(categories = rownames(x))
    a$yAxis(title = list(text = "Normalized Intensity"))
    a$data(data1)
    a$set(width = 600, height = 500)
    return(a)
  })
})

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM