View source: R/check_delimiter.R
check_delimiter | R Documentation |
Automatically infer what delimiter is used to separate columns (e.g. ",", "\t"," "). Uses messages from fread to extract this inference.
check_delimiter(path, verbose = TRUE)
path |
Path to file. |
verbose |
Print messages. |
dat <- echodata::BST1
path <- tempfile()
data.table::fwrite(dat, path, sep="\t")
delim <- echotabix::check_delimiter(path=path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.