使用tidyverse
很多我经常面临将命名向量转换为data.frame
/的挑战,tibble
其中列是向量的名称。
这样做的首选/tidyversey 方式是什么?
编辑:这与:this和this github-issue有关
所以我想要:
require(tidyverse)
vec <- c("a" = 1, "b" = 2)
变成这样:
# A tibble: 1 × 2
a b
<dbl> <dbl>
1 1 2
我可以通过例如:
vec %>% enframe %>% spread(name, value)
vec %>% t %>% as_tibble
用例示例:
require(tidyverse)
require(rvest)
txt <- c('<node a="1" b="2"></node>',
'<node a="1" c="3"></node>')
txt %>% map(read_xml) %>% map(xml_attrs) %>% map_df(~t(.) %>% as_tibble)
这使
# A tibble: 2 × 3
a b c
<chr> <chr> <chr>
1 1 2 <NA>
2 1 <NA> 3