Skip to content

Commit

Permalink
Update intro_Rmdtopdf.Rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
iagogv3 authored Dec 11, 2019
1 parent bc16210 commit ecce616
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions intro_Rmdtopdf.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -1232,6 +1232,16 @@ 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()
```

### Gráfico de histogramas
Expand Down

0 comments on commit ecce616

Please sign in to comment.