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

Description Usage Arguments See Also Examples

View source: R/sse.R

Description

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

Usage

1
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

1
2
3
4
5
6
7
8
data(Data)

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

 ### Checking relation  sst = sstr + sse 
sst(Data) == sstr(Data) + sse(Data)
sst(Data, "L") == sstr(Data, "L") + sse(Data, "L")

ANOVA.TFNs documentation built on May 1, 2019, 9:14 p.m.