R Markdown 문서를 html로 편직 할 때 'nPlot'으로 만든 rChart를 렌더링 할 때 문제가 있습니다.R Markdown의 rChart가 렌더링되지 않습니다
이 내용은이 question에서 논의 된 솔루션을 따르지만 성공하지 못했습니다.
여기 여기 내 .Rmd 코드
```{r, echo=FALSE}
library(knitr)
```
---
title: "Untitled"
author: "Test"
date: "01/23/2015"
output: html_document
---
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
```{r}
summary(cars)
```
You can also embed plots, for example:
```{r, echo=FALSE}
plot(cars)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
# Here is an rChart
```{r, echo=FALSE, results='asis', comment=NA}
library(rCharts)
m2 <- nPlot(speed ~ dist, data = cars, type = "scatterChart")
m2$show('iframesrc', cdn = TRUE)
```
That was an rChart
입니다 코드에서 HTML 문서에 link입니다. RStudio에서 이것을 제작하고 저술했는데 Dropbox에 업로드 할 때 렌더링이 내 로컬 컴퓨터에 나타나지 않습니다.
콘솔에서 다음 코드를 실행하여 html로 저장하면 this rendering이됩니다.
library(rCharts)
m2 <- nPlot(speed ~ dist, data = cars, type = "scatterChart")
m2$save('test3.html', standalone = TRUE)
나는 그 제안 중 하나가 성공하지 못했을 까봐 두려워. – user3334472
어 ... 미안. 네가하는 똑같은 문제가있어.위의 코드는 모든 예제/walkthrough와 동일하게 보이지만, 파고들 수 있습니다.하지만 그냥 비어 있습니다. 내가 중요하다면 나는 크롬을 사용하는 윈도우 박스 위에있다. – colemand77
@ user3334472, 위 참조. 우리는 만료 된 자습서를보고있었습니다. – colemand77