make_dir(x)

Arguments

x

Details

Value

References

Author

Note

See also

Examples

##---- 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 (x)
{
    if (!dir.exists(x)) {
        dir.create(x)
    }
  }
#> function (x)
#> {
#>     if (!dir.exists(x)) {
#>         dir.create(x)
#>     }
#>   }
#> <environment: 0x13927fa50>