Learn R Programming

argparser (version 0.7.2)

argparser-package: Command-line argument parser

Description

argparser provides functions for parsing command-line arguments.

Arguments

Details

To use the parser,

  1. create an arg.parser object with arg_parser;

  2. add arguments to the parser with add_argument;

  3. call parse_args to parse the command line arguments.

To execute the script, invoke Rscript. Alternatively on Linux, insert a shebang on the first line (#!/usr/bin/env Rscript) and chmod +x the script,

See Also