R/piaac.table.R

Defines functions piaac.table

Documented in piaac.table

piaac.table <- 
  function(variable, by, data, export=FALSE, name= "output", folder=getwd()) {
    output <- intsvy.table(variable, by, data, config=piaac_conf)
      
      if (export)  {
        write.csv(output, file=file.path(folder, paste(name, ".csv", sep="")))
      }
    
    return(output)
  }

Try the intsvy package in your browser

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

intsvy documentation built on Oct. 3, 2023, 1:07 a.m.