英文: Creating multiple NEW columns using across() in R 问题 我理解你的问题是,你想使用mutate创建不依赖于现有列的新列。 你可以使用以下方法创...
使用R中的`across()`创建多个新列
英文: Creating multiple NEW columns using across() in R 问题 我的问题与现有问题的不同之处在于我想要使用 mutate 创建不依赖于现有列的新列。 ...
如何在嵌套的for循环中使用mutate创建新变量?
英文: How can I use mutate to create new variables in nested for loops? 问题 我有一个数据集,其中包含唯一的参与者ID,每个参与者都...
将具有NAs的数值变量进行转换和四舍五入。
英文: Converting and Rounding Numeric Variables with NAs 问题 我正在使用名为 fab_2023 的数据集,这个数据集是我从Excel中导入的。在数...
执行一个包含字符字符串的变异函数。
英文: Performing a mutate function incorporating character strings 问题 这是我的数据框: data.frame( condition =...
Conditional calculation of new variable based on specific groups of rows, row values and columns in R dataframe
英文: Conditional calculation of new variable based on specific groups of rows, row values and columns...
创建新列的变异和if else函数
英文: Mutate and if else function to create new column 问题 以下是翻译好的部分: 这可能是一个非常简单的问题,但到目前为止我失败了。 我的数据集看起...
如果满足条件,替换特定列上的值。
英文: Replace value on specific column if condition is met 问题 我有一个名为wide df的数据框,其中columns代表了许多给定years中...
如何使用R传递滞后值并与另一个属性求和?
英文: How to carry lag values and sum with another attribute using R? 问题 Part B df <- df %>% mut...
更改一系列列的值,如果列名符合另一列的值。
英文: Mutate value of a range of columns if columns name meets another column value 问题 我有一个wide df,其中c...