What is the best way to store anciliary data with a 2D timeseries object in R?
Posted
by
Mike52
on Programmers
See other posts from Programmers
or by Mike52
Published on 2013-10-29T15:00:47Z
Indexed on
2013/10/29
16:11 UTC
Read the original article
Hit count: 354
programming-practices
|r
I currently try to move from matlab to R.
I have 2D measurements, consisting of irradiance in time and wavelength together with quality flags and uncertainty and error estimates. In Matlab I extended the timeseries object to store both the wavelength array and the auxiliary data.
What is the best way in R to store this data?
Ideally I would like this data to be stored together such that e.g. window(...) keeps all data synchronized.
© Programmers or respective owner