I am trying to call the summary function of a model created by the lme function in the nlme package. code and data below.
It comes up with the follwing error "call to standardGeneric("summary") apparently not from the body of that generic function"
diss <- read.csv("C:/Users/bikash.deb/Desktop/Will's Diss.csv")
library(nlme)
time <- factor(diss$protocol)
lmeforce <- lme(force ~ diss$time, data=diss, random = ~ 1|repeatedmeasure)
summary(lmeforce)
repeatedmeasure protocol force
freddie1 1 1500
freddie2 1 1600
ben1 1 1100
ben2 1 1200
appreciate the help
cheers,
Bikash