Question

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.

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top