9

我正在尝试找到一种方法来直接在 R 中重新创建这样的图形(而不是在我在 R 中完成分析后用 Inkscape 手动绘制它们):

流水线 1流水线 2

第一个似乎应该是直截了当的,但是我找不到任何适合我需要的东西……第二个要复杂得多,但似乎也应该可行。

这篇文章从状态转换的图表流程图让我非常接近(它已经有点棒了,除了我不一定有一个方阵,我想为我的线指定一个开始/结束位置来控制厚度和阿尔法基于我自己的数据)...

是否可以使用 ggplot (或者其他类似 lattice 的东西,如果它看起来不错)来做到这一点?

4

1 回答 1

11

这是一个使用基本图形从左图开始的示例(如果您想使用网格图形也有 xspline 函数,我不知道如何将它们与 ggplot2 合并,但 lattice 可能不会太难的):

plot.new()
par(mar=c(0,0,0,0)+.1)
plot.window(xlim=c(0,3), ylim=c(0,8))
xspline( c(1,1.25,1.75,2), c(7,7,4,4), s=1, lwd=32.8/4.5, border="#0000ff88", lend=1)
xspline( c(1,1.25,1.75,2), c(6,6,4,4), s=1, lwd=19.7/4.5, border="#0000ff88", lend=1 )
xspline( c(1,1.25,1.75,2), c(5,5,4,4), s=1, lwd=16.5/4.5, border="#0000ff88", lend=1 )
xspline( c(1,1.25,1.75,2), c(4,4,4,4), s=1, lwd=13.8/4.5, border="#0000ff88", lend=1 )
xspline( c(1,1.25,1.75,2), c(3,3,4,4), s=1, lwd= 7.9/4.5, border="#0000ff88", lend=1 )
xspline( c(1,1.25,1.75,2), c(2,2,4,4), s=1, lwd= 4.8/4.5, border="#0000ff88", lend=1 )
xspline( c(1,1.25,1.75,2), c(1,1,4,4), s=1, lwd= 4.5/4.5, border="#0000ff88", lend=1 )

text( rep(0.75, 7), 7:1, LETTERS[1:7] )
text( 2.25, 4, 'Tie strength')

在此处输入图像描述

还有一些使用不同方法的正确图表的起始代码:

plot.new()
par(mar=rep(0.1,4))
plot.window(xlim=c(0,7), ylim=c(-1,7))
text( 3+0.05, 0:6, 0:6, adj=0 )
text( 4-0.05, 0:6, 0:6, adj=1 )
lines( c(3,3),c(0-strheight("0"), 6+strheight("6")) )
lines( c(4,4),c(0-strheight("0"), 6+strheight("6")) )

xspline( c(3,1,3), c(0,3,6), s= -1, lwd=1, border="#00ff0055", lend=1 )
xspline( c(3,1.25,3), c(0,2.5,5), s= -1, lwd=4, border="#00ff0055", lend=1 )
xspline( c(4,4.5,4), c(5,5.5,6), s= -1, lwd=5, border="#ff000055", lend=1 )

在此处输入图像描述

您可以修改控制点、颜色等,以更接近您想要的。然后可以将许多部分包装成一个函数来自动化一些放置。

于 2014-06-11T21:34:20.747 回答