bodyAsExpression(Ryacas)
bodyAsExpression()所属R语言包:Ryacas
Get body of function as an expression.
身体功能的表达。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Get body of function as an expression.
身体功能的表达。
用法----------Usage----------
bodyAsExpression(x)
参数----------Arguments----------
参数:x
An R function.
R的功能。
Details
详细信息----------Details----------
This function is similar to the R body function except that function returns a call object whereas this one returns an expression usable in Ryacas calculations.
此功能类似于R body函数,除非该函数返回一个调用对象,而这个方法返回一个表达式可用在Ryacas计算。
值----------Value----------
An expression.
一个表达式。
参见----------See Also----------
body
body
实例----------Examples----------
## Not run: [#不运行:]
# construct an R function for the Burr probability density[构建一个R毛刺的概率密度函数为]
# function (PDF) given the Burr cumulative distribution function (CDF)[函数(PDF)的Burr累积分布函数(CDF)]
BurrCDF <- function(x, c = 1, k = 1) 1-(1+x^c)^-k
# transfer CDF to yacas[转让CDF与yacas]
yacas(BurrCDF)
# create a template for the PDF from the CDF[从CDF的PDF创建一个模板]
BurrPDF <- BurrCDF
# differentiate CDF and place resulting expression in body[区分CDF和地点,从而导致在体内的表达]
body(BurrPDF) <- yacas(expression(deriv(BurrCDF(x,c,k))))[[1]]
# test out PDF[测试出PDF]
BurrPDF(1)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|