Skip to content
Snippets Groups Projects
Commit 7523d81d authored by Yifang Zhang's avatar Yifang Zhang
Browse files

mini fix

parent ae6a360a
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,10 @@ server <- function(input, output) {
input$update,
input$method
)
predictedInput <- renderText(input$predVar)
predictedInput <- eventReactive(
input$update,
input$predVar
)
output$MLView <- renderPrint({
t <- subset(names(datasetInput()), !(names(datasetInput()) %in% predictedInput()))
cat(paste(" Predicted Variable is: ", predictedInput()), "\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment