Iam a passionate Statistics from Piura - Perú.
¡Revisa mi contenido 👇!
I'm a statistics who is passionate about making contributing to open-source more approachable, creating technology to elevate people, and building community. Some technologies I enjoy working with include R, Jupyter, Data Studio and SPSS.
- 🔭 I’m currently working on ...
- 🌱 I’m currently learning:
- 👯 I’m looking to collaborate on:
- 💬 Ask me about ...
- 😄 Pronouns: Camilo
- ⚡ Fun fact: I'm a huge fan of DBZ, Doraemon, I love to eat and travel. 💯
Code 📈 💻
# Codigo R
library(ggplot2)
library(gridExtra)
p1 <- ggplot(diamonds, aes(cut)) + geom_bar(fill = "orange") + scale_x_discrete("Cut")
p2 <- p1 + scale_x_discrete("Cut Type", labels = c("Fair" = "F","Good" = "G", "Very Good" = "VG","Premium" = "P","Ideal" = "I"))
grid.arrange(p1, p2, ncol = 2)