R/system_info.R

Defines functions system_info

Documented in system_info

#' Function to return a better formatted \code{Sys.info} call. 
#' 
#' @author Stuart K. Grange
#' 
#' @return Tibble. 
#' 
#' @export
system_info <- function() {
  
  data.frame(
    t(Sys.info()), 
    stringsAsFactors = FALSE
  ) %>% 
    as_tibble()

}
skgrange/systemr documentation built on April 18, 2024, 2:23 a.m.