med-mastodon.com is one of the many independent Mastodon servers you can use to participate in the fediverse.
Medical community on Mastodon

Administered by:

Server stats:

352
active users

#access_token

0 posts0 participants0 posts today

Find your most popular tweets, so you can post here #rstats

library(rtweet)
library(tidyverse)

# see twitter API
twitter_token = create_token(
app = "blah",
consumer_key = "", #api_key
consumer_secret = "", #api_secret
access_token = "", #access_token
access_secret = "") #access_token_secret

# my best tweets
rtweet::get_timeline("sharoz", n = Inf) %>%
arrange(desc(favorite_count)) %>%
mutate(URL = paste0("twitter.com/a/status/", id_str)) %>%
relocate(URL) %>%
View()