LilahMcC / NarwhalHR

0 stars 1 forks source link

Specifying column names #5

Open FlukeAndFeather opened 2 years ago

FlukeAndFeather commented 2 years ago

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.

https://github.com/LilahMcC/NarwhalHR/blob/4cd408bc30265f70d09617ad01e660a75d518ac7/pitch_roll.Rmd#L20-L31