Tag: 摘要

按月份总结date – 擅长

我有一个date列日/月/年,即时试图总结他们按月和年。 例如。 如果我有01/01 01/01/2012, 23/01/2012 01/2012 | 2我想有一个摘要表显示01/2012 | 2 01/2012 | 2 。 有一个简单的方法来做到这一点? 此刻我试图复制完整的date,重新格式化它只显示mm / yyyy,然后运行countif公式,但它似乎是一个复杂的方式来做到这一点,或者这是正确的方式吗?

在Shiny R App中使用read.xlsx

我正在尝试加载一个Excel文件并显示摘要。 该文件正在加载没有任何错误,但没有显示任何东西。 这是我的代码 ui.R library(shiny) shinyUI(pageWithSidebar( headerPanel("Analysis"), sidebarPanel(wellPanel(fileInput('file1', 'Choose XLSX File', accept=c('sheetName', 'header'), multiple=FALSE))), mainPanel( tabsetPanel( tabPanel("Tab1",h4("Summary"), htmlOutput("summary")) ))) server.R library(shiny) shinyServer(function(input, output) { dataset = reactive({ infile = input$file1 if (is.null(infile)) return(NULL) infile_read = read.xlsx(infile$datapath, 1) return(infile_read) }) output$summary <- renderPrint({ summary = summary(dataset()) return(summary) }) outputOptions(output, "summary", suspendWhenHidden = FALSE) })