Skip to content

How to get data from different time zones (e.g. USA, EU, Asia) in the same format

3 messages · Bastian Offermann, Gabor Grothendieck

#
merge.zoo does that:

merge(z1, z2)

See ?merge.zoo

Note that unlike zoo in the core of R which can only merge two objects
at a time merge.zoo
can merge multiple objects so if L is a list of such zoo objects you can write:

do.call("merge.zoo", L)



On Sun, Aug 17, 2008 at 8:19 AM, Bastian Offermann
<bastian2507hk at yahoo.co.uk> wrote:
#
That should be do.call("merge", L) since merge.zoo is not exported.  I assume
your objects are all POSIXct with time zones so they are all
internally represented
with respect to GMT anyways.  See R News 4/1.

On Sun, Aug 17, 2008 at 8:53 AM, Gabor Grothendieck
<ggrothendieck at gmail.com> wrote: