The basic steps are:
- Configuration
- ZSH
- SSH
- Git
- Applications
- Brew
- iTerm2
- R/RStudio
The basic steps are:
sudo apt-key add jranke.asc| # Load libraries | |
| library(shiny) | |
| library(dplyr) | |
| library(tidyr) | |
| library(ggplot2) | |
| library(palmerpenguins) | |
| # data used for minimium reproducible example (reprex) | |
| df <- penguins %>% | |
| tidyr::drop_na() %>% |
Google Colab: https://colab.research.google.com/
| fetch_xwd <- function(date) { | |
| if(missing(date)) { | |
| cur_date <- Sys.Date() | |
| } else { | |
| cur_date <- date | |
| } | |
| dayofweek <- as.character(lubridate::wday(cur_date, label = TRUE)) | |
| library(reticulate) | |
| library(palmerpenguins) | |
| library(dplyr) | |
| library(ggplot2) | |
| library(extrafont) | |
| df_pgs <- palmerpenguins::penguins | |
| dplyr::glimpse(df_pgs) |