【发布时间】:2018-05-01 17:25:58
【问题描述】:
我使用 flexdashboard 制作了一系列仪表板,发现它们在 Chrome 中运行良好,但在 IE 11 中无法呈现。
我为测试目的制作了一个非常简单的仪表板,但我在 IE 中得到的只是一个空白页面。如果我将输出从 flexdashboard 更改为 html_document,它会呈现正常,因此问题似乎出在 flexdashboard 而不是 R Markdown。
这是我的简单仪表板:
---
title: "Flexdashboard - Internet Explorer test"
output:
flexdashboard::flex_dashboard
---
```{r setup, include=FALSE}
# Libraries
library(flexdashboard)
library(knitr)
library(ggplot2)
```
Iris
=========================================
Row
-------------------------------------
```{r}
ggplot(data=iris, aes(x=Petal.Length, y=Petal.Width, color=Species)) + geom_point()
```
这就是我在 IE 中得到的全部内容: flexdashboard IE fail
我没有找到关于这个确切问题的其他报告,只有similar problem using ggiraph。
我让我的同事尝试在她的计算机上使用 IE 打开文件,结果是一样的。我真的很想让这个工作,因为这个组织中的一些人只允许使用 IE。
【问题讨论】:
-
也许this 会有所帮助。
标签: r internet-explorer flexdashboard