is.FCMres | R Documentation |
Check if an object can be considered as a FCMres object
## S3 method for class 'FCMres'
is(object, class2 = "FCMres")
object |
A FCMres object, typically obtained from functions CMeans, GCMeans, SFCMeans, SGFCMeans |
class2 |
Character string giving the names of the classe to test (usually "FCMres") |
A boolean, TRUE if x can be considered as a FCMres object, FALSE otherwise group
data(LyonIris)
AnalysisFields <-c("Lden","NO2","PM25","VegHautPrt","Pct0_14","Pct_65","Pct_Img",
"TxChom1564","Pct_brevet","NivVieMed")
dataset <- sf::st_drop_geometry(LyonIris[AnalysisFields])
queen <- spdep::poly2nb(LyonIris,queen=TRUE)
Wqueen <- spdep::nb2listw(queen,style="W")
result <- SFCMeans(dataset, Wqueen,k = 5, m = 1.5, alpha = 1.5, standardize = TRUE)
is(result, "FCMres")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.