这是我与RStudio和Shiny设计的第一个项目。因此,我相信有一些我尚不了解的小问题。
我正在尝试使用Shinyapps.io在线发布两个大表作为Shiny R App。该代码在本地运行良好,但发布后这些表将不会在线显示。见下文
https://myrmeco-fox.shinyapps.io/Transcriptome_Table/
我的脚本如下:
require(shiny)
require(DT)
ui <- fluidPage(
title = "Summary of de novo assembly annotations",
mainPanel(
tabsetPanel(
id = 'dataset',
tabPanel("Contigs", DT::dataTableOutput("mytable1")),
tabPanel("Isotigs", DT::dataTableOutput("mytable2"))
)
)
)
server <- function(input, output) {
Contigs<-reactiveValues(Contigs_Table=read.table("Data/annotations_expanded_CONTIGS.txt", header= TRUE, sep = "\t", fill = TRUE, na.strings = c("", "---NA---"), nrows=7467, colClasses="character", quote=""))
class(Contigs_Table$Length)<-"numeric"
class(Contigs_Table$Cys)<-"numeric"
Isotigs<-reactiveValues(Isotigs_Table=read.table("Data/Annotation_summary_expanded_ISOTIGS", header= TRUE, sep = "\t", fill = TRUE, na.strings = c("", "---NA---"), nrows=12538, colClasses="character", quote=""))
class(Isotigs_Table$Length)<-"numeric"
class(Isotigs_Table$Cys)<-"numeric"
output$mytable1 = renderDataTable(Contigs_Table, options = list(pageLength = 5))
output$mytable2 = renderDataTable(Isotigs_Table, options = list(pageLength = 5))
}
shinyApp(ui, server)
UI
ui <- fluidPage(
title = "Summary of de novo assembly annotations",
mainPanel(
tabsetPanel(
id = 'dataset',
tabPanel("Contigs", DT::dataTableOutput("mytable1")),
tabPanel("Isotigs", DT::dataTableOutput("mytable2"))
)
)
)
服务器
server <- function(input, output) {
source("Data.R")
class(Contigs_Table$Length)<-"numeric"
class(Contigs_Table$Cys)<-"numeric"
class(Isotigs_Table$Length)<-"numeric"
class(Isotigs_Table$Cys)<-"numeric"
output$mytable1 = renderDataTable(Contigs_Table, options = list(pageLength = 5))
output$mytable2 = renderDataTable(Isotigs_Table, options = list(pageLength = 5))
}
数据
Contigs<-reactiveValues(Contigs_Table=read.table("Data/annotations_expanded_CONTIGS.txt", header= TRUE, sep = "\t", fill = TRUE, na.strings = c("", "---NA---"), nrows=7467, colClasses="character", quote=""))
Isotigs<-reactiveValues(Isotigs_Table=read.table("Data/Annotation_summary_expanded_ISOTIGS", header= TRUE, sep = "\t", fill = TRUE, na.strings = c("", "---NA---"), nrows=12538, colClasses="character", quote=""))
我遵循了一些讨论的指示,例如将文件添加到子文件夹(它们也已上载)以及使用reactValues。我的语法略有变化(带和不带点等),仍然无效。
答案 0 :(得分:1)
:) 将“ /”放在数据前面怎么办?我假设您的数据在此数据子文件夹中?