Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用qgraphR 中的 -package 绘制非常小/接近零的值?
qgraph
m <- matrix( data = c( 1, 0.5, 0.1, 0.01 ), ncol = 2 ) library( qgraph ) qgraph( input = m )
试验cut参数。您的小值可能存在,它们很难看到。指定cut调整饱和度宽度,使剪切点上方的所有内容都具有最强的颜色强度,而下方的所有内容离剪切点越远越弱。通过使这个接近 0,接近 0 的值将被绘制成比其他情况下更饱和的颜色。
cut
qgraph(input=m,cut=0.05)