Displaying 4 results from an estimated 4 matches for "growthrat".
Did you mean:
growthrate
2016 Apr 20
2
simulation in R
Hi R user,
Would you mind to help me to find the range with stochastic events? For example,
daT<-structure(list(sn = 1:14, growthrate = c(0.5, 0.6, 0.7, 0.99,
0.1, 0.3, 0.4, 0.5, 0.5, 0.2, 0.1, 0.4, 0.3, 0.43)), .Names = c("sn",
"growthrate"), class = "data.frame", row.names = c(NA, -14L))
I want to find the ranges of growth rate of the above data using Mote corle simulation (9999 times) under thre...
2016 Apr 20
0
simulation in R
...t;r-help-bounces at r-project.org> on behalf of Kristi Glover <kristi.glover at hotmail.com>
Sent: April 19, 2016 11:48 PM
To: R-help
Subject: [R] simulation in R
Hi R user,
Would you mind to help me to find the range with stochastic events? For example,
daT<-structure(list(sn = 1:14, growthrate = c(0.5, 0.6, 0.7, 0.99,
0.1, 0.3, 0.4, 0.5, 0.5, 0.2, 0.1, 0.4, 0.3, 0.43)), .Names = c("sn",
"growthrate"), class = "data.frame", row.names = c(NA, -14L))
I want to find the ranges of growth rate of the above data using Mote corle simulation (9999 times) under thre...
2005 Aug 14
1
Panel data handling (lags, growth rates)
...es.
# You must supply `unitvar' which identifies the unit that's
# repeatedly observed.
# You must supply the name of the time variable `timevar'
# and you must tell the time periods Q (vector is ok) over which
# the growth rates are computed.
paneldata.growthrates <- function(X, unitvar, timevar, gvars, Q=1) {
stopifnot(length(gvars)>=1)
X <- X[order(X[,timevar]),]
makegrowths <- function(x, q) {
new <- rep(NA, length(x))
for (t in (1+q):length(x)) {
new[t] <- 100*((x[t]/x[t-q])-1)
}
return(new)
}
innerta...
2009 Mar 23
1
Syntax in lmer...
Sorry for bothering you - but I have a little problem. I`m completely
new in R and trying to use lmer. That works, but I m not sure if my code
is right, so I would just like to get an opinion from the experts.
I have a Growthrate of plants (RGR
Fixed Factors: Fertilizer, Status (alien or native plants) and their
interaction
Random Factors: Age is a covariable; than I have plantfamily and Species
nested within Family.
Now I want also to test for the interaction of Fertilizer with
plantfamily and species. Did I do this th...