Skip to content

Instantly share code, notes, and snippets.

@lemenkov
Created July 27, 2017 10:40
Show Gist options
  • Save lemenkov/be288dc17872cbb366eb192e02b85e50 to your computer and use it in GitHub Desktop.
Save lemenkov/be288dc17872cbb366eb192e02b85e50 to your computer and use it in GitHub Desktop.
Read CSV with R
d <- read.table("test.csv", header = FALSE, sep = ",")
pie(d$V2, labels=d$V1, main="My Title")
dev.copy(png,'output.png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment