Learn R Programming

ANOVA.TFNs (version 1.0)

sse: Sum of Squares within treatments (Errors) for crisp observation

Description

This function calculates Sum of Squares Errors (SSE) for crisp observation.

Usage

sse(Data, par = "C")

Arguments

Data

a matrix with \(dim=c(n, 4)\) and FANOVA.Data format.

par

a character argument with possible values "C", "L" and "R". If par="C", which is default, the cut part will be the cores of TFNs. If par="L" (par="R"), the cut part will be the Left (Right) spreads of TFNs.

See Also

FuzzyNumbers

Examples

Run this code
# NOT RUN {
data(Data)

sse( Data )
sse( Data, "L" )

# }
# NOT RUN {
 ### Checking relation  sst = sstr + sse 
# }
# NOT RUN {
sst(Data) == sstr(Data) + sse(Data)
sst(Data, "L") == sstr(Data, "L") + sse(Data, "L")

# }

Run the code above in your browser using DataLab