a | R Documentation |
Shorthand for 'as.data.frame()' for printing all of a tibble.
a(tib)
tib |
'tibble' to be printed to console, R Markdown file, etc. |
Often want to print all of a (small) tibble, but 'as.data.frame()' is cumbersome.
print 'a' as a data.frame, so show all the rows
Andrew Edwards
## Not run:
# To see all the years (rows of a long tibble):
oni %>% a()
# To see all the species (columns of a wide tibble):
tail(zooplankton_sog) %>% a()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.