マークダウンでフレックスダッシュボードテンプレートで光沢を実行します。タブに画像を挿入したいのですが、常に表示されます
Warning in normalizePath(path.expand(path), winslash, mustWork) :
path[1]="figure-html/unnamed-chunk-8-1.mb.png": The system cannot find the path specified
ダッシュボードの出力には何も表示されません。以前にこの問題に遭遇した人はいますか?
画像を挿入したいだけで、グラフなどの他のコーディングがない場合は、機能します
---
title: "Untitled"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
runtime: shiny
---
```{r setup, include=FALSE}
library(flexdashboard)
library(shiny)
```
Column {data-width=350}
-----------------------------------------------------------------------
![alt](/Users/abc/Desktop/cluster.png)
他のグラフに他のコードを追加すると、たとえば、ダッシュボードには何も表示されませんが、挿入画像部分を削除すると、ダッシュボードは完璧です
Column {data-width=500}
-----------------------------------------------------------------------
### Data
```{r}
DT::datatable(table_fm, options = list(pageLength = 10))
```
Column {data-width=350}
-----------------------------------------------------------------------
![alt](/Users/abc/Desktop/cluster.png)