view_in() is an alternative to View() function when not using RStudio. To date, it works with gnumeric, libreoffice and tad.

view_in(data, viewer = c("libreoffice", "gnumeric", "tad"))

Arguments

data

a data.frame/tibble data format.

viewer

character app to open the csv file.

Value

None

Examples

# \donttest{
if (interactive()) {
  library(misc)
  mtcars %>%
    view_in()
}
# }