-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68dc4dc
commit e3ce9b3
Showing
48 changed files
with
284 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#' Ready4useDyad | ||
#' | ||
#' A dataset and data dictionary pair. | ||
#' | ||
setOldClass(c("ready4use_dictionary","tbl_df", "tbl", "data.frame")) | ||
#' @slot ds_tb Dataset (a tibble) | ||
#' @slot dictionary_r3 Dictionary (a ready4 S3) | ||
#' @import ready4 | ||
#' @name Ready4useDyad-class | ||
#' @rdname Ready4useDyad-class | ||
#' @export Ready4useDyad | ||
#' @exportClass Ready4useDyad | ||
Ready4useDyad <- methods::setClass("Ready4useDyad", | ||
contains = "Ready4Launch", | ||
slots = c(ds_tb = "tbl_df",dictionary_r3 = "ready4use_dictionary"), | ||
prototype = list(ds_tb = tibble::tibble(),dictionary_r3 = ready4use_dictionary())) | ||
|
||
|
||
methods::setValidity(methods::className("Ready4useDyad"), | ||
function(object){ | ||
msg <- NULL | ||
if (is.null(msg)) TRUE else msg | ||
}) |
Oops, something went wrong.