Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Porposition d'ajout au post argparse #99

Open
jeremiedb opened this issue Jan 15, 2020 · 2 comments
Open

Porposition d'ajout au post argparse #99

jeremiedb opened this issue Jan 15, 2020 · 2 comments

Comments

@jeremiedb
Copy link
Contributor

@stecaron
À propos du post sur argparse, j'ai pensé qu'il aurait pu être bien de souligner l'existence de l'utilitaire de base de R pour supporter les arguments aux script.

Par exemple, script argtest.R:

args <- commandArgs(trailingOnly = T)
x <- as.numeric(args[1])
y <- as.numeric(args[2])
print(paste0("Product = ", x*y))

Et qui peut ensuite être appellé du CLI:

Rscript argstest.R 3 4
[1] "Product = 12"

J'ai pas mal adopté argparse également pour gérer des programmes aux paramètres plus élaborés, mais pour des cas simple, je trouve intéressant de pouvoir limiter les dépendances.

@stecaron
Copy link
Member

Très cool @jeremiedb ! Je vais voir comment je pourrais intégrer ça à l'article ouais ! Si t'as des idées gênes-toi pas pour partir quelque chose.

@davebulaval
Copy link
Contributor

@stecaron added or not ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants