html, PDF, and ipynb available for R markdown

This commit is contained in:
yueguoguo 2017-02-17 10:13:46 +08:00
Родитель d86a709a9f
Коммит 11f619cb22
4 изменённых файлов: 306 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,48 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"---\n",
"title: \"Sample Markdown\"\n",
"author: \"Data Scientist, Organization\"\n",
"date: '`r Sys.Date()`'\n",
"output:\n",
" html_notebook: default\n",
"---\n",
"\n",
"This is a sample R markdown of an R accelerator. More infomation about acceleratoRs can be found [here](https://github.com/Microsoft/acceleratoRs).\n",
"\n",
"## 1 Introduction"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"print(\"Hello World!\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"library(ggplot2)\n",
"\n",
"ggplot(data=iris) +\n",
" geom_point(aes(x=Petal.Length, y=Petal.Width, color=Species)) +\n",
" xlab(\"Length of Petal\") +\n",
" ylab(\"Width of Petal\") +\n",
" theme_bw()"
]
}
],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 1
}

Просмотреть файл

@ -6,8 +6,20 @@ output:
html_notebook: default
---
This is a sample R markdown of an R accelerator. More infomation about acceleratoRs can be found [here](https://github.com/Microsoft/acceleratoRs).
## 1 Introduction
```{r}
print("Hello World!")
```
```{r}
library(ggplot2)
ggplot(data=iris) +
geom_point(aes(x=Petal.Length, y=Petal.Width, color=Species)) +
xlab("Length of Petal") +
ylab("Width of Petal") +
theme_bw()
```

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Двоичные данные
GeneralTemplate/Code/SampleMarkdown.pdf Normal file

Двоичный файл не отображается.