使用dplyr :: mutate后,为什么给定的属性会消失?

问题描述 投票:2回答:1

我给了我的数据框一些属性。

这只是为我节省了一些打字。我使用dplyr包,特别是使用mutate命令工作了很多。

但是在我的数据框架上使用mutate后,我给数据框的属性消失了。

有谁知道为什么R或dplyr这样做?

这是一个小例子:

df <- data.frame(n = seq(1,1000),
       abc = rep(1,1000))
library(dplyr); library(data.table)
df <- df %>% setattr(., "my_attribute", "this thing is 1000 entries long") %>% 
                mutate_at(.vars = "abc", as.character)

...如果我列出我的属性,R给了我:

> str(attributes(df))
List of 3
$ class    : chr "data.frame"
$ names    : chr [1:2] "n" "abc"
$ row.names: int [1:1000] 1 2 3 4 5 6 7 8 9 10 ...
r dataframe attributes dplyr tibble
1个回答
2
投票

mutate函数导致预期的属性丢失(即使您只将一个列强制转换为另一个类。)因此,在mutate-operation之后设置您的属性:

df <- df %>% mutate_at(.vars = "abc", as.character) %>% 
                  setattr(., "my_attribute", "this thing is 1000 entries long")
#> names(attributes(df))
#[1] "class"        "names"        "row.names"    "my_attribute"
© www.soinside.com 2019 - 2024. All rights reserved.