plot.gp(spectralGP)
plot.gp()所属R语言包:spectralGP
Plot a process based on a spectral GP object
基于上的光谱GP对象绘制过程
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Makes a line plot (for one-dimensional processes) or image plot (two-dimensional processes) of a process represented in a spectral GP object.
使一个线图(一维的流程)或图像绘图(二维进程)中的光谱的GP对象表示的过程。
用法----------Usage----------
## S3 method for class 'gp':
plot(x, type = "l", col = terrain.colors(32), ...)
参数----------Arguments----------
参数:x
A GP object, created by gp.
一个GP对象,创建的gp。
参数:type
Type of plot if process is one-dimensional, "l" for line, "p" for points, etc.
的图类型,如果过程是一维的,“L”线,“P”点等。
参数:col
Color scheme for image plot if process is two-dimensional. E.g., topo.colors(64) is the default for image.plot; I prefer terrain.colors(64) as topo.colors has sharp color changes between adjacent bins.
颜色方案的过程是二维图像绘图。例如,topo.colors(64)是默认的为image.plot;,我喜欢terrain.colors的(64),作为topo.colors有亮丽的色彩之间的变化相邻位置。
参数:...
Extra arguments to plotting functions.
额外的参数绘图功能。
值----------Value----------
No value is returned.
无返回值。
(作者)----------Author(s)----------
Christopher Paciorek <a href="mailto:paciorek@alumni.cmu.edu">paciorek@alumni.cmu.edu</a>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
library(spectralGP)
gp1=gp(c(128),matern.specdens,c(1,4))
simulate(gp1)
plot(gp1)
gp2=gp(c(256,256),matern.specdens,c(1,0.5))
simulate(gp2)
plot(gp2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|