SachaEpskamp / qgraph

Developmental version of qgraph
GNU General Public License v2.0
68 stars 21 forks source link

using argument res leads to incorrect warning #19

Closed danielruss closed 5 years ago

danielruss commented 5 years ago

Here is a simple example

mat <- matrix(c(0,1,1,0,0,1,0,0,0),ncol=3,byrow = T)
qgraph(mat,filetype="png", filename="simplenet.png",height = 7, width = 10, res=100)
Output stored in /Users/druss/SingleCell/pipeline/simplenet.png
Warning message:
In qgraph(mat, filetype = "png", filename = "simplenet", height = 7,  :
  The following arguments are not documented and likely not arguments of qgraph and thus ignored: res

I believe all you have to do is add "res" to the allArgs on line 257. Thank you, Daniel

SachaEpskamp commented 5 years ago

Thanks!