regressoR (version 1.1.7)

numerical_summary: numerical_summary

Description

generates the fields for individual numerical analysis.

Usage

numerical_summary(data, variable)

Arguments

data

a data.frame with the data for analysis.

variable

the name of the variable for analysis.

Examples

Run this code
# NOT RUN {
if(interactive()) {
  library(shiny)
  library(DT)
  shinyApp(ui = fluidPage(fluidRow(uiOutput("resumen"))),
           server = function(input, output) {
                         output$resumen = renderUI(numerical_summary(iris, "Sepal.Width"))
           })
}
# }

Run the code above in your browser using DataCamp Workspace