Check out the col_names parameter for read_tsv(). The way you're doing it now, you're losing the first row of data and it's turning into the column names (hence your DateTime column named some long date string). If you specify the column names it'll be a lot cleaner.
Check out the
col_names
parameter forread_tsv()
. The way you're doing it now, you're losing the first row of data and it's turning into the column names (hence your DateTime column named some long date string). If you specify the column names it'll be a lot cleaner.https://github.com/LilahMcC/NarwhalHR/blob/4cd408bc30265f70d09617ad01e660a75d518ac7/pitch_roll.Rmd#L20-L31