# NOT RUN {
# Get details of preprints deposited between 2018-01-01 and 2018-01-10
# By default, only the first 100 records are returned
biorxiv_content(from = "2018-01-01", to = "2018-01-10")
# Set a limit to return more than 100 records
biorxiv_content(from = "2018-01-01", to = "2018-01-10", limit = 200)
# Set limit as "*" to return all records
biorxiv_content(from = "2018-01-01", to = "2018-01-10", limit = "*")
# Skip the first 100 records
biorxiv_content(from = "2018-01-01", to = "2018-01-10",
limit = 200, skip = 100)
# Specify the format to return data
biorxiv_content(from = "2018-01-01", to = "2018-01-10", format = "df")
# Lookup a preprint by DOI
biorxiv_content(doi = "10.1101/833400")
# }
Run the code above in your browser using DataLab