尝试管道map()
时,我得到了意想不到的结果')))'
返回以下消息:
map(ls(), ~ . %>% get %>% dim)
我真的不知道函数()会如何得到我想要的结果。
有没有办法用管道和地图来做?
不使用烟斗,
Functional sequence with the following components:
1. get(.)
2. dim(.)
Use 'functions' to extract the individual functions.
,结果就是我所期望的。
答案 0 :(得分:4)
. %>% get %>% dim
已经是一个函数,所以只省略~
,即
map(ls(), . %>% get %>% dim)
或:
ls() %>% map(. %>% get %>% dim)