I have not used R in a while, and I forgot how to do this. I am outputting about 5000 values separated by commas. I would like to import them into R and plot them just so I can see the way they are distributed.
File:
1,2,3,4,5,6,7,8,9,0,
Code:
x <- read.csv("output.csv", header=f, sep=",")
plot(x, axes=false, xlab="", ylab="")
When I do this I get the following error:
Error in pairs.default(data.matrix(x), ...) : object 'false' not found
What is the best way to get this result?
Hy
This is my solution:
Here is the numbers in your file (numbers.csv):