Displaying 1 result from an estimated 1 matches for "nserr".
Did you mean:
serr
2012 Nov 19
5
help on matrix column removal based on another matrix results
...]) # remove column 1 from analysis
> Vobs <- read.csv("Observed_Flow.csv", header = TRUE, sep =",")
> Vobs <- as.matrix(Vobs[,-1]) # remove column 1 from analysis
> NSEr <- NSEr(Vobs,Vsim);
> write.table(NSEr, "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...