跨各种数据帧比较R中的列名

时间:2018-11-12 15:10:21

标签: r class dataframe lapply sapply

我目前正在尝试进行任何转换和计算之前,比较R中各种数据帧的列类和名称。 我的代码如下:

library(dplyr)
m1 <-  mtcars
m2 <-  mtcars %>% mutate(cyl = factor(cyl), xxxx1 = factor(cyl))
m3 <-  mtcars %>% mutate(cyl = factor(cyl), xxxx2 = factor(cyl))

out <-  cbind(sapply(m1, class), sapply(m2, class), sapply(m3, class))

如果有人可以解决列表中存储的数据帧,那就太好了。我所有的数据帧当前都存储在一个列表中,以便于处理。

All.list <- list(m1,m2,m3)

我期望输出以矩阵形式显示,如数据框“ out”所示。不需要输入“ out”的输出,因为它是不正确的。我希望输出结果如下:

enter image description here

2 个答案:

答案 0 :(得分:1)

我认为最简单的方法是定义一个函数,然后结合使用lapply和dplyr获得所需的结果。这是我的方法。

library(dplyr)
m1 <-  mtcars
m2 <-  mtcars %>% mutate(cyl = factor(cyl), xxxx1 = factor(cyl))
m3 <-  mtcars %>% mutate(cyl = factor(cyl), xxxx2 = factor(cyl))

All.list <- list(m1,m2,m3)


##Define a function to get variable names and types
my_function <- function(data_frame){
  require(dplyr)
  x <- tibble(`var_name` = colnames(data_frame),
              `var_type` = sapply(data_frame, class))
  return(x)
}


target <- lapply(1:length(All.list),function(i)my_function(All.list[[i]]) %>% 
mutate(element =i)) %>%
  bind_rows() %>%
  spread(element, var_type)

target

答案 1 :(得分:0)

尝试使用看门人软件包中的compare_df_cols()

library(janitor)
compare_df_cols(All.list)

#>    column_name All.list_1 All.list_2 All.list_3
#> 1           am    numeric    numeric    numeric
#> 2         carb    numeric    numeric    numeric
#> 3          cyl    numeric     factor     factor
#> 4         disp    numeric    numeric    numeric
#> 5         drat    numeric    numeric    numeric
#> 6         gear    numeric    numeric    numeric
#> 7           hp    numeric    numeric    numeric
#> 8          mpg    numeric    numeric    numeric
#> 9         qsec    numeric    numeric    numeric
#> 10          vs    numeric    numeric    numeric
#> 11          wt    numeric    numeric    numeric
#> 12       xxxx1       <NA>     factor       <NA>
#> 13       xxxx2       <NA>       <NA>     factor

它既接受列表,也接受单个命名的data.frames,即compare_df_cols(m1, m2, m3)

免责声明:我维护了最近添加了此功能的管理员程序包-在此将其发布,因为它正好解决了该用例。