Skip to content

Instantly share code, notes, and snippets.

@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")
)
@celiomsj
celiomsj / hourly-weather.R
Last active October 19, 2017 16:41 — forked from yeedle/hourly-weather.R
Temperature of every hour in NY since 1973
library(tidyverse)
library(R.utils)
library(glue)
library(magrittr)
library(weathermetrics)
library(padr)
library(ggExtra)
library(lubridate)
library(scales)
library(hrbrthemes)