Description Usage Arguments Value Examples
Read mcA, mcI, and mcH files
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | read_mc(
file,
col_names = guess_mc_col_names(file, skip),
skip = guess_mc_skip(file),
tz = "UTC"
)
read_mc_vector(
file_vector,
col_names = guess_mc_col_names(file_vector[1], skip),
skip = guess_mc_skip(file_vector[1]),
tz = "UTC"
)
read_mc_single(file, col_names = NULL, skip = NULL, pb = NULL)
guess_mc_skip(file)
guess_mc_col_names(file, skip = guess_mc_skip(file))
mca_col_names(year)
mci_col_names(year)
read_mci_meta(file, tz = "UTC")
read_mci_meta_vector(file_vector, tz = "UTC")
|
file |
A file, URL, or connection. Files ending in .gz, .bz2, .xz, or
.zip will be automatically uncompressed; URLs will be automatically
downloaded. See |
col_names |
Column names, if guessed wrong by |
skip |
Number of columns before table, if guessed wrong by
|
tz |
Timezone for which date times are representative. |
file_vector |
A vector of files or URLs |
pb |
A progress bar or |
year |
The year to use to specify column names in the range 2017-2019. |
A tibble::tibble()
1 2 3 4 5 6 7 | mca_file <- bs_example("mcA/19101018.mcA")
read_mc(mca_file)
read_mc_vector(mca_file)
mci_file <- bs_example("mcI/19101023.mcI")
read_mci_meta(mci_file)
read_mci_meta_vector(mci_file)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.