Skip to content

Time series indexing, how can I index a series that's not a constant increase?

3 messages · BSanders, Gabor Grothendieck, Ulrich Staudinger

#
I have missing data in my time series, but I have the appropriate date.  How
do I pass on the time index to R? 

For example, my days look like this 
"291 292 293 295 296 297"    (I'm missing 294)


Sorry if this is a newb question.
#
On Wed, Jan 12, 2011 at 10:49 PM, BSanders <adam at mycostech.com> wrote:
Try this:
291 292 293 294 295 296 297
291 292 293  NA 295 296 297
[1] 291 292 293 294 295 296 297
[1] 291 292 293  NA 295 296 297