Last chance! 50% off unlimited learning
Sale ends in
Merges MAgPIE-objects with identical structure in two dimensions. If data differs in the temporal or spatial dimension each year or region/cell must appear only once!
mbind(...)
MAgPIE objects or a list of MAgPIE objects that should be merged.
The merged MAgPIE object
mbind2 is a reimplementation from mbind which had the aim to increase its overall memory efficiency. However, it is not clear which function is better and there are also some changes in behaviour of both functions. Therefore, the new version was just added as mbind2 instead of using it as a full replacement for mbind.
# NOT RUN {
m <- new.magpie(c("AFR","CPA","EUR"), c(1995,2005),"Data1",fill=c(1,2,3,4,5,6))
ms <- dimSums(m, dims=1)
mbind(m, ms)
my <- new.magpie(getRegions(m), 2010, getNames(m), fill=c(6,6,4))
mbind(m, my)
md <- new.magpie(getRegions(m), getYears(m), "Data2", fill=c(7,6,5,7,8,9))
mbind(m, md)
pop <- maxample("pop")
a <- mbind(pop,pop)
dim(pop)
dim(a)
# }
Run the code above in your browser using DataLab