-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathR
More file actions
32 lines (17 loc) · 491 Bytes
/
R
File metadata and controls
32 lines (17 loc) · 491 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# R
> R language interpreter.
> More information: <https://www.r-project.org>.
- Start an R interactive shell (REPL):
R
- Check R version:
R --version
- Start R in vanilla mode (i.e. a blank session that doesn't save the workspace at the end):
R --vanilla
- Execute a file:
R -f {{path/to/file.R}}
- Execute an R expression and then exit:
R -e {{expr}}
- Run R with a debugger:
R -d {{debugger}}
- Check R packages from package sources:
R CMD check {{path/to/package_source}}