I am trying to create a code that would replace all missing values by user entered value(a separate value for each variable) for all variables in a dataset? Any help would be highly appreciated!! Thanks!
To be more precise, below are me questions in comment form.
if (interactive()) {
ui <- fluidPage(
# In place of "obs" name in UI, I want to display name as "Contact" which should be read directly as 4th column of data frame
numericInput("obs", "Age", 30, ),
verbatimTextOutput("value")
)
server <- function(input, output) {
output$value <- renderText({ input$obs })
#I don't want to display the text in UI. Is there a feature in R Shiny which stores the input$obs in data table?
}
shinyApp(ui, server)
}