Skip to content

Instantly share code, notes, and snippets.

@dgkeyes
Created April 25, 2019 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgkeyes/17caa48ff68bd1273fdaeae161b5e2e9 to your computer and use it in GitHub Desktop.
Save dgkeyes/17caa48ff68bd1273fdaeae161b5e2e9 to your computer and use it in GitHub Desktop.
scatterplot solutions
# Scatterplot
Make a scatterplot that shows weight on the x axis and height on the y axis.
```{r}
ggplot(data = nhanes,
mapping = aes(x = weight,
y = height)) +
geom_point()
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment