Skip to content

Instantly share code, notes, and snippets.

View luciorq's full-sized avatar
:octocat:
Meow?🎯

Lucio Queiroz luciorq

:octocat:
Meow?🎯
View GitHub Profile
@celiomsj
celiomsj / exemplo.R
Created May 22, 2020 13:08
Exemplo de atualização de gráfico do Plotly no shiny.
library(shiny)
library(dplyr)
library(plotly)
ui <- fluidPage(
mainPanel(
tags$style(".recalculating {opacity: 1.0}"), # Comente esta linha para ver o comportamento normal do shiny
plotly::plotlyOutput("grafico")
)