inst/doc/heapsofpapers.R

## ---- include = FALSE---------------------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

## ----setup--------------------------------------------------------------------
library(heapsofpapers)

## ----makedataset, eval = FALSE------------------------------------------------
#  two_pdfs <-
#    tibble::tibble(
#      locations_are = c("https://osf.io/preprints/socarxiv/z4qg9/download",
#                        "https://osf.io/preprints/socarxiv/a29h8/download"),
#      save_here = c("competing_effects_on_the_average_age_of_infant_death.pdf",
#                    "cesr_an_r_package_for_the_canadian_election_study.pdf")
#      )

## ---- eval = FALSE------------------------------------------------------------
#  heapsofpapers::get_and_save(
#    data = two_pdfs,
#    links = "locations_are",
#    save_names = "save_here"
#  )

## ----diff_directory, eval = FALSE---------------------------------------------
#  heapsofpapers::get_and_save(
#    data = two_pdfs,
#    links = "locations_are",
#    save_names = "save_here",
#    dir = "inputs"
#  )

## ----checkexistence, eval = FALSE---------------------------------------------
#  heapsofpapers::check_for_existence(data = two_pdfs,
#                                     save_names = "save_here")

## ----showdupexample, eval = FALSE---------------------------------------------
#  heapsofpapers::get_and_save(
#    data = two_pdfs,
#    links = "locations_are",
#    save_names = "save_here",
#    dupe_strategy = "ignore"
#  )

## ----examplechangedelay, eval = FALSE-----------------------------------------
#  heapsofpapers::get_and_save(
#    data = two_pdfs,
#    links = "locations_are",
#    save_names = "save_here",
#    delay = 2,
#  )

## ----examplechangeprint, eval = FALSE-----------------------------------------
#  heapsofpapers::get_and_save(
#    data = two_pdfs,
#    links = "locations_are",
#    save_names = "save_here",
#    print_every = 2
#  )

## ----examplepiping, eval = FALSE----------------------------------------------
#  two_pdfs %>%
#    heapsofpapers::get_and_save(
#      links = "locations_are",
#      save_names = "save_here"
#      )

Try the heapsofpapers package in your browser

Any scripts or data that you put into this service are public.

heapsofpapers documentation built on Aug. 24, 2021, 1:06 a.m.