Displaying 1 result from an estimated 1 matches for "nser_normalized".
2012 Nov 19
5
help on matrix column removal based on another matrix results
...m and compute the quantiles
> NSEr <- NSEr[NSEr > 0.6]
> write.table(NSEr, "NSEr_great_0.6.csv", sep =",")
> NSEr <- NSEr - 0.6
> write.table(NSEr, "NSEr_minus0.6.csv", sep =",")
> NSEr <- NSEr/sum(NSEr)
> write.table(NSEr, "NSEr_normalized.csv", sep =",")
> #NSEr = sum(NSEr)
> limits <- apply(Vsim, 1, "wtd.quantile", weights = NSEr, probs =
> c(0.05,0.95), normwt=F)
--
View this message in context: http://r.789695.n4.nabble.com/help-on-matrix-column-removal-based-on-another-matrix-results-tp46...