tibble()
R/utils.R
print_df_as_call_to_tibble.Rd
Convenience function
print_df_as_call_to_tibble(df)
A data frame
NULL.
print_df_as_call_to_tibble(head(iris))
#> Sepal.Length = c(5.1, 4.9, 4.7, 4.6, 5, 5.4),
#> Sepal.Width = c(3.5, 3, 3.2, 3.1, 3.6, 3.9),
#> Petal.Length = c(1.4, 1.4, 1.3, 1.5, 1.4, 1.7),
#> Petal.Width = c(0.2, 0.2, 0.2, 0.2, 0.2, 0.4),
#> Species = c('setosa', 'setosa', 'setosa', 'setosa', 'setosa', 'setosa'),