我想将图像用作.dot
嵌入到Rmarkdown
项目中的程序中的节点。我不知道如何使用DiagrammeR
. 节点和类似 HTML 的标签似乎可以工作,只是IMG
属性不行。
到目前为止,以下是我的代码:
digraph structs {
struct1 [shape=none, label=
<<TABLE BORDER=\"0\" CELLBORDER=\"1\" CELLSPACING=\"0\" POINT-SIZE=\"8\">
<TR>
<TD ROWPAN=\"2\">
<FONT POINT-SIZE=\"16\">
Car
</FONT>
</TD>
</TR>
<TR>
<TD></TD>
</TR>
<TR>
<TD>
<FONT POINT-SIZE=\"10\">
Engine Size
</FONT>
</TD>
</TR>
<TR>
<TD>
<FONT POINT-SIZE=\"10\">
Paint Job
</FONT>
</TD>
</TR>
<TR>
<TD></TD>
</TR>
<TR>
<TD>
<FONT POINT-SIZE=\"10\">
AutoDrive ()
</FONT>
</TD>
</TR>
</TABLE>>
];
car1 [shape=none, label=\"\", image=\"../resources/images/car-clip-art.png\"];
<-- This doesn't work either. And this comment is *not* in the program -->
car1 [label=
<<TABLE>
<TR>
<TD>
<IMG SCALE=\"FALSE\" SRC=\"../resources/images/car-clip-art.png\"/>
</TD>
</TR>
</TABLE>>
];
struct1->car1
}
这是输出图像:
如何让图像显示在输出中?