*编辑以简化示例
我正在尝试使用 apa_table() 为评论文件包含一个包含排除标准的表。我已经在 excel 中制作了表格,但我正在尝试将 Rstudio 和 Rmarkdown 用于我所有的学术写作。
表格在excel中看起来像这样
包容性 | 排除 | 基本原理 | |
---|---|---|---|
1. 发表 | 同行评审期刊 | 同行评审期刊以外的来源(即专业出版物、灰色文献) | 为确保质量... |
2.文章类型 | 展示适合分析和综合的方法和结果的研究/实证文章 | 描述干预措施但未提供研究结果的文章(即治疗手册) | 为了评估给定的证据... |
3. 语言 | 以英文发表或提供的文章 | 没有英文的文章 | 无法使用翻译服务 |
4.节目类型 | 明确针对...的程序 | 不包括的干预措施...... | 为确保审查重点... |
我在 python 和网状结构中更舒服,我想我可以将 Pandas 数据框传递给 R 并制作表格,但是当我这样做时,针织文档会显示如下表格:
我也刚刚尝试使用降价文本,结果是......更接近
我使用的代码是
df <- data.frame(inclusion <- c('Peer reviewed Journal articles',
'Research/Empirical articles presenting methods and results suitable for analysis and synthesis',
'Articles published or available in English',
'Programs that explicitly include...'),
exclusion <- c('Sources other than peer reviewed journals (i.e. professional publications)',
'Articles describing interventions without presenting research findings (i.e. theraputuc manuals)',
'Articles unavailable in English',
'Interventions that do not include a...'),
rationale <- c('To ensure the quality of included...',
'To evaluate only empirical evidence for a given program/intervention rather than...',
'No access to translation service',
'To ensure the review focuses on the outcomes of hero based interventions')
)
rownames(df) <- c('1. Publication type',
'2. Article type',
'3. Language',
'4. Program type')
colnames(df) <- c('Inclusion', 'Exclusion', 'Rationale')
library(papaja)
apa_table(
df
, caption = "Inclusion/Exclusion Criteria"
, note = NULL
)
我也通读了这个页面的apa_table()
论点,但没有任何运气。任何帮助,将不胜感激。