Skip to content

Instantly share code, notes, and snippets.

View rodolfoalmeida01's full-sized avatar

Rodolfo Almeida rodolfoalmeida01

View GitHub Profile
@rodolfoalmeida01
rodolfoalmeida01 / gastosfederais_redes.R
Created December 8, 2021 23:45
Gastos federais com redes sociais | Núcleo Jornalismo
library(tidyverse)
library(lubridate)
library(plotly)
# LE DADOS ----------------------------------------------------------------
gastos_dataset <- read_csv("Gastos federais com redes sociais - Núcleo Jornalismo - 7.dez.2021 - dados.csv") %>%
janitor::clean_names()
# Remove estornos
@rodolfoalmeida01
rodolfoalmeida01 / tiktokers_topo.R
Created March 29, 2022 22:05
Código para classificar contas de TikTok e gerar gráficos
library(tidyverse)
library(plotly)
library(ggrepel)
# LENDO DADOS ----------------------------------------------------------------
# DISPONÍVEIS EM https://www.kaggle.com/moraesvic/tiktok-data-from-most-followed-accounts-2022
tt_data <- read_csv("~/tt_data.csv")
# CLASSIFICANDO -------------------------------------------------------