-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreando-rmarkdown.Rmd
64 lines (50 loc) · 1.25 KB
/
creando-rmarkdown.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: "Prueba_tutorial"
author: "Alan Pardo"
date: "9/7/2021"
output:
pdf_document:
toc: yes
toc_depth: '2'
html_document:
toc: yes
toc_depth: 2
lang: es-Es
---
# Titulo de primer nivel
## Titulo de segundo nivel
### Titulo de tercer nivel
*texto en cursiva*
**texto en negrita**
***texto en negrita y cursiva***
[Maxima Formacion](https://maximaformacion.es)
![knit en rmarkdown](captura/Alan Pardo.jpg)
La ecuación sería $e = mc^{2}$
```{r}
data(iris)
head(iris)
```
```{r echo=FALSE}
#si quisiera mostrar el resultado pero NO el codigo
plot(iris$Sepal.Length, iris$Sepal.Width)
```
```{r eval=FALSE}
#si quisiera mostrar el codigo pero NO el resultado
plot(iris$Sepal.Length, iris$Sepal.Width)
```
```{r warning=FALSE}
#cuando NO queremos que aparezcan los warnings en el markdown
data("HairEyeColor")
HairEyeColor
chisq.test(HairEyeColor[,,2])
```
```{r message=FALSE, warning=FALSE}
#si queremos que en los resultados no se muestren mensajes (e.g. cuando cargamos alguna library)
library(AlphaSimR)
```
Cuidado con el nombre de las variables!
```{r error=TRUE, warning=FALSE}
library(ggplot2)
data("iris")
ggplot(iris, aes(Sepal.Width, Sepal.Legth))+ geom_point()
```