cl_load: Load a Saved Checlist

Description Usage Arguments Value Examples

View source: R/checklist_external_functions.R

Description

This function loads a previously made checklist that was saved (as an .rds file). It is effectively just a convenience wrapper of readRDS that will also open your checklist in the Viewer pane automatically.

Usage

1

Arguments

file

A String containing the file path of the checklist. Needs to be an .rds file

Value

A checklist object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# create a checklist
my_checklist <- cl_create()

# save it
cl_save(my_checklist, "my_checklist.rds")

# remove it from workspace
rm(cl)

# load it back in
cl <- cl_load("my_checklist.rds")

geoffwlamb/checklist documentation built on May 17, 2019, 2:59 p.m.