InsertUI with selectInput does not show list of values from a DF

Hi people.

How can I use insertUI with a "selectInput" to show a list of values to choose?

Like:

UI:
actionButton("plot", "Plotar!"),

SERVER

   ...

   df
    
    tabela_saida = df
    
    valor_le = df$LE
    
    valor_tr = df$TR
    
    relacao_ts = (valor_le/valor_tr)
    
    valor_grau = df$Grau
     observeEvent(input$plot, {
      
      insertUI(
        selector = "#plot",
        where = "afterEnd",
        ui = selectInput(
          "grau",
          label = "Grau:",
          choices = valor_grau,
          selected = 1
        )
      )
    })
    
  })   
  

This insertUI will update the value of "choises" in the "valor_grau = df$Grau" values, but it always shows it blank, like the image.

Ps.: My DF is with no problem

If someone can save me...

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.