Skip to content

Instantly share code, notes, and snippets.

@gonzalezgouveia
Last active February 5, 2019 19:53
Show Gist options
  • Save gonzalezgouveia/f4aca555c1627152474def0eabb2f4b2 to your computer and use it in GitHub Desktop.
Save gonzalezgouveia/f4aca555c1627152474def0eabb2f4b2 to your computer and use it in GitHub Desktop.
cleaned plot
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