get_slido_files {metricminer}R Documentation

Get Slido Files

Description

This is a function to get slido response output files. The slido files must be saved as googlesheets and cannot be xlsx.

Usage

get_slido_files(
  drive_id,
  token = NULL,
  recursive = TRUE,
  keep_duplicates = FALSE
)

Arguments

drive_id

a URL or drive id that has the slido response output files you are looking to get (will recursively search for files by default).

token

credentials for access to Google using OAuth. 'authorize("google")'

recursive

Should slido files be looked for recursively in this folder? default is TRUE.

keep_duplicates

By default we won't keep duplicated files if a two files have the same name. But if you set this to true, duplicates will be returned.

Value

A list of the slido files and their content in a Googledrive location.

Examples

## Not run: 

drive_id <- "https://drive.google.com/drive/folders/0AJb5Zemj0AAkUk9PVA"
drive_id <- "https://drive.google.com/drive/u/0/folders/1XWXHHyj32Uw_UyaUJrqp6S--hHnM0-7l"
slido_data <- get_slido_files(drive_id)

## End(Not run)

[Package metricminer version 0.5.1 Index]