gpt4 book ai didi

r - DiagrammeR 和 MathJax 无法在 rmarkdown 文档中正确呈现图形

转载 作者:行者123 更新时间:2023-12-05 03:32:45 26 4
gpt4 key购买 nike

我正在使用下面的 rmarkdown 示例,它没有显示符号 theta 也没有显示图形的标题,并且第一个节点太宽(见下面的输出):

---
title: "Untitled"
output: html_document
---

The example is:

```{r nnet02, echo=F, fig.cap="Multilayer"}
library(DiagrammeR)

add_mathjax(
grViz("digraph G1 {
graph [layout=neato overlap = true]
I1 [pos='1,1!' style=radial label='$\\\\theta$']
I2 [pos='2,1!' style=radial]

I1 -> I2
}", width = 550))
```

enter image description here

你能帮帮我吗?

最佳答案

据我所知,我们可以在 Unicode 中找到所有必需的符号。

(Mathjax 是多余的?)

您修改后的代码:

---
title: "Untitled"
output: html_document
---

The example is:

```{r nnet02, echo=F, fig.cap="Multilayer"}
library(DiagrammeR)


grViz("digraph G1 {
graph [layout=neato overlap = true]
I1 [pos='1,1!' style=radial label='\U03B8' fontsize=15]
I2 [pos='2,1!' style=radial fontsize=15]

I1 -> I2
}", width = 550)
```

enter image description here

有 sups 和 subs:

  ***
I1 [pos='1,1!' style=radial label= '\U03B8\U00B3' fontsize=10]
I2 [pos='2,1!' style=radial label= '\U03B8\u2085' fontsize=10]
***

enter image description here


一些额外的想法

我们可以在查看器中绘制图表(使用 MJ)。导出为图像并添加到我们的 RMarkdown。

enter image description here

关于r - DiagrammeR 和 MathJax 无法在 rmarkdown 文档中正确呈现图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70412305/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com