gpt4 book ai didi

r - 在 roxygen2 R 包文档中插入 Markdown 表

转载 作者:行者123 更新时间:2023-12-04 10:49:37 25 4
gpt4 key购买 nike

我正在编写一个 R 包,我想在 R 帮助文件中包含一个表格,例如在 @details部分。我尝试直接包含 Markdown 代码:

#' | Tables        | Are           | Cool  |
#' | ------------- |:-------------:| -----:|
#' | col 3 is | right-aligned | $1600 |
#' | col 2 is | centered | $12 |

但这并没有给我想要的输出。我已经为整个包启用了 Markdown 支持并安装了 roxygen2 6.0.1。不支持 Markdown 表吗?我是否必须使用 \tabular{} ?

最佳答案

您需要添加 @md标记到您的 roxygen 块

#' @details
#' The table is:
#'
#' | Tables | Are | Cool |
#' | ------------- |:-------------:| -----:|
#' | col 3 is | right-aligned | $1600 |
#' | col 2 is | centered | $12 |
#'
#' @md

或添加 Roxygen: list(markdown = TRUE)给您的 DESCRIPTION文件。

关于r - 在 roxygen2 R 包文档中插入 Markdown 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42813243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com