私はマークダウンプレゼンテーションを作成しており、ライブラリdata.treeを使ってグラフを生成しています。私はプレゼンテーションを生成するとき、私はこのエラーを取得するHTMLからの画像をMarkdownプレゼンテーションに組み込む
Error: Functions that produce HTML output found in document targeting beamer output.
Please change the output type of this document to HTML. Alternatively, you can allow
HTML output in non-HTML formats by adding this option to the YAML front-matter of
your rmarkdown file:
always_allow_html: yes
Note however that the HTML output will not be visible in non-HTML formats.
私はalways_allow_html含まれている場合:はい、私はちょうど私のコードチャンクのテキスト出力を取得し、エラーのように述べています。
data.treeを使用してグラフィックスを生成し、それをMarkdownプレゼンテーションに表示させるにはどうすればよいですか?
これは基本的に私のコードがどのように見えるかです。私はノードを変更/削除して見やすくしました。
----
output: beamer_presentation
---
```{r}
library(data.tree)
Parent = Node$new("Parent Node")
Child = Parent$AddChild("Child Node")
SetNodeStyle(Tree, fontsize = "24")
plot(Parent)
```
また、htmlを保存してローカルディレクトリから読み込むことも考えましたが、その方法を見つけることができませんでした。
編集:私はこの投稿の問題を修正できるので、投票を説明できますか?私はそれが些細な答えだとは思わない。私はGoogleを介して同様の投稿や回答を見つけられませんでした。このコード
library(data.tree)
Parent = Node$new("Parent Node")
Child = Parent$AddChild("Child Node")
SetNodeStyle(Tree, fontsize = "24")
plot(Tree)
が実行されないので、
コードによく似ています。私はこの記事のために簡単に作っていたときにそれを乱したに違いない。応答していただきありがとうございます。それはうまくいった。 – Kristofersen