Displaying 1 result from an estimated 1 matches for "101x416".
Did you mean:
1010416
2012 Nov 19
5
help on matrix column removal based on another matrix results
...;NSEr.csv", sep =",")
> NSErr <- t(matrix(NSEr))
> ## select the behavioural simulations and discard the rest
> Vsim <- Vsim[NSErr > 0.6]
> write.table(Vsim, "Vsim.csv", sep =",")
**Vsim 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...