Displaying 2 results from an estimated 2 matches for "ctmin".
Did you mean:
cmin
2018 Feb 15
1
RV: Problem_graphic
Hi everyone,
I am beginner using R but I try to learn more.
I need this graphic or similar but instead of tropical and temperate are three ontogenetic states
Larva Met Juv
CTMAX
CTMIN
SP SP SP
This is my scrip:
Ex = subset(Expr, Outlayer=="N")
Ex2 = subset (Ex, S0 == 1)
Ex3 = subset(Ex2, Experimento == "CTMIN")
Ex4 = subset(Ex2, Experimento == "CTMAX")
Ex3$Stage <- ordered(Ex3$Stage,...
2011 Oct 24
1
bestglm function and output in R
..."output" it gave me
was "NULL" and that's it. Below is my code:
bestglmtest<-read.table("C:\\Documents and
Settings\\clyons\\Desktop\\bestglmtest.txt",header=T,row.names=1)
> names(bestglmtest)
[1] "acc" "age" "sex" "ctmin"
> library(bestglm)
> output<-bestglm(bestglmtest,IC="AIC",family=gaussian(link=identity))
Morgan-Tatar search since family is non-gaussian.
> bestglmtest$BestModel$coefficients
NULL
I believ my data is Gaussian so don't get the Morgan-Tatar search
"error/warnin...