Re: [R] qgraph: how to create legend (scale) for edge thickness?

2013-08-01 Thread Sacha Epskamp
size=12,gray=TRUE,layout="circular",filetype="pdf",width=5,height=5,vsize=11,label.prop=1.2,arrows=FALSE,border.color=c("red","red","blue","green","purple"),border.width=4,maximum=1.4,cut=0.0001) # Add legend: legend("topright

Re: [R] Creating DAGS with plate notation in R

2013-08-01 Thread Sacha Epskamp
# Add labels: text(3.1, 1.9, "M") text(3.5, 1.5, "N") dev.off() --- Sacha Epskamp, MSc Department of Psychological Methods University of Amsterdam Weesperplein 4, room 2.05 1018 XA Amsterdam The Netherlands http://www.sachaepskamp.com 2013/7/2 Raghu Naik > The image did

Re: [R] qgraph: correlation matrix variable names

2013-04-08 Thread Sacha Epskamp
labels argument in qgraph to give a vector with a label for each variable. Best, Sacha --- Sacha Epskamp, MSc Department of Psychological Methods University of Amsterdam Weesperplein 4, room 2.05 1018 XA Amsterdam The Netherlands http://www.sachaepskamp.com 2013/4/8 Torvon : > We aim to visual

Re: [R] Retrieving samples when ussing BRugs.

2011-12-09 Thread Sacha Epskamp
If you obtain an output object with openbugs(), e.g.: samples <- openbugs( ... ) Then this is a list with all the parameters and samples. See names(samples). You can obtain the samples in a list with: samples[['sims.list']] Is this what you mean? On Fri, Dec 9, 2011 at 2:00 PM, Thiago Guerrera