R/GenerateTabs.R

GenerateTabs <-
function(iNumberOfTabs)
{
  # 
  # Chr(9) is the horizontal tab character
  # Use 8 spaces instead of a tab character.
  
  sResult <- ""
  for (i in 1:iNumberOfTabs)
    sResult <- paste(sResult,"        ",sep="")
  
  sResult
}

Try the VTrack package in your browser

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

VTrack documentation built on May 2, 2019, 9:16 a.m.