英文: how to use Purrr/reduce combine dataframe objects 问题 在R环境中有名为'data_1\data_2\....data_20'的data.fr...
计算一组列的按行加权和
英文: Calculate the row-wise weighted sum for a set of columns 问题 以下是代码的翻译部分: 我有如下的数据框: > library(t...
如何从两个不同的数据框中对列进行子集化?
英文: R: How to subset dataframe over columns from 2 different dataframe? 问题 使用R代码如何从两个不同的数据框中对列进行子集化?...
数据整理:扩展和 consilidate 行。
英文: Data wrangling widen and consolidate rows 问题 我想要扩展一些行,然后使用R来合并这些行。 当我使用pivot_wider(names_from = ...
按日期重新排列循环项目
英文: fct_reorder by date on recurring items 问题 尝试创建复杂抗生素疗程的甘特样式图表,有时需要给患者。有时抗生素剂量会更改,然后恢复到原始剂量,或者在稍后日...
在R中循环遍历组。
英文: Looping over groups in R 问题 我有一个df,包括一组数据框df1,df2和df3,每个数据框都遵循这个结构: df1 <- data.frame(year = ...
Convert the quarter date column with the last day of each quarter to the first day of each quarter, or vice versa
英文: Convert the quarter date column with the last day of each quarter to the first day of each quart...
purrr::map函数为什么不能正确地将一个函数映射到拆分数据框的每个部分?
英文: Why is the purrr::map function not correctly mapping a function to each piece of a split datafra...
如何在R中合并多个列表并根据共同变量进行组织
英文: How to combine multiple lists in R and organize according to common variable 问题 我已经将实验变量的数据解析成单独...
如何通过指定一系列列将一个大的tibble拆分成多个小的tibbles。
英文: How to seperate a big tibble into several samll tibbles by specify a serious of columns 问题 分离一个大...
14