MakeThSpec(tsDyn)
MakeThSpec()所属R语言包:tsDyn
Specification of the threshold search
参数的阈值搜索
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This optional function allows the user to set different restrictions for the threshold grid search in function selectSETAR.
这个可选的功能,允许用户设置不同的阈值限制网格搜索功能selectSETAR。
用法----------Usage----------
MakeThSpec(ngrid=c("All", "Half", "Third", "Quarter"), exact=NULL, int=c("from","to"), around="val",...)
参数----------Arguments----------
参数:exact
The user give an exact threshold value
用户给出一个确切的阈值
参数:int
The user gives an interval to search inside
用户给出的时间间隔,以搜寻里面
参数:around
The user gives an point to search around
用户给出搜索周围的点
参数:ngrid
The number of values to search for
的值的数目,来搜索
参数:...
currently unused
目前未使用的
Details
详细信息----------Details----------
This function is just to check the inputs for the specification of the grid search. If not provided, the search will be in the biggest interval (
此功能只是为了检查输入的规范的网格搜索。如果没有提供,搜索将是在最大时间间隔(
值----------Value----------
The input values are given as output after checking for consistency (only one of exact/int/around should be given).
检查一致性(只有一个确切的/ INT /左右应给予)后,输出的输入值给出。
(作者)----------Author(s)----------
Matthieu Stigler
参见----------See Also----------
selectSETAR
selectSETAR
实例----------Examples----------
sun<-(sqrt(sunspot.year+1)-1)*2
selectSETAR(sun, m=3, th=MakeThSpec(exact=10.40967),criterion="SSR", d=1, thDelay=0:2, plot=FALSE, nthresh=1)
#when pre-sepcified value does not correspond, function will search nearest value[当前sepcified值不对应,函数将搜索最接近的值]
selectSETAR(sun, m=3, th=MakeThSpec(exact=10.4),criterion="SSR", d=1, thDelay=0:2, plot=FALSE, nthresh=1)
#search around:[四处搜寻:]
selectSETAR(sun, m=3, th=MakeThSpec(around=10.40967, ngrid=20),criterion="SSR", d=1, thDelay=0:2, plot=FALSE, nthresh=1)
#search in an interval[搜索在一个间隔]
selectSETAR(sun, m=3, th=MakeThSpec(int=c(10, 11), ngrid=20),criterion="SSR", d=1, thDelay=0:2, plot=FALSE, nthresh=1)
#reduce size of the grid:[减少电网的规模:]
selectSETAR(sun, m=3, th=MakeThSpec(ngrid="Half"),criterion="SSR", d=1, thDelay=0:2, plot=FALSE, nthresh=1)
# 2 thresholds:[2个阈值:]
selectSETAR(sun, m=3, th=MakeThSpec(ngrid="Half"),criterion="SSR", d=1, thDelay=0:2, plot=FALSE, nthresh=2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|