add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

32
pages.zh/common/r.md Normal file
View File

@@ -0,0 +1,32 @@
# R
> R语言解释器。
> 更多信息:<https://www.r-project.org>。
- 启动REPL交互式命令行
`R`
- 以原生模式启动R即一个空白会话结束时不保存工作空间
`R --vanilla`
- 执行一个文件:
`R -f {{path/to/file.R}}`
- 执行一个R表达式然后退出
`R -e {{expr}}`
- 使用调试器运行R
`R -d {{debugger}}`
- 检查来自软件包源的R包
`R CMD check {{path/to/package_source}}`
- 显示版本:
`R --version`