R/make.random.string.r

Defines functions make.random.string

  make.random.string = function(x="_") {
    rand.seq = floor(runif(1)*10^9)
    out = paste( x, rand.seq, sep="_")
    return(out)
  }
jae0/ecmenv documentation built on May 28, 2019, 9:56 p.m.