translator(SAFD)
translator()所属R语言包:SAFD
Translator
翻译者
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function first calls checking2 in order to check if the input data X defines a polygonal fuzzy number. If all conditions are satisfied the function transforms the input X into a dataframe with the chosen number nl of levels (default is nl=101) by doing linear interpolation, and returns this dataframe.
该函数首先调用checking2为了检查,如果输入的数据X定义了一个多边形的模糊数。如果满足所有条件的函数变换的输入X到一个与所选择的数量nl的级别(默认是nl= 101),通过执行线性内插的数据框,并返回此数据框。
用法----------Usage----------
translator(X, nl = 101)
参数----------Arguments----------
参数:X
...dataframe for which checking2 yields 1
...数据框checking2得1
参数:nl
...number of levels of the output dataframe (fuzzy number), by default 101, must be at least 2.
...的输出数据框(模糊数),默认情况下,101的级别数,必须至少为2。
Details
详细信息----------Details----------
See examples
请参见示例
值----------Value----------
参数:comp1
In case checking2(X)=1 translator returns a dataframe (fuzzy number) with nl number of alpha-levels, otherwise the input is returned unchanged.
在的情况下checking2(X)= 1 translator返回一个数据框(模糊数)与nl的α-水平,否则输入原封不动地返回。
注意----------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 checking2, checking
请参见checking2,checking
实例----------Examples----------
#example1:[例1:]
X<-data.frame(cbind(x=c(-2,-0.75,-0.25,0.5,1),alpha=c(0,0.3,1,0,0.3)))
E<-translator(X,4)
E
#example2[示例]
X<-data.frame(cbind(x=c(-2,-0.75,-0.25,0.5,1),alpha=c(0,0.6,1,1,0)))
E<-translator(X,3)
head(E)
plot(X,type="l")
lines(E,type="l",col="red")
#example3[范例]
data(XX)
E<-translator(XX[[3]],11)
plot(XX[[3]],type="l")
lines(E,type="l",col="red")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|