我可以将下面的 fontsize 参数更改为graph [fontsize = 1]
or graph [fontsize = 10]
or graph [fontsize = 100]
,并且我的 R Studio 查看器中的输出是相同的。看起来字体默认为填充它所占据的节点的合理大小。如何更改字体大小?
library(DiagrammeR)
grViz("
digraph test {
graph [fontsize = 10]
node [shape = box]
A [label = 'FooBar']
B [label = 'BarFoo']
A -> B
}
")