Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
iagogv3 authored Dec 11, 2019
1 parent ecce616 commit bfc330c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion intro_Rmd.html
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,17 @@ <h3>Gráfico de puntos</h3>
ggplot(SW, aes(x = mass, y = height, colour = gender, fill = gender, size=birth_year, alpha = 0.5)) +
geom_point(shape=23)

ggplot(BD, aes(x=nombre,y=edad)) + geom_point() + theme(axis.text.x = element_text(angle = 10))</code></pre>
ggplot(BD, aes(x=nombre,y=edad)) + geom_point() + theme(axis.text.x = element_text(angle = 10))

ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars), colour = factor(cyl))) +
geom_point() +
geom_text()

library(ggrepel)

ggplot(mtcars, aes(wt, mpg, label = rownames(mtcars), colour = factor(cyl))) +
geom_point() +
geom_text_repel()</code></pre>
</div>
<div id="gráfico-de-histogramas" class="section level3">
<h3>Gráfico de histogramas</h3>
Expand Down
Binary file modified intro_Rmdtopdf.pdf
Binary file not shown.

0 comments on commit bfc330c

Please sign in to comment.