Whereas you spun it on 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 function result to any object. Therefore, after Summary will not work.
The execution order seems strange, you ask the summary
of an object that is created after.
See if it works that way:
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 couldn’t identify the purpose of the madad(cbct.pr.sa)
in your code.
There is no limit to fits
that can be created.
Could you put the code you’re running? It’ll be easier to help.
– Daniel Falbel
A sequência que estava usando é essa: > 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) ~ Method) but now already in the second row gives the object error not found even with the file that previously ran the test correctly.
– Fernanda Salineiro