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

View File

@@ -0,0 +1,20 @@
# R脚本
> 使用R编程语言运行脚本。
> 更多信息:<https://www.r-project.org>。
- 运行脚本:
`Rscript {{path/to/file.R}}`
- 以原生模式运行脚本(即一个不在结束时保存工作区的空会话):
`Rscript --vanilla {{path/to/file.R}}`
- 执行一个或多个R表达式
`Rscript -e {{expression1}} -e {{expression2}}`
- 显示R版本
`Rscript --version`