Created
January 18, 2023 14:53
-
-
Save fernandobarbalho/ff2f2d89789dab533cbda9ec154d2ce3 to your computer and use it in GitHub Desktop.
Explorando listas do Jeff Nascimento no twitter
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(rtweet) | |
#As 100 mais recentes listas do Jeff | |
listas_jeff<- rtweet::lists_users(user = "jnascim", reverse = TRUE) | |
#Dados de twitter sobre os membros da 56ª legislatura da câmara | |
members_camara_leg_56<- rtweet::lists_members(list_id = "1093197444874153985") | |
#Dados de twitter sobre membros da 56ª legislatura do senado | |
members_senado<- rtweet::lists_members(list_id = "1091163823858503685") | |
#Dados de twitter dos membros do governo Lula | |
members_lula<- rtweet::lists_members(list_id = "1602786636588355588") | |
#Dados de twitter dos participantes do BBB23 | |
members_bbb23<- rtweet::lists_members(list_id = "1613531015598702592") | |
#Abaixo a lista de colunas disponíveis sobre cada membro | |
# [1] "user_id" "name" "screen_name" | |
# [4] "location" "description" "url" | |
# [7] "protected" "followers_count" "friends_count" | |
#[10] "listed_count" "created_at" "favourites_count" | |
#[13] "utc_offset" "time_zone" "geo_enabled" | |
#[16] "verified" "statuses_count" "lang" | |
#[19] "contributors_enabled" "is_translator" "is_translation_enabled" | |
#[22] "profile_background_color" "profile_background_image_url" "profile_background_image_url_https" | |
#[25] "profile_background_tile" "profile_image_url" "profile_image_url_https" | |
#[28] "profile_banner_url" "profile_link_color" "profile_sidebar_border_color" | |
#[31] "profile_sidebar_fill_color" "profile_text_color" "profile_use_background_image" | |
#[34] "has_extended_profile" "default_profile" "default_profile_image" | |
#[37] "following" "follow_request_sent" "notifications" | |
#[40] "translator_type" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment