如何用qgraph绘制接近零的值?

时间:2015-12-11 13:47:10

标签: r plot r-qgraph

如何在R?

中使用qgraph - 包绘制非常小/接近零的值
m <- matrix( data = c( 1, 0.5, 0.1, 0.01 ), ncol = 2 )

library( qgraph )
qgraph( input = m )

1 个答案:

答案 0 :(得分:1)

试用cut参数。您的小值可能存在,它们很难看到。指定cut会调整饱和度宽度,使得切割点上方的所有内容都具有最强的颜色强度,并且下面的所有内容都会越远离切割点越来越弱。通过使其接近0,将使用比其他情况更饱和的颜色绘制接近0的值。

qgraph(input=m,cut=0.05)

enter image description here