英文: Replace multiple columns in a dataframe with a new column that indicates if the original columns...
在R中:如何根据另一列的值来应用一个函数到一列?
英文: In R: How to apply a function to a column given the value of another column 问题 我有一个包含1和NA的数据框。我想...
在使用 grepl 查找非缺失的非匹配项时,要放置 is.na() 的位置在哪里?
英文: Where to place is.na() when using grepl to find non-missing non-matches? 问题 我想找到那些在var2中没有包含已定义表...
替换不同类别的多个列中的NA值。
英文: replace NA in multiple columns of different classes 问题 我有多列类似名称的数据,但属于不同的类别。我需要用0替换所有的NA,但保留列的类别...
在R中根据列中的一个值填充数据框。
英文: Fill across a data frame based on a value in a column in R 问题 我想要填充在y中指定的列数中m0中的值。期望的结果是: y m0 m...
在R数据表中向后填充最后的NA值。
英文: Backwards fill last instances of NAs in R Data Table 问题 library(data.table) dt <- data.table(...
如何从数组中删除NAs
英文: How to remove NAs in an array 问题 考虑我们有一个数组: tmp <- array(c(1, 2, 3, 4, NA, NA, NA, NA, 5,...
Forward fill first instances of NAs in R data.table
英文: Forward fill first instances of NAs in R data.table 问题 我有一个数据表,其中有一列如下: c(58,NA,NA,NA,NA,13,NA,N...
Missing data using plot() in R: should I use na.omit(), !is.na(), approx()? If so then how?
英文: Missing data using plot() in R: should I use na.omit(), !is.na(), approx()? If so then how? 问题 T...
如何在参数中使用 data.table 的 fifelse 函数与向量?
英文: How to use data.table fifelse with vectors in the arguments? 问题 以下是您要求的代码部分的中文翻译: # 假设我有这个数据框 DF...