I have 2 input values to execute t.test in my shiny application. But when i tried below code, the output is not displayed. Can anyone help me
output$renderprint <- renderPrint({
t.test(paste0(input$num ,"~" ,input$cat,data = input_data))
})
input$num
is numeric values and input$cat
is character.