英文: How to select the columns of a dataframe based on a vector of strings, matching for exact coinci...
mutate_if在R中与case_when一起使用的多个条件
英文: mutate_if multiple conditions along with case_when in R 问题 我想对那些是因子且只有2个水平的列应用case_when函数,而且它们的名...
如何根据数据帧中的分组来增加数字距离?
英文: How to increment a numeric distance based on grouping in a data frame? 问题 在R中,如果给定一个数据框,其中第一列是分组...
添加后缀到一个新列
英文: Add a suffix to a new column 问题 旨在在应用“left”函数后创建一个名为“bd_acct_left”的新列,其中包含后缀“_left”。 新DF列 Study ...
更新数据框中的名称以始终保持相同。
英文: Updating the names in dataframe to keep the same always 问题 在绑定所有小表时,数据框的名称具有扩展名“.x”、“ .y”、“ .xX”...
在R中合并两个没有共同列的数据框。
英文: Merging tow dataframes in R that do not have common columns 问题 我一直在尝试合并两个在R中没有相同列的数据框。我得到的输出是一个具...
有没有办法将异常值提取到一个单独的数据框中?
英文: Is there a way to pull outliers into a separate df? 问题 我有一个包含150列和200行的数据框,我想遍历每一列,并提取每列中大于该列均值加...
从一列中提取一个单词/字母后面的数值到新的一列
英文: Extract values after a word/alphabet from one column to a new column 问题 GEOID_Final = c("421...
分割和汇总结果,无需循环。
英文: Split and aggregating results without a loop 问题 以下是翻译的代码部分: I have a dataframe where I would lik...
将某些列中的数值除以一列的值,并替换数据表中的内容。
英文: Divide values in some columns by the value of a column and replace in data table 问题 使用R,我想要将数据表中...
43