Skip to content

Instantly share code, notes, and snippets.

@gonzalezgouveia
Last active February 5, 2019 19:52
Show Gist options
  • Save gonzalezgouveia/233170e697877d2aee7fcafe58384ee9 to your computer and use it in GitHub Desktop.
Save gonzalezgouveia/233170e697877d2aee7fcafe58384ee9 to your computer and use it in GitHub Desktop.
wine_exploratory.R
set.seed(12321)
ggplot(sample_n(winedata, size=10000),
aes(x=price,
y=jitter(points, factor = 3),
color=country)) +
geom_point(size=2) +
xlab('Precio') +
ylab('Puntuación') +
ggtitle('Exploración por país')
ggsave('./path/to/data/all_wine_country.png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment