我已經在R包中編寫了S4類。我用roxygen2的文檔: #' A timeframe class represents a start date, end date and frequency
#'
#' @slot start_date First date in the timespan
#' @slot end_date Last date in the timespan
#' @
我迷失在文檔中,真的失去了做什麼的軌道。我認爲解決方案是使用環境,但即使我覺得它不那麼複雜,我也無法弄清楚。 下面是使用兩個類一個簡單的例子: Person <- setClass(
Class = "Person",
slots = c(name = "character",
id = "numeric",
age = "numeric"));