checking2(SAFD)
checking2()所属R语言包:SAFD
Checking correct data format (weak version)
检查正确的数据格式(弱版)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function checks if the input data defines a polygonal fuzzy number, i.e. a dataframe with the columns "x" and "alpha" fulfilling the following conditions: (1) alpha-values have to be in [0,1] with the minimum alpha-level being 0 and maximum being 1, (2) the x-values have to be non-decreasing, (3) the alpha-levels have to increase from 0 to 1 and afterwards decrease from 1 to 0 (not necessarily in the same way). The function is only used for the translator function.
功能检查,如果所输入的数据定义的多边形的模糊数,即数据框与列“×”和“α”满足以下条件:(1)α-值必须在[0,1]的最小的α-电平为0,最大为1,(2)的x值非递减的,(3)的α-水平必须增加从0到1的事后从1减少到0(不一定相同的方式)。该功能仅用于translator功能。
用法----------Usage----------
checking2(X, com = 1)
参数----------Arguments----------
参数:X
...can be any data frame.
...可以是任何数据框。
参数:com
...numeric, if com=1 then, in case of an error, a comment is printed. By default com=1.
...数字,如果com= 1,那么,在一个错误的情况下,注释打印。默认情况下,com= 1。
Details
详细信息----------Details----------
See examples
请参见示例
值----------Value----------
The function returns the value 1 if the input fulfills all conditions, if not, 0 is returned.
该函数返回值为1,如果输入满足所有条件,如果没有,则返回0。
注意----------Note----------
In case you find (almost surely existing) bugs or have recommendations for improving the functions comments are welcome to the above mentioned mail addresses.
如果你发现改善的功能(几乎可以肯定存在的)错误,或有建议意见,欢迎上述电子邮件地址。
(作者)----------Author(s)----------
Wolfgang Trutschnig <wolfgang@trutschnig.net>, Asun Lubiano <lubiano@uniovi.es>
参见----------See Also----------
See Also as checking, translator
请参见checking,translator
实例----------Examples----------
U<-data.frame(cbind(x=c(-1,0,1),alpha=c(0,1,0)))
#a<-checking(U,)[<检查(U)]
a<-checking2(U,)
a
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|