Skip to content

Commit

Permalink
output of type.data.frame is changed to a datat.table class
Browse files Browse the repository at this point in the history
  • Loading branch information
seokhoonj committed May 14, 2024
1 parent fce3da8 commit c3009cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/meta.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ meta.data.frame <- function(x) {
return(df)
}


#' Class and type information
#'
#' Show class and type information.
Expand All @@ -50,5 +51,5 @@ type.data.frame <- function(x) {
column <- names(x)
class <- sapply(x, class)
type <- sapply(x, typeof)
data.frame(column, class, type)
data.table(column, class, type)
}

0 comments on commit c3009cd

Please sign in to comment.