Created
July 27, 2017 10:40
-
-
Save lemenkov/be288dc17872cbb366eb192e02b85e50 to your computer and use it in GitHub Desktop.
Read CSV with R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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