Im a starter with R and have been combing the site for answers, but no luck with my specific problem.
Basically I need to import about 15 CSV files and work on each (plotting and analysis). They each contain thousands of entries and are time series with 15-20 samples each. The format is such that there are dates at the top, as well as other column names on the top row which I need to keep, and then the numerics which are percentages which need to be retained through the import.
So far I have worked out how to import, process and clean, but everything gets stored as characters and I lose significant figures.
I really hope for some advice on work flow and suitable import processing functions, as I need to keep the dates and first column of names (which I can store as index vectors or data frames), and then work on the data itself (so that I can plot individually, or in summarised combinations).
Any advice for this (also including good work flow practices for handling this systematically) would be greatly appreciated. I have been using "readr" and the base functions but each time I run the first import, I cant get past the problem of the data being converted to characters which I need to avoid, although I need to also keep the dates.
Is there a way around this by some wondrous R techniques, or do I need to work on pre-formatting these many atrocious CSV files first?
image of what I am dealing with, if it were multiplied by many many times in both directions