Skip to content

Instantly share code, notes, and snippets.

View Chuyakova's full-sized avatar

Natalie Chuyakova Chuyakova

  • Amsterdam
View GitHub Profile
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 15, 2019 13:20
This is description for public gist
The content is here
@Chuyakova
Chuyakova / twitter_sentiment.R
Created November 15, 2019 13:20 — forked from geroldcsendes/twitter_sentiment.R
Get twitter data, clean & analyze it
# Get twitter data
trainer <- search_tweets(q = "Guardiola", n=18000, type='mixed', lang="en")
# Assign relevant columns
keep_cols <- c("user_id", "screen_name", "created_at", "text", "source", "is_quote","is_retweet", "favorite_count", "retweet_count","quote_count","reply_count","hashtags","retweet_text", "followers_count", "verified")
# Filter to relevant columns
trainer <- trainer %>%
select(keep_cols)
# Source for URL removal: https://www.earthdatascience.org/courses/earth-analytics/get-data-using-apis/text-mining-twitter-data-intro-r/
trainer$stripped_text <- gsub("http.*","", trainer$text) # Remove http
trainer$stripped_text <- gsub("https.*","", trainer$stripped_text) # Remove https
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 15, 2019 13:20
This is description for public gist
The content is here
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 15, 2019 13:12
This is description for public gist
The content is here
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 15, 2019 13:11
This is description for public gist
The content is here
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 15, 2019 13:09
This is description for public gist
The content is here
library(fmsb)
df <- read_csv("imdb_top_250_sentiments.csv", col_types = c(col_character(),
col_character(),
col_double(),
col_double(),
col_character(),
col_character()))
counts <- as.data.frame(table(df$Overall_sentiment))
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 15, 2019 09:58
This is description for public gist
The content is here
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 15, 2019 09:58
This is description for public gist
The content is here
@Chuyakova
Chuyakova / newPublicGistFile.txt
Created November 14, 2019 18:45
This is description for public gist
The content is here