在Shiny的结果选项卡中显示结果

时间:2015-03-04 03:02:09

标签: r shiny confusion-matrix

如何在Shiny中的mainPanel的结果选项卡上输出函数的结果(比如来自插入符号包的confusionMatrix)?

这是我在server.R中的内容:

  #Create Confusion Matrix of Predictions
  ref = matrix(c("P", "N", "P", "P", "P", "P","N"), ncol=1)
  pred = matrix(c("P", "N", "N", "P", "P", "P","P"), ncol=1)
  output$confusionMat <- renderPrint({
    confusionMatrix(ref,pred)
  })

这就是我在ui.R中所拥有的:

 mainPanel(width = 4,
      tabsetPanel(
        #tabPanel("Plot", plotOutput("plot")),
        tabPanel("Result", selectInput("featureEx", "Feature Exploration",
                                       c("ABC", "AB", "AC", "A"), multiple = TRUE),
                          helpText("Prediction Results Using Testing data"),
                          dataTableOutput("confusionMat"),
                          capture.output("confusionMat"),
                          plotOutput("fePlot")
                         ),

当我在RStudio中输入函数时,我得到的结果是:

> confusionMatrix(ref,pred)
Confusion Matrix and Statistics

          Reference
Prediction N P
         N 1 1
         P 1 4

               Accuracy : 0.7143          
                 95% CI : (0.2904, 0.9633)
    No Information Rate : 0.7143          
    P-Value [Acc > NIR] : 0.6792          

                  Kappa : 0.3             
 Mcnemar's Test P-Value : 1.0000          

            Sensitivity : 0.5000          
            Specificity : 0.8000          
         Pos Pred Value : 0.5000          
         Neg Pred Value : 0.8000          
             Prevalence : 0.2857          
         Detection Rate : 0.1429          
   Detection Prevalence : 0.2857          
      Balanced Accuracy : 0.6500          

       'Positive' Class : N               

所以我想在一个格式很好的格式矩阵中显示混淆表,我希望能够使用outputTable来做到这一点,它没有显示任何内容,也在结果选项卡中显示纯文本。目前mainPanel中没有显示任何内容。任何解决方案?

2 个答案:

答案 0 :(得分:2)

来自基本软件包的

capture.outputtextplot软件包中的PerformanceAnalytics相关联,您可能会对此感兴趣。

capture.output允许您以文本格式分别从confusionMatrix的输出中提取每个元素。请注意,您可以根据需要重新排列capture.output的输出,但在此特定示例中,我不会修改输出。然后,您必须将capture.output的输出传递给textplot,以便能够将输出呈现为Shiny中的绘图。

在上面提供的示例中,我将使用renderPrint而不是renderPlot,并使用上面提到的两个函数,如下所示:

require(PerformanceAnalytics)
output$confusionMat <- renderPlot({   #Replaced renderPrint with renderPlot
    textplot(      #wrap textplot around capture.output
        capture.output(     #capture output of confusionMatrix in text format
            confusionMatrix(ref,pred)  #your original code here
        )      #close capture.output
    )    #close textplot

}) #close renderPlot  

但如果您真的想使用renderDataTable,则需要确保将数据框传递给renderDataTable

这是一个具有不同数据集的完全可重新编辑的示例。如果你运行下面的代码,结果看起来很难看,那是因为我没有花时间按照我的喜好重新安排capture.output的输出。如果您想使用renderDataTable,则需要花一些时间来更改传递给renderDataTable的数据框的布局:

require(shiny)
require(caret)
require(PerformanceAnalytics)

server <- function(input,output,session){
    output$confusionMat <- renderDataTable({
        data.frame(
            capture.output(
                confusionMatrix(iris$Species, sample(iris$Species))
            )
        )

    })

}

ui <- shinyUI(fluidPage(

    sidebarLayout(
        sidebarPanel(

        ),

        mainPanel(
            dataTableOutput('confusionMat')
        )      

    )
))

shinyApp(ui = ui, server = server)

答案 1 :(得分:0)

我使用了verbatimTextOutput("confusionmatrix"),它在mainPanel中显示了结果。