```r view.default <- function(x) { if (interactive()) { View(x) } invisible(x) } ``` I wonder if this function should do anything useful in non-interactive mode.