Displaying 1 result from an estimated 1 matches for "poblacionciervos".
2011 Aug 13
1
Own R function doubt
...R6,T6,P7,R7,M7,T8,
P8,R8,M8,T9,P9,R9,M9,T10,P10,R10,M10)
return(result)
}
library(memisc)
Gestion<-as.data.frame(Simulate(Ciervos(K1, K0, A, R,M,Pi,Hembras),
expand.grid(K1=c(420,580),K0=c(300,600),A=3,R=0.4,M=0.1,Pi=420,Hembras=0.5),nsim=1,seed=10000))
xls.getshlib()
write.xls(Gestion, "PoblacionCiervos.xls")
All is fine with the function, by the results (the parameters from B to M10)
are collected in excel by the column names "result 1", "result 2", etc, and
I wish to collect the results with their proper name (B instead of result 1;
T1 instead of result 2, etc).
I will...