do.call 的用法 R语言

您所在的位置:网站首页 r语言ls的用法 do.call 的用法 R语言

do.call 的用法 R语言

2024-06-09 21:57| 来源: 网络整理| 查看: 265

do.call 的用法 R语言

目录do.call 的用法 R语言do.call引言UsageArgumentsdo.call 和lapply 的区别answer 1answer 2answer 3

do.call引言

do.call constructs and executes a function call from a name or a function and a list of arguments to be passed to it.

Usage do.call(what, args, quote = FALSE, envir = parent.frame()) Arguments what either a function or a non-empty character string naming the function to be called. args a list of arguments to the function call. The names attribute of args gives the argument names. quote a logical value indicating whether to quote the arguments. envir an environment within which to evaluate the call. This will be most useful if what is a character string and the arguments are symbols or quoted expressions.

最常用的就是,使用do.call将一个list 中n个数据框,通过rbind或者cbind 的方式合并成一个数据框。即起到了转化list数据结构为dataframe数据结构的作用。下面为Stack Overflow的一个与lapply, map比较的介绍,以及一些例子,讲述的十分清楚。

do.call 和lapply 的区别 answer 1

There is a function called Map that may be similar to map in other languages:

lapply returns a list of the same length as X, each element of which is the result of applying FUN to the corresponding element of X. do.call constructs and executes a function call from a name or a function and a list of arguments to be passed to it. Map applies a function to the corresponding elements of given vectors... Map is a simple wrapper to mapply which does not attempt to simplify the result, similar to Common Lisp's mapcar (with arguments being recycled, however). Future versions may allow some control of the result type. Map is a wrapper around mapply lapply is a special case of mapply Therefore Map and lapply will be similar in many cases.

For example, here is lapply:

lapply(iris, class) $Sepal.Length [1] "numeric" $Sepal.Width [1] "numeric" $Petal.Length [1] "numeric" $Petal.Width [1] "numeric" $Species [1] "factor"

And the same using Map:

Map(class, iris) $Sepal.Length [1] "numeric" $Sepal.Width [1] "numeric" $Petal.Length [1] "numeric" $Petal.Width [1] "numeric" $Species [1] "factor"

do.call takes a function as input and splatters its other arguments to the function. It is widely used, for example, to assemble lists into simpler structures (often with rbind or cbind).

For example:

x


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3