print.pspline(SpatialExtremes)
print.pspline()所属R语言包:SpatialExtremes
Printing objects of class “pspline”
打印对象类“pspline”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A method for printing object of class “pspline”.
为打印的类“pspline”对象的方法。
用法----------Usage----------
## S3 method for class 'pspline'
print(x, ...)
参数----------Arguments----------
参数:x
An object of class “pspline”. Most often, x is the output of the rbpspline function.
对象的类“pspline”。大多数情况下,x是的输出rbpspline功能。
参数:...
Other options to be passed to the print function.
到传递给print功能的其他选项。
值----------Value----------
Print several information on screen.
在屏幕上打印多的信息。
(作者)----------Author(s)----------
Mathieu Ribatet
实例----------Examples----------
n <- 200
x <- runif(n)
fun <- function(x) sin(3 * pi * x)
y <- fun(x) + rnorm(n, 0, sqrt(0.4))
knots <- quantile(x, prob = 1:31 / 32)
fitted <- rbpspline(y, x, knots = knots, degree = 3)
fitted
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|