From 7e8f52d29ce71429387425ccfc4a11bccd27504c Mon Sep 17 00:00:00 2001 From: Tom Elliott Date: Wed, 29 Jan 2025 08:33:05 +1300 Subject: [PATCH] Fix output type of dataframe --- R/types.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/types.R b/R/types.R index ee02868..e3f7a2c 100644 --- a/R/types.R +++ b/R/types.R @@ -354,7 +354,7 @@ ts_dataframe <- function(...) { ts_object( type, - sprintf("R.dataframe(%s)", type_fn), + sprintf("Robj.dataframe(%s)", type_fn), check = function(x) { if (!is.data.frame(x)) stop("Expected a data frame") x