How to plot near zero values with qgraph?

…衆ロ難τιáo~ 提交于 2021-01-28 21:11:00

问题


How can I plot very small/near zero values with the qgraph-package in R?

m <- matrix( data = c( 1, 0.5, 0.1, 0.01 ), ncol = 2 )

library( qgraph )
qgraph( input = m )

回答1:


Experiment with the cut parameter. Your small values are likely present, they are just hard to see. Specifying cut adjusts the saturation width such that everything above the cut point have the strongest color intensity and everything below gets weaker the further it is from the cut point. By making this close to 0, the near 0 values will be plotted with more saturated colors than they would have been otherwise.

qgraph(input=m,cut=0.05)



来源:https://stackoverflow.com/questions/34225023/how-to-plot-near-zero-values-with-qgraph

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!