R/mergeALL.R

mergeALL <-
function(INP)
{

rootf <- INP[[1]]   
  
for(i in 2:length(INP))  
    {
      
    rootf <- merge(rootf,INP[[i]],all=TRUE, sort=FALSE) 

    }

rootf  
}

Try the svyPVpack package in your browser

Any scripts or data that you put into this service are public.

svyPVpack documentation built on May 1, 2019, 8:45 p.m.