Nothing
#' Pull UIDs from an object
#'
#' @param x The object to extract UIDs from.
#' @return A character vector of UIDs.
#' @export
uids <- function(x) {
UseMethod("uids")
}
#' @export
uids.default <- function(x) {
uid_vec <- attributes(x)$"uids"
return(uid_vec)
}
#' @export
uids.solutions_df <- function(x) {
uid_vec <- colnames(x)[grepl("^uid_", colnames(x))]
return(uid_vec)
}
#' @export
uids.t_solutions_df <- function(x) {
return(x$"uid")
}
#' @export
uids.data_list <- function(x) {
uid_vec <- attributes(x)$"uids"
return(uid_vec)
}
#' @export
uids.ext_solutions_df <- function(x) {
uid_vec <- colnames(x)[grepl("^uid_", colnames(x))]
return(uid_vec)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.