Domanda

Ho un oggetto XTS, ad esempio

ts=xts(seq(10),seq(Sys.Date(),Sys.Date()+10,length.out=10))

e necessità di aggiungere un nuovo punto, ad esempio

(Sys.Date()+11, 11)

Ho cercato

ts[Sys.Date()+11] <- 11

, ma pretende molto lavoro. Io preferirei evitare di creare un nuovo oggetto XTS. C'è un modo elegante per fare questo.

È stato utile?

Soluzione

You can use c or rbind on an xts object to append row-wise:

c(ts, xts(11, Sys.Date()+11))

EDIT :

Note that this produces a warning mismatched types: converting objects to numeric. To remove the warning, first coerce the value to numeric, e.g:

c(ts, xts(as.integer(11), Sys.Date()+11))

           [,1]
2011-12-01    1
2011-12-02    2
2011-12-03    3
2011-12-04    4
2011-12-05    5
2011-12-06    6
2011-12-07    7
2011-12-08    8
2011-12-09    9
2011-12-11   10
2011-12-12   11
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top