我希望向节点添加标签,主标签的字体大小为X,子标签的字体大小为X * 0.5。子标签需要具有数字格式,其中87650显示为87,650。
这在DiagrammeR中可行吗?
我的数字子标签数据来自数据框。
library(DiagrammeR)
grViz("
digraph test {
graph []
node [shape = box]
A [label = '@@1']
B [label = 'BarFoo']
A -> B
}
[1]: paste0('Main Heading \\n', sum(iris$Sepal.Length)*100)
")
1条答案
按热度按时间4xrmg8kj1#
我会使用***format()***先处理数字,然后再调用结果。
请运行下面的示例代码:
You should be able to see a similar outcome like this