Skip to content

Commit b2f4461

Browse files
committed
Prueba-rmd con pdf y html
1 parent 768ee11 commit b2f4461

3 files changed

Lines changed: 1741 additions & 0 deletions

File tree

prueba-rmd.Rmd

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "Prueba-rmd"
3+
author: "Frank Casanova"
4+
date: "29/3/2020"
5+
output:
6+
html_document:
7+
df_print: paged
8+
---
9+
10+
```{r setup, include=FALSE}
11+
knitr::opts_chunk$set(echo = TRUE)
12+
```
13+
14+
## R Markdown
15+
16+
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>.
17+
18+
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:
19+
20+
```{r cars}
21+
summary(cars)
22+
```
23+
24+
## Including Plots
25+
26+
You can also embed plots, for example:
27+
28+
```{r pressure, echo=FALSE}
29+
plot(pressure)
30+
```
31+
32+
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.

0 commit comments

Comments
 (0)