Resourse: A sortable table of biorxiv and medrxiv tweets and papers.
Author: Tyler J Burns
Date: November 17, 2022
Home
How it works:
Tips on how to use:
Tips and examples on how to utilize:
# How to knit: jupyter nbconvert --to html --no-input my-notebook.ipynb
import pandas as pd
bio = pd.read_csv('../data/biorxivpreprint_tweets_scraped.csv', low_memory=False)
med = pd.read_csv('../data/medrxivpreprint_tweets_scraped.csv', low_memory=False)
df = pd.concat([bio, med], ignore_index=True, sort=False)
from itables import init_notebook_mode, show
import itables.options as opts
init_notebook_mode(all_interactive=True)
opts.maxBytes = 100000000
# Trim it up
df = df[['Tweet', 'Date', 'User', 'Likes', 'Retweets', 'Replies', 'Quotes']]
df