Displaying 1 result from an estimated 1 matches for "matrix_here".
2012 Jan 27
1
repeat function for entire list of matrices
...matrices and i want the output to be
a vector of the nested() function on each of the 10,000 matrices (so i can
use these numbers in a statistical test).
here is what i'm working with currently:
#to store 10,000 matrices of null.distr() in listofmatrices
listofmatrices <- null.distr(10000,matrix_here,distr="lognormal")
#to select nth matrix from listofmatrices
nested(listofmatrices [[n]],method="binmatnest2")
so this give me an output for that one matrix i selected. i want to
calculate the nested() value for ALL the matrices
since i have 10,000 matrices in listofmatrice...