Displaying 3 results from an estimated 3 matches for "growth_rat".
Did you mean:
growth_rate
2014 Mar 05
1
[PATCH] Code coverage support proof of concept
...rg
+% Copyright 1995-2010 R Core Team
+% Distributed under GPL 2 or later
+
+\name{Rcov_start}
+\alias{Rcov_start}
+\title{Start Code Coverage analysis of R's Execution}
+\description{
+ Start Code Coverage analysis of the execution of \R expressions.
+}
+\usage{
+Rcov_start(nb_lines = 10000L, growth_rate = 2)
+}
+\arguments{
+ \item{nb_lines}{
+ Initial max number of lines per source file.
+ }
+ \item{growth_rate}{
+ growth factor of the line numbers vectors per filename.
+ If a reached line number L is greater than nb_lines, the vector will
+ be reallocated with provisional size...
2012 Aug 22
2
AIC for GAM models
...se variable - using GAM and GAMM models,
and 4 covariates: mean size, mean capture year, growth interval, having
tumors vs. not
The models work fine, and fit the data well, however when I try to compare
models using AIC I cannot get an AIC value.
This is the code for the gam model:
>model1=gam(growth_rate~s(sampling_year)+s(growth_interval)+s(mean_SCL)+FP_status,family=quasi(link=identity),method="REML")
> AIC(model1)
[1] NA
or:
> model2=gam(growth_rate~s(sampling_year)+s(mean_SCL),family=quasi(link=identity),method="REML")
> AIC(model1,model2)
df AIC
mod...
2009 Jan 02
1
Time series | average
...t; of each player A so if player
scored on day X 3 goals and on day X+1 6 goals then her grow rate is 100% ..
If she did not score on day X then maybe we set a default scoring value of 1
on day X .. I am looking for ways to deal with that.
Finally I have another data set with 2 columns
player_name|growth_rate|year|day , I would like to compute the average
growth rate from day X to X-1, from day X to X-2, from day X to X-3 .. etc
Does anyone know a package that will enable me to complete these tasks
easily?
Thank you for your time.
[[alternative HTML version deleted]]