Considering that you ran this in R
> madad(cbct.pr.sa)
> summary(fit.cbct.pr.sa.Metodo)
> summary(cbct.pr.sa$Metodo)
> fit.cbct.pr.sa.Metodo <- reitsma(cbct.pr.sa, + formula = cbind(tsens, tfpr) ~ Metodo)
Your code seems to have several problems:
In the first line you do not assign the result of the function to any object. So, then the summary will not work.
The order of execution seems strange, you ask for summary
of an object that is created later.
See if that works:
summary(cbct.pr.sa$Metodo)
fit.cbct.pr.sa.Metodo <- reitsma(cbct.pr.sa, formula = cbind(tsens, tfpr) ~ Metodo)
summary(fit.cbct.pr.sa.Metodo)
I was unable to identify the purpose of madad(cbct.pr.sa)
in your code.
There is no limit of fits
that can be created.