-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
experimentalFeatures to researchFeatures to research
Description
It might be useful to define class such as list of data.frame etc:
`list<data.table>` <- setClass(
"list<data.table>",
slots = list(
.data = "list"
),
prototype = list(
.data = list()
),
validity = function(object) {
unique(sapply(object@.data, data.table::is.data.table)) != c("data.table" "data.frame")
}
)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
experimentalFeatures to researchFeatures to research