Skip to content

Instantly share code, notes, and snippets.

@black-tea
Created December 2, 2017 14:55
Show Gist options
  • Save black-tea/a005472ee7ae1024800fe1e5e54ecb81 to your computer and use it in GitHub Desktop.
Save black-tea/a005472ee7ae1024800fe1e5e54ecb81 to your computer and use it in GitHub Desktop.
code snippet to save a plot as an svg
```{r}
svg(filename="LAStreets_slope.svg",
width=15,
height=20,
pointsize=12)
plot(streets["slope"])
dev.off()
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment