inspect_objects: Copying objects to global environment

Description Usage Arguments Examples

View source: R/inspect_objects.R

Description

With inspect_objects you can copy an object to the global environment for further debugging or developing.

Usage

1

Arguments

...

Named objects to be copy to the global environment. If there is only one unnamed object, its name in the global environment will be the same as the name of the object passed to ....

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
if (interactive()) {

  set_logging()
  shiny::shinyApp(
    ui = shiny::fluidPage(log_init()),
    server = function(input, output) {
      set_logging_session()
      inspect_objects(mtcars)
      inspect_objects(df1 = head(mtcars), df2 = head(iris))
    }
  )

}

shinyEventLogger documentation built on May 1, 2019, 9:26 p.m.