英文: Perform a logical test over a group_by() of rows, but mutate the rows individually? 问题 如何在R中对一组行...
使NA在使用调色板函数时变为透明。
英文: Make NA transparent when using a color palette-function 问题 这是我的数据框架: Test = structure(list(Corr_...
使用dplyr根据条件和列表分配列值。
英文: Assign column values based on condition and list with dplyr 问题 我有一个包含日期列和其他数据的tibble。我想根据日期落在特定范...
分开更宽的部分,第一半成为列名,第二半成为单元格值。
英文: separate_wider where first half becomes column name and second half becomes cell value 问题 df &am...
在R中,统计数值为1之后,其余行为NA的行数。
英文: Count rows after value 1 where rest of rows are NAs in r 问题 我想要填充1出现后的缺失值,用计数来表示。像这样: df2 <- ...
根据日期和唯一标识分配数字
英文: Assign number based on date and unique identifier 问题 日期 标签 捕获顺序 1/21/22 001 1 1/22/22 001 2 1/23...
dplyr & groups : what is the difference between keep and ungroup or directly drop?
英文: dplyr & groups : what is the difference between keep and ungroup or directly drop? 问题 我需要对同一...
ggplot和boxplot:是否可以添加权重?
英文: ggplot & boxplot: is it possible to add weights? 问题 我正在尝试根据地区绘制工资的箱线图。 这是我的数据集的示例(由研究机构提供): ...
在dplyr代码中添加一行总计,但只在特定列下方。
英文: add a total row in a dplyr code but just under a specifc colum 问题 我有这个数据集 结构(列表(col2 = c(1, 1, 2...
Filtering table based on row non-zero values in R
英文: Filtering table based on row non-zero values in R 问题 我有一个如下的表格: 日期 X1 X2 X3 1/1 0 3 34 2/1 0 7 6...
43