pp: Alias for paste

Description Usage Arguments Examples

View source: R/pp.R

Description

Alias to the paste command with empty string as default sep.

Usage

1
pp (..., sep = "", collapse = NULL)

Arguments

...
sep
collapse

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (dir = "") 
{
    dir.path <- paste(model.dir, dir, sep = "")
    if (file.exists(dir.path)) {
        setwd(dir.path)
    }
    else {
        logger(paste("Error:", dir.path, " does not exist or cannot be found"), 
            scenario.tag)
        stop()
    }
  }

colinsheppard/colinmisc documentation built on July 10, 2020, 5:59 p.m.