R/e4_methods.R

Defines functions print.e4data

Documented in print.e4data

#' Show class of object
#' @description Returns 'object of class'
#' @param x An e4 data list
#' @param \dots Further arguments currently ignored.
#' @export
print.e4data <- function(x, ...){
  
  cat("This is an object of class 'e4data'.\n")
  cat("Datasets included:", paste(names(x), collapse=", "), "\n")
  
}

#
# summary.e4data <- function(object, ...){
#   
# }

# plot.e4data <- function(x, ...){
#   
# }

Try the wearables package in your browser

Any scripts or data that you put into this service are public.

wearables documentation built on Dec. 20, 2021, 5:08 p.m.