This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Update apt | |
sudo apt-get update | |
sudo apt-get install -y build-essential tar wget | |
## Remove system curl | |
sudo apt remove --purge curl libcurl4 | |
## Install OpenSSL | |
cd ~ | |
wget https://www.openssl.org/source/openssl-1.1.1w.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | |
) |