@@ -11,6 +11,7 @@ S3method(arrange_row_canonical,default)
1111S3method(arrange_row_canonical,epi_df)
1212S3method(as_epi_df,data.frame)
1313S3method(as_epi_df,epi_df)
14+ S3method(as_epi_df,grouped_df)
1415S3method(as_epi_df,tbl_df)
1516S3method(as_epi_df,tbl_ts)
1617S3method(as_tibble,epi_df)
@@ -108,12 +109,16 @@ importFrom(checkmate,assert)
108109importFrom(checkmate,assert_character)
109110importFrom(checkmate,assert_class)
110111importFrom(checkmate,assert_data_frame)
112+ importFrom(checkmate,assert_false)
111113importFrom(checkmate,assert_function)
112114importFrom(checkmate,assert_int)
113115importFrom(checkmate,assert_list)
114116importFrom(checkmate,assert_logical)
115117importFrom(checkmate,assert_numeric)
116118importFrom(checkmate,assert_scalar)
119+ importFrom(checkmate,assert_string)
120+ importFrom(checkmate,assert_subset)
121+ importFrom(checkmate,assert_tibble)
117122importFrom(checkmate,checkInt)
118123importFrom(checkmate,check_atomic)
119124importFrom(checkmate,check_data_frame)
@@ -163,6 +168,7 @@ importFrom(dplyr,groups)
163168importFrom(dplyr,if_all)
164169importFrom(dplyr,if_any)
165170importFrom(dplyr,if_else)
171+ importFrom(dplyr,is_grouped_df)
166172importFrom(dplyr,lag)
167173importFrom(dplyr,mutate)
168174importFrom(dplyr,near)
@@ -176,6 +182,7 @@ importFrom(dplyr,summarize)
176182importFrom(dplyr,tibble)
177183importFrom(dplyr,ungroup)
178184importFrom(ggplot2,autoplot)
185+ importFrom(glue,glue)
179186importFrom(lifecycle,deprecated)
180187importFrom(lubridate,as.period)
181188importFrom(lubridate,days)
@@ -189,7 +196,6 @@ importFrom(rlang,"%||%")
189196importFrom(rlang,.data)
190197importFrom(rlang,.env)
191198importFrom(rlang,arg_match)
192- importFrom(rlang,as_label)
193199importFrom(rlang,caller_arg)
194200importFrom(rlang,caller_env)
195201importFrom(rlang,check_dots_empty)
@@ -199,6 +205,7 @@ importFrom(rlang,env)
199205importFrom(rlang,expr_label)
200206importFrom(rlang,f_env)
201207importFrom(rlang,f_rhs)
208+ importFrom(rlang,is_bare_integerish)
202209importFrom(rlang,is_environment)
203210importFrom(rlang,is_formula)
204211importFrom(rlang,is_function)
@@ -207,7 +214,7 @@ importFrom(rlang,is_quosure)
207214importFrom(rlang,list2)
208215importFrom(rlang,missing_arg)
209216importFrom(rlang,new_function)
210- importFrom(rlang,quo_get_expr )
217+ importFrom(rlang,quo_get_env )
211218importFrom(rlang,quo_is_missing)
212219importFrom(rlang,sym)
213220importFrom(rlang,syms)
@@ -232,3 +239,5 @@ importFrom(tidyselect,starts_with)
232239importFrom(tsibble,as_tsibble)
233240importFrom(utils,capture.output)
234241importFrom(utils,tail)
242+ importFrom(vctrs,vec_data)
243+ importFrom(vctrs,vec_equal)
0 commit comments