Mercurial > repos > greg > r_hello_world
view hello_world.R @ 0:304377330941 draft
Uploaded
author | greg |
---|---|
date | Mon, 15 Aug 2016 13:33:07 -0400 |
parents | |
children | 65fb665f37e3 |
line wrap: on
line source
#!/usr/bin/env Rscript suppressPackageStartupMessages(library("optparse")) option_list <- list( make_option(c("-o", "--output"), action="store", help="Output dataset") ) line<-"Hello World" base::save(line, file=opt$output)