summarize.pomics {Pomic} | R Documentation |
This function calculate the POMIC differences, likelihood and weights of evidence.
summarize.pomics(scores)
scores |
Numerical, a vector of pomic scores |
The scores of POMIC should be raw values considering only one pattern and corresponding each to a model (or parameterization).
Return a data frame containing:
deltas |
the differences of POMIC scores to the best one |
Liks |
the likelihood of each model to be the best one |
wPomic |
the weights of evidence of each model |
Cyril Piou
cyril.piou@yahoo.fr
summarize.parameters
analyse.pomics
pomic
modelscores<-runif(50,100,400) res<-cbind(models=paste("model",1:50),modelscores,summarize.pomics(modelscores)) res[order(modelscores),]