search for: fdiet

Displaying 4 results from an estimated 4 matches for "fdiet".

Did you mean: diet
2016 Apr 26
0
From NUM to INT
...#Import data: > > qPCR <- read.delim(file.choose(), > header = TRUE, > dec = ".") > > ##Load package > > library(lme4) > > ##Other steps: > > qPCR$obs <- 1:nrow(qPCR) > qPCR$fID<-as.factor(qPCR$ID) > qPCR$fDiet<-as.factor(qPCR$Diet) > > ##Run the model: > > M1 <- glmer (Baci ~ fDiet + Crossover + (1|fID:Crossover) + (1|obs), > family = poisson, data=qPCR) > > > > Andre > > > > On Tue, Apr 26, 2016 at 2:36 PM, jim holtman <jholtman at gmail.com&g...
2016 Apr 26
2
From NUM to INT
...below. Thanks. --------------------------------------------- ##Import data: qPCR <- read.delim(file.choose(), header = TRUE, dec = ".") ##Load package library(lme4) ##Other steps: qPCR$obs <- 1:nrow(qPCR) qPCR$fID<-as.factor(qPCR$ID) qPCR$fDiet<-as.factor(qPCR$Diet) ##Run the model: M1 <- glmer (Baci ~ fDiet + Crossover + (1|fID:Crossover) + (1|obs), family = poisson, data=qPCR) Andre On Tue, Apr 26, 2016 at 2:36 PM, jim holtman <jholtman at gmail.com> wrote: > Can you explain why you need them as '...
2016 Apr 26
0
From NUM to INT
Can you explain why you need them as 'integer', A floating point representation can hold a value upto ~4.5e15 as an "integer" keeping the precision that you might need. Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me what you want to do, not how you want to do it. On Tue, Apr 26, 2016 at 1:11 PM, Andr? Luis Neves <andrluis at
2016 Apr 26
5
From NUM to INT
Dear all: I converted the columns (Baci, Meti, Fungii, Protozoai) into integers (using excel) and then imported the data (.txt) into R. Interestingly, the other three variables were loaded as INT, but the 'Baci' one continued as Num. I imported the data using the following command line: X <- read.delim(file.choose(), header = TRUE, dec =