英文: how to do conditional summation in R 问题 I am trying to do a conditional summation based on a tab...
如何使用dplyr(1.1.0)中的across()与共享参数的函数列表。
英文: How to use dplyr (1.1.0) across() with list of functions using shared arguments 问题 ##### 使用虚拟数据和...
使用adorn_totals()按列指定计算。
英文: Specify the calculation by column using adorn_totals() 问题 我正在尝试使用R中的Janitor包添加一个总计行,但是我需要使用sum函数...
dplyr解决方案以精确和部分字符串连接方式
英文: dplyr solution to exact and partial-string join 问题 我需要通过两列将两个数据集连接起来,其中一列是精确匹配,另一列是部分匹配: pf=data...
使用表名向量在R中合并多个表格。
英文: Combine multiple tables in R using a vector of table names 问题 我有三个数据集(tibble),它们都具有相同的列名 A_table...
在 “join_by” 函数中关键词 ‘within’ 和 ‘overlaps’ 的使用
英文: The usage of the key word 'within' and 'overlaps' in join_by 问题 样本1:within by &l...
只保留R中每个组中的最后一个重复项。
英文: Saving only the last duplicate by group in R 问题 我有一个示例数据集: example <- data.frame( date = c(...
基于连续的行创建分组,以在 ggplot 折线图中显示。
英文: Create groups based on contiguous rows for displaying in a ggplot line chart 问题 我有一个扩展的时间序列,并希望在...
如何在同一个代码块中使用dplyr的rename和mutate动词。
英文: How to use dplyr verbs rename and mutate in a same chunk 问题 我想首先将我的 x 变量重命名为 newX,然后基于 newX 和 y ...
使用tidyr或dplyr方法的Fisher精确检验
英文: fisher exact using tidyr or dplyr approach 问题 我有一个包含两组数据的数据框,分别是肿瘤组和正常组。对于每个位点/行,我想要计算在肿瘤组和正常组之间...
43