Displaying 1 result from an estimated 1 matches for "cropres".
Did you mean:
propres
2012 Jul 05
2
7 days confusion over lists
...t file going in the following code:
#--Initialising the lists to store variable values
tmp <- init_lists()
Param <- tmp[[1]]
Crop1 <- tmp[[2]]
Fert <- tmp[[3]]
Meteo <- tmp[[4]]
Soil <- tmp[[5]]
RainPattern <- tmp[[6]]
Crop2 <- tmp[[7]]
Cropres <- tmp[[8]]
rm(tmp)
The problem here is that the lists get confused with each other; that is
elements of Soil appear in Crop2. In the run file, I changed the order of
the lists (for example Fert <- tmp[[5]] and Crop2 <-tmp[[3]]) and it changes
which ones are confused with what; with...