R/crearDT.R

Defines functions crearDT

crearDT <-
  function(col1 = character(), 
           col2 = character()) {
    DT <- data.table(V1 = col1, V2 = col2)
    return(DT)
  }

Try the TSTr package in your browser

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

TSTr documentation built on May 1, 2019, 9:16 p.m.