Skip to content

Commit bfc330c

Browse files
authored
Add files via upload
1 parent ecce616 commit bfc330c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

intro_Rmd.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,17 @@ <h3>Gráfico de puntos</h3>
12101210
ggplot(SW, aes(x = mass, y = height, colour = gender, fill = gender, size=birth_year, alpha = 0.5)) +
12111211
geom_point(shape=23)
12121212

1213-
ggplot(BD, aes(x=nombre,y=edad)) + geom_point() + theme(axis.text.x = element_text(angle = 10))</code></pre>
1213+
ggplot(BD, aes(x=nombre,y=edad)) + geom_point() + theme(axis.text.x = element_text(angle = 10))
1214+
1215+
ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars), colour = factor(cyl))) +
1216+
geom_point() +
1217+
geom_text()
1218+
1219+
library(ggrepel)
1220+
1221+
ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars), colour = factor(cyl))) +
1222+
geom_point() +
1223+
geom_text_repel()</code></pre>
12141224
</div>
12151225
<div id="gráfico-de-histogramas" class="section level3">
12161226
<h3>Gráfico de histogramas</h3>

intro_Rmdtopdf.pdf

416 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)