Вопрос

I have a chunk such like:

<<echo=T,comment=F,warning=FALSE,cache=FALSE,error=FALSE,message=FALSE,prompt=FALSE>>=
rm("new")
print(summary(glmer(rotams~log(epidays)+daysbirth+rotaarm+gender+epiexlbf+(1|sid),data=rtf2,family=binomial)))
@

which shows a result in PDF like:

enter image description here

Question1:

How to get rid of the prompt "FALSE"

Question2:

How to move "(1 | sid)" to the next line? it's out of page width.

Это было полезно?

Решение

About your first question,you specified that you want comment=F which changes the comment characters to FALSE. Just remove this option or set it to comment="".

About your second question, I cannot reproduce your problem.

Hope it helps,

alex

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top