Fuzzy.sample.mean()
: Calculates the fuzzy sample meanFuzzySTs::Fuzzy.sample.mean()
calculates the fuzzy sample mean of a given fuzzy variable. If the variable is encoded by trapezoidal fuzzy numbers written by their quadruple, this function can return a fuzzy number of the same form. The function can return as well a fuzzy number given by its numerical \(\alpha\)-cuts.
Practically, if the parameter alphacuts="TRUE"
, the function returns a matrix composed by 2 vectors representing the numerical left and right \(\alpha\)-cuts. For this output, the function FuzzySTs::is.alphacuts()
returns a value TRUE
. If the parameter alphacuts="FALSE"
, FuzzySTs::Fuzzy.sample.mean()
returns a trapezoidal fuzzy number given by the quadruple (p,q,r,s).
Weighted.fuzzy.mean()
: Calculates the weighted fuzzy sample meanFuzzySTs::Weighted.fuzzy.mean()
calculates the weighted fuzzy sample mean of a given fuzzy variable. If the variable is encoded by trapezoidal fuzzy numbers written by their quadruple, this function can return a fuzzy number of the same form. The function can return as well a fuzzy number given by its numerical \(\alpha\)-cuts.
Practically, if the parameter alphacuts="TRUE"
, the function returns a matrix composed by 2 vectors representing the numerical left and right \(\alpha\)-cuts. For this output, the function FuzzySTs::is.alphacuts()
returns a value TRUE
. If the parameter alphacuts="FALSE"
, FuzzySTs::Fuzzy.sample.mean()
returns a trapezoidal fuzzy number given by the quadruple (p,q,r,s).
Moment()
: Calculates a central sample moment of a random fuzzy variableFuzzySTs::Moment()
calculates the \(k\)-th classical central sample moment of a random fuzzy variable by the Féron - Puri and Ralescu approach. This moment can be calculated using a distance chosen from the family of distances shown for the function FuzzySTs::distance()
. By the function FuzzySTs::Moment()
, one can easily compute the skewness and the kurtosis measures of the considered random fuzzy variable.
Skewness()
: Calculates the skewness of a random fuzzy variableFuzzySTs::Skewness()
calculates the skewness of a random fuzzy variable based on the expression of the classical central sample moments. The calculations are made using the function FuzzySTs::Moment()
. For a random fuzzy variable \(\tilde{X}\), the skewness is given by the following ratio: \[\begin{equation}
\text{Skewness} (\tilde{X}) = \frac{\nu_3(\tilde X)}{(\nu_2(\tilde X))^{3/2}},
\end{equation}\] where \(\nu_3(\tilde X)\) is the third central sample moment of the variable \(\tilde{X}\), and \(\nu_2(\tilde X)\) is its second central sample moment.
Kurtosis()
: Calculates the excess of kurtosis of a random fuzzy variableFuzzySTs::Kurtosis()
calculates the excess of kurtosis of a random fuzzy variable based on the expression of the classical central sample moments. The calculations are made using the function FuzzySTs::Moment()
. For a random fuzzy variable \(\tilde{X}\), the excess of kurtosis is given by the following ratio: \[\begin{equation}
\text{Kurtosis} (\tilde{X}) = \frac{\nu_4(\tilde X)}{(\nu_2(\tilde X))^{2}} - 3,
\end{equation}\] where \(\nu_4(\tilde X)\) is the fourth central sample moment of the variable \(\tilde{X}\), and \(\nu_2(\tilde X)\) is its second central sample moment.
Fuzzy.variance()
: Calculates the variance of a fuzzy variableFuzzySTs::Fuzzy.variance()
calculates the variance of a fuzzy variable. By this function, one could compute the following types of variances:
the Fréchet variance of a random fuzzy variable.
a numerical “point to point” fuzzy type variance for trapezoidal and triangular fuzzy numbers using the functions FuzzySTs::Fuzzy.Difference()
and FuzzySTs::Fuzzy.Square()
.
We have to mention that for the calculations of this fuzzy variance, any type of fuzzy numbers can be used. However, these numbers will be treated as trapezoidal fuzzy numbers. A condition on the monotony of the left of the right \(\alpha\)-level sets of the produced fuzzy number is postulated. Thus, the left side should always be ascending, and the right one should always be descending.
For the fuzzy variance by this method, we propose two additional functions defined as \[\texttt{Fuzzy.exact.variance.poly.left (object, breakpoints = 100)}\] \[\text{and } \texttt{Fuzzy.exact.variance.poly.right (object, breakpoints = 100)},\] which produce the polynomial forms of the numerical \(\alpha\)-cuts obtained using the function \[\texttt{Fuzzy.variance (object, method="exact", $\ldots$)}. \]
The output is a table composed by the coefficients of the second order equations of the left and the right sides, given at the corresponding definitions domains.
a cheap fuzzy type variance basically for trapezoidal and triangular fuzzy numbers by \(5\) different approximations of the fuzzy square. Note that for these computations, the function FuzzySTs::Fuzzy.Difference()
is used. We add that the fuzzification matrix should be obtained by the function FuzzySTs::FUZZ()
for trapezoidal and triangular fuzzy numbers. The different approximations can be written as follows:
FuzzyNumbers
package.Using almost all of these approximations, a computational complexity induced by the approximation operation is expected to occur. It is related to the ordering of the obtained non-positive elements of the quadruples defining the fuzzy numbers. This fact violates the principles of the direction of the left and right \(\alpha\)-cuts of a LR fuzzy number. Therefore, we proposed to solve the problem using the shifting technique, also known as the translation technique.
To sum up, in terms of outcome, if the parameter method = "distance"
, the function FuzzySTs::Fuzzy.variance()
returns a numerical value. If else, it returns the numerical \(\alpha\)-cuts of the estimated fuzzy variance by one of the approximation methods chosen.
# Example 1
data <- matrix(c(1,2,3,2,2,1,1,3,1,2),ncol=1)
MF111 <- TrapezoidalFuzzyNumber(0,1,1,2)
MF112 <- TrapezoidalFuzzyNumber(1,2,2,3)
MF113 <- TrapezoidalFuzzyNumber(2,3,3,3)
PA11 <- c(1,2,3)
# Fuzzification using FUZZ giving a matrix of the quadruples p,q,r,s
data.fuzzified <- FUZZ(data,mi=1,si=1,PA=PA11)
Fuzzy.variance(data.fuzzified, method = "approximation5", plot=TRUE)
#> Trapezoidal fuzzy number with:
#> support=[-0.728889,1.26222],
#> core=[0.48,0.657778].
#> L U
#> 0.00 0.1920000 1.416000
#> 0.01 0.1950464 1.405935
#> 0.02 0.1981056 1.395901
#> 0.03 0.2011776 1.385897
#> 0.04 0.2042624 1.375923
#> 0.05 0.2073600 1.365980
# Example 2 - Fuzzification using GFUZZ giving a numerical matrix of left and right alpha-cuts
data.fuzzified2 <- GFUZZ(data,mi=1,si=1,PA=PA11)
head(Fuzzy.variance(data.fuzzified2, method = "exact", plot=TRUE))
#> L U
#> 0.00 0.1920000 1.416000
#> 0.01 0.1950464 1.405935
#> 0.02 0.1981056 1.395901
#> 0.03 0.2011776 1.385897
#> 0.04 0.2042624 1.375923
#> 0.05 0.2073600 1.365980