| hasFormat | R Documentation |
hasFormat
hasFormat(...) ## S3 method for class 'collector' hasFormat(...) ## S3 method for class 'col_spec' hasFormat(...) ## S3 method for class ''function'' hasFormat(...)
... |
A collection of objects or atomic vectors. All elements must have the same type. |
Basic lists are not supported, i.e.
hasFormat(c(col_time(), col_double()) will not work.
A list of logicals. If the input contains vectors with length > 1 or lists the returned list is nested.
hasFormat(collector): Accepts lists of S3 class collector as generated
by vroom::col*_().
hasFormat(col_spec): Accepts column specification objects
hasFormat(`function`): Accepts vroom::col*_() functions.
No nesting allowed (because it would create a list).
hasFormat("t", "d", "i", "T")
hasFormat(c("t", "d", "i", "T"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.