rconfig:在命令行管理 R 配置

Configuration management using files (JSON, YAML, separated text), JSON strings, and command line arguments. Command line arguments can be used to override configuration. Period-separated command line flags are parsed as hierarchical lists.
使用文件(JSON、YAML、分隔文本)、JSON 字符串和命令行参数进行配置管理。 命令行参数可用于覆盖配置。 句点分隔的命令行标志被解析为分层列表。
Version: 0.1.1
Imports: yaml, jsonlite
Published: 2022-02-21
Author: Peter Solymos [aut, cre] (), Analythium Solutions Inc. [cph]
Maintainer: Peter Solymos BugReports: https://github.com/analythium/rconfig/issues
License: MIT + file LICENSE
URL: https://github.com/analythium/rconfig
NeedsCompilation: no
Materials: NEWS
CRAN checks: rconfig results
Documentation:
Reference manual: rconfig.pdf
Downloads:
Package source: rconfig_0.1.1.tar.gz
Windows binaries: r-devel: rconfig_0.1.1.zip, r-release: rconfig_0.1.1.zip, r-oldrel: rconfig_0.1.1.zip
macOS binaries: r-release (arm64): rconfig_0.1.1.tgz, r-release (x86_64): rconfig_0.1.1.tgz, r-oldrel: rconfig_0.1.1.tgz
Linking:
Please use the canonical form https://CRAN.R-project.org/package=rconfig to link to this page.

如若转载,请注明出处:https://www.ouq.net/1463.html

(0)
打赏 微信打赏,为服务器增加50M流量 微信打赏,为服务器增加50M流量 支付宝打赏,为服务器增加50M流量 支付宝打赏,为服务器增加50M流量
上一篇 03/21/2022
下一篇 04/02/2022

相关推荐

  • R:读取Excel的xls和xlsx格式文件

    #安装加载readxl包 library(“readxl”) #读取xlsx文件 file<-read_excel(“xxx.xlsx”) #读取表sheet read_excel(xl…

    R 12/05/2023
    235
  • R:使用R连接数据库处理数据

    1.数据库连接 library(DBI) library(dplyr) library(dbplyr) library(odbc) con <- dbConnect(odbc::odbc(), “Oracle DB”) 2.使用DBI…

    03/06/2022
    109
  • R:UniProt.ws包转换Accession,ENSEMBL,ENSEMBL_PROTEIN等

    UniProt.ws提供了一个通往UniProt网络服务的选择查询接口。UniProt.ws是与Bioconductor的Uniprot网络服务互动的基础包。 与AnnotationDb对象允许对许多其他注释包进行选择一样,UniProt.…

    R 04/28/2022
    235
  • AUC分析和ROC Curve解读

    在机器学习中,性能测量是一项必不可少的任务。因此,当涉及分类问题时,我们可以使用 AUC – ROC 曲线。当我们需要检查或可视化多类分类问题的性能时,我们会使用 AUC(Area Under the Receiver Oper…

    08/10/2023
    252
  • 利用R语言批量修改文件名file.rename函数

    R语言中文件操作的函数有: file.create(…, showWarnings = TRUE)file.exists(…)file.remove(…)file.rename(from, to)file…

    03/25/2020
    742