Last active
February 5, 2019 19:53
-
-
Save gonzalezgouveia/f4aca555c1627152474def0eabb2f4b2 to your computer and use it in GitHub Desktop.
cleaned plot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set.seed(12321) | |
ggplot(sample_n(clean_data, size=1000), | |
aes(x=jitter(log_price, factor = 3), | |
y=jitter(points, factor = 3), | |
color=country)) + | |
geom_point(size=2) + | |
xlab('log(Precio)') + | |
ylab('Puntuación') + | |
ggtitle('Revisiones de vinos por país') | |
ggsave('./path/to/data/clean_wine_country.png') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment