Displaying 3 results from an estimated 3 matches for "rendertext".
Did you mean:
render_text
2024 Jun 06
2
R Shiny Help - Trouble passing user input columns to emmeans after ANOVA analysis
...tOutput("graph_plot")
)
server <- function(input, output, session) {
# Open file
req(data <- reactive({
infile <- input$file1
if (is.null(infile)) {
return(NULL)
}
read.csv(infile$datapath, header = TRUE)
}))
# Preview data
output$data_info <- renderText({
req(data())
"Preview of the data uploaded:"
})
output$data_head <- renderPrint({
req(data())
head(data(), 20)
})
# Select response variable
output$column_selector_1 <- renderUI({
req(data())
selectInput("column1","Select response...
2018 Nov 21
2
Promises Future en shiny no me funciona
...,
textOutput("result0sec"),
textOutput("result10sec")
)
server <- function(input,output,session){
data0 <- eventReactive(input$go,{
heavyFunction(0)
})
data10 <- eventReactive(input$go,{
future(heavyFunction(10))
})
output$result0sec <- renderText({
data <- data0()
print(data)
})
output$result10sec <- renderText({
data <- data10()
data%...>%print()
})
}
shinyApp(ui,server)
[[alternative HTML version deleted]]
2018 Jan 10
0
[shiny] How to read current URL address
...Error in .getReactiveEnvironment()$currentContext() :
Operation not allowed without an active reactive context. (You tried to do something that can only be done from inside a reactive expression or observer.)
Could anyone help with this? Considering that the reactive I will not use this value to renderText or to put this values on my shiny website?
Thnx
[[alternative HTML version deleted]]