I am trying to extract my data from a csv file into R. The data is currently formatted in the following:
,"[{time=2014-01-01T00:00:00, NDVI=0.3793765496776215}, {time=2014-02-01T00:00:00, NDVI=...
,"[{time=2014-01-01T00:00:00, NDVI=0.4071076986818826}, {time=2014-02-01T00:00:00, ...
,"[{time=2014-01-01T00:00:00, NDVI=0.3412131556625801}, {time=2014-02-01T00:00:00, NDVI=...
Each of these lines is data for a different region. I want to have it in this format:
Region [1]
Time NDVI
[1] [1]
[2] [2]
[3] [3]
[...] [...]
Region [2]
Time NDVI
[1] [1]
[2] [2]
[3] [3]
[...] [...]
Region [3]
Time NDVI
[1] [1]
[2] [2]
[3] [3]
[...] [...]
How can I do this?
Maybe there is a package that can parse this. However, you could do some data transformation using the
tidyverse
package.You can read in your data with
readLines()
:Which in this case looks like this:
Then you can do some data transformations with a for loop and store the result in a list.
Created on 2020-03-24 by the reprex package (v0.3.0)