문제

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