FileName: File Name

FileNameR Documentation

File Name

Description

simple function to construct a file name for data

Usage

FileName(
  project = "Project",
  subset = NULL,
  type = NULL,
  name = NULL,
  unix = TRUE,
  ...
)

Arguments

project

name of project, Default: 'Project'

subset

define subset of data, Default: NULL

type

type of data, Default: NULL

name

save name, Default: NULL

unix

logical, indicating whether or not to append unix timestamp, Default: TRUE

...

further arguments passed to or from other methods

Examples

 FileName()
 # [1] "Project-Name-1528834963"

 FileName(project = "Project" ,
         subset = "subset" ,
         type = "longitudinal" ,
         name = "cheese",
         unix = FALSE)
 # [1] "Projectsubset-longitudinal-cheese"

bfw documentation built on March 18, 2022, 6:19 p.m.