dis<-as.matrix(smacof::kinshipdelta)
#COPS-C with equal weight to stress and cordillera
res1<-cops(dis,variant="COPS-C",stressweight=0.75,cordweight=0.25,
minpts=2,itmax=1000) #use higher itmax in real
res1
summary(res1)
plot(res1)
plot(res1,"reachplot")
# \donttest{
#s-stress type copstress (i.e. kappa=2, lambda=2)
res3<-cops(dis,variant="COPS-C",kappa=2,lambda=2,stressweight=0.5,cordweight=0.5)
res3
summary(res3)
plot(res3)
# power-stress type profile copstress
# search for optimal kappa and lambda between
# kappa=0.5,lambda=0.5 and kappa=2,lambda=5
# nu is fixed on -1
ws<-1/dis
diag(ws)<-1
res5<-cops(dis,variant="P-COPS",loss="powerstress",
theta=c(1.4,3,-1), lower=c(1,0.5,-1),upper=c(3,5,-1),
weightmat=ws, stressweight=0.9,cordweight=0.1)
res5
summary(res5)
plot(res5)
# }
Run the code above in your browser using DataLab