R Shiny:渲染 summary.ivreg 输出 [英] R Shiny: Rendering summary.ivreg output

查看:68
本文介绍了R Shiny:渲染 summary.ivreg 输出的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 R Shiny 中呈现工具变量回归摘要

I'm trying to render an instrumental variable regression summary in R Shiny

代码如下:

iv=ivreg(lwage~educ+exper|nearc4+exper)
summary(iv)

当我使用 renderTable 时,出现以下错误:没有适用于xtable"的方法应用于summary.ivreg"类的对象

When I use renderTable I get the following error: no applicable method for 'xtable' applied to an object of class "summary.ivreg"

有什么建议可以解决这个问题吗?

Any suggestions how to go around this issue?

这是我的网站,如果你想看看我在做什么:https://ieconometrics.shinyapps.io/test/

This is my website, if you want to see what I'm doing exactly: https://ieconometrics.shinyapps.io/test/

推荐答案

renderTable 期望一个对象存在 xtable 方法,您可以使用以下方法查看可用的方法:methods(xtable),并且它不适用于 summary.ivreg,您可以自己构建一个方法或使用以下代码获得类似这样的结果:

renderTable expect an object for which a xtable methods exist, you can see methods avaible with : methods(xtable), and it doen't work with summary.ivreg, you can build a method yourself or obtain a result like these with the code below :

library(shiny)
library(AER)
library(ReporteRs)

# define server
server <- function(input, output) {

  output$raw_summary <- renderPrint({
    fm <- ivreg(log(packs) ~ log(rprice) + log(rincome) | log(rincome) + tdiff + I(tax/cpi),
                data = CigarettesSW, subset = year == "1995")
    print(summary(fm))
  })

  output$summary_table <- renderUI({
    fm <- ivreg(log(packs) ~ log(rprice) + log(rincome) | log(rincome) + tdiff + I(tax/cpi),
    data = CigarettesSW, subset = year == "1995")
    data = summary(fm)$coefficients
    data = as.data.frame(data)
    # get signif codes
    signif.codes = cut( data[,4]
                    , breaks = c( -Inf, 0.001, 0.01, 0.05, Inf)
                    , labels= c("***", "**", "*", "" ) )

    # format the data values
    data[, 1] = formatC( data[, 1], digits=3, format = "f")
    data[, 2] = formatC( data[, 2], digits=3, format = "f")
    data[, 3] = formatC( data[, 3], digits=3, format = "f")
    data[, 4] = ifelse( data[, 4] < 0.001, "< 0.001", formatC( data[, 4], digits=5, format = "f"))
    # add signif codes to data
    data$Signif = signif.codes

    # create an empty FlexTable
    coef_ft = FlexTable( data = data, add.rownames=TRUE
                     , body.par.props = parRight(), header.text.props = textBold()
                     , header.columns = T
    )
    # center the first column and set text as bold italic
    coef_ft[,1] = parCenter()
    coef_ft[,1] = textBoldItalic()

    # define borders
    coef_ft = setFlexTableBorders( coef_ft
                               , inner.vertical = borderNone(), inner.horizontal = borderDotted()
                               , outer.vertical = borderNone(), outer.horizontal = borderSolid()
    )
    return(HTML(as.html(coef_ft)))
  })
}

# define ui
ui <- shinyUI(fluidPage(
  p("Raw summary"),
  verbatimTextOutput(outputId = "raw_summary"),

  p("Pretty model summary table :"),
  uiOutput(outputId = "summary_table")
))

# Call the app
shinyApp(ui = ui, server = server)

这篇关于R Shiny:渲染 summary.ivreg 输出的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆