If I define the vector in the server function, the display works,
It seems to me that since rsult$pnames is a vector, I may have to use a way to extract the vector values from result$pnames for display. Is there any way to extract the values of a vector from a reactive function?
output$pipe <- reactive({
#result <- glycoPipe(inFileName)
pname <- c("One", "Two", "Three", "Four")
#pipeLine <- result$merge_tol
output$pipe <- renderText({
paste("Attention ", pname)
})
return(pname)
})
outputOptions(output,"pipe", suspendWhenHidden = FALSE)