3
library(tidyverse)
df <- tibble(Date = c(rep(as.Date("2020-01-01"), 3), NA),
             col1 = 1:4,
             thisCol = c(NA, 8, NA, 3),
             thatCol = 25:28,
             col999 = rep(99, 4))
#> # A tibble: 4 x 5
#>   Date        col1  thisCol thatCol col999
#>   <date>     <int>    <dbl>   <int>  <dbl>
#> 1 2020-01-01     1       NA      25     99
#> 2 2020-01-01     2        8      26     99
#> 3 2020-01-01     3       NA      27     99
#> 4 NA             4        3      28     99

我实际的 R 数据框有数百列名称不整齐,但可以用df上面的数据框近似。

我想用 替换所有值,NA除了0几列(在我的示例中,我想省略Date列和thatCol列。我想以这种方式进行操作:

df %>% replace(is.na(.), 0)
#> Error: Assigned data `values` must be compatible with existing data.
#> i Error occurred for column `Date`.
#> x Can't convert <double> to <date>.
#> Run `rlang::last_error()` to see where the error occurred.

下面显示了我完成“除此之外的所有内容”替换 NA 的不成功想法。

df %>% replace(is.na(c(., -c(Date, thatCol)), 0))
df %>% replace_na(list([, c(2:3, 5)] = 0))
df %>% replace_na(list(everything(-c(Date, thatCol)) = 0))

有没有办法以我需要的方式选择所有内容?有数百列,命名不一致,因此一一键入它们不是一个实际的选择。

4

5 回答 5

4

您可以使用mutate_at

library(dplyr)

按名称删除它们

df %>% mutate_at(vars(-c(Date, thatCol)), ~replace(., is.na(.), 0))

按位置删除它们

df %>% mutate_at(-c(1,4), ~replace(., is.na(.), 0))

按名称选择它们

df %>% mutate_at(vars(col1, thisCol, col999), ~replace(., is.na(.), 0))

按位置选择它们

df %>% mutate_at(c(2, 3, 5), ~replace(., is.na(.), 0))

如果你想使用replace_na

df %>% mutate_at(vars(-c(Date, thatCol)), tidyr::replace_na, 0)

请注意,mutate_at很快将被替换为acrossin dplyr 1.0.0

于 2020-05-01T14:14:54.030 回答
2

您有几个基于.data.table

最酷的选项之一:(setnafill版本 >= 1.12.4):

library(data.table)
setDT(df)

data.table::setnafill(df,fill = 0, cols = colnames(df)[!(colnames(df) %in% c("Date", thatCol)]))

请注意,您的数据框是通过引用更新的。

于 2020-05-01T14:13:53.450 回答
2

另一种base解决方案:

 to_change<-grep("^(this|col)",names(df))
   df[to_change]<- sapply(df[to_change],function(x) replace(x,is.na(x),0))
    df
    # A tibble: 4 x 5
      Date        col1 thisCol thatCol col999
      <date>     <dbl>   <dbl>   <int>  <dbl>
    1 2020-01-01     1       0      25     99
    2 2020-01-01     2       8      26     99
    3 2020-01-01     3       0      27     99
    4 NA             0       3      28     99

数据(我改变了一个值):

df <- structure(list(Date = structure(c(18262, 18262, 18262, NA), class = "Date"), 
    col1 = c(1L, 2L, 3L, NA), thisCol = c(NA, 8, NA, 3), thatCol = 25:28, 
    col999 = c(99, 99, 99, 99)), row.names = c(NA, -4L), class = c("tbl_df", 
"tbl", "data.frame"))
于 2020-05-01T14:51:14.967 回答
1

replace在 data.frame 上工作,所以我们可以通过索引进行替换并更新原始数据集

df[-c(1, 4)] <- replace(df[-c(1, 4)], is.na(df[-c(1, 4)]), 0)

或使用replace_nawith across(from the new dplyr)

library(dplyr)
library(tidyr)
df %>% 
     mutate(across(-c(Date, thatCol), ~ replace_na(., 0)))
于 2020-05-01T19:02:54.987 回答
0

如果你知道那些你不想改变的,你可以这样做:

df <- tibble(Date = c(rep(as.Date("2020-01-01"), 3), NA),
             col1 = 1:4,
             thisCol = c(NA, 8, NA, 3),
             thatCol = 25:28,
             col999 = rep(99, 4))


#dplyr
df_nonreplace <- select(df, c("Date", "thatCol"))

df_replace <- df[ ,!names(df) %in% names(df_nonreplace)]

df_replace[is.na(df_replace)] <- 0

df <- cbind(df_nonreplace, df_replace)


> head(df)
        Date thatCol col1 thisCol col999
1 2020-01-01      25    1       0     99
2 2020-01-01      26    2       8     99
3 2020-01-01      27    3       0     99
4       <NA>      28    4       3     99
于 2020-05-01T14:20:23.980 回答