Displaying 1 result from an estimated 1 matches for "qsim".
Did you mean:
nsim
2012 Nov 19
5
help on matrix column removal based on another matrix results
...sim becomes numeric[42016] rather than a double matrix of 101x416.
What is the proper way to remove the columns in Vsim where the NSEr for that
column is less than 0.6? I am trying to make Vsim a double matrix of
101x416.
Thank-you again.
Below is the rest of the code in R:
> ## normalise Qsim 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, "N...