library(tidyverse)
ghg <- read_csv(
"https://bcdanl.github.io/data/GHG_emissions_by.csv"
)
tweets <- bind_rows(
positive_weak = read_csv(
"https://bcdanl.github.io/data/UStweets_positive_weak_2017.csv"
),
positive_strong = read_csv(
"https://bcdanl.github.io/data/UStweets_positive_strong_2017.csv"
),
negative_weak = read_csv(
"https://bcdanl.github.io/data/UStweets_negative_weak_2017.csv"
),
negative_strong = read_csv(
"https://bcdanl.github.io/data/UStweets_negative_strong_2017.csv"
),
.id = "sample"
)
