作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想转换一个 rmarkdown .Rmd
文档到 jupyter 笔记本 .ipynb
.
我发现从 jupyter 转换为 rmd 很容易使用,如 reference page 中所述。但出于某种原因(...)Rstudio
团队并没有反其道而行之。
例如我想转换
---
title: "Untitled"
author: "statquant"
date: "03/09/2019"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
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 cars}
summary(cars)
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
最佳答案
检查后银弹似乎是jupytext
它允许您从/到 mardown
进行转换, rmarkdown
, python
, ipynb
, ...
这实际上可以让你有一个非常整洁的工作流程
script.R
脚本 you can spin成Rmd
文档 knitr::spin('script.R', knit = FALSE)
将其转换为 Rmd
jupytext --to notebook script.Rmd
创建 script.ipynb
关于jupyter-notebook - 如何将 Rmd 文档转换为 jupyter 笔记本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57777009/
我是一名优秀的程序员,十分优秀!