loading...

Learnitdown Shiny applications are a special kind of Shiny applications that logs events and check results. It uses the shinylogs package to log Shiny events and read_shinylogs() reads such logs and convert their data into a format that is suitable to include, say in a MongoDB database.

read_shinylogs(file, version = "0", log.errors = TRUE, log.outputs = FALSE)

Arguments

file

The path to the RDS file that contains the shinylogs log data.

version

The version of the Shiny application. Version is not recorded by shinylogs, so, we must provide it here.

log.errors

Do we record errors too?

log.outputs

Do we record outputs too (note that results are recorded with inputs)?

Value

A data frame with the different events logged (one per line).