I always forget to set_names, to run safely, etc... so this is just to help save time. Assumes the tidyverse is loaded

mapHelper(objectName, parallel = FALSE)

Arguments

objectName

what is the name of the list IN QUOTES that you're going to be mapping? Eg "iris" not iris

parallel

if your list contains many entries, set this to TRUE in order to use multiple cores. If setting to TRUE gives an error, install the package furrr

Value

returns nothing, but will output some text to the console suitable to be copied into your script

Examples

if (FALSE) { if(interactive()){ goodstuff("iris") } }