I have a data table on disk. I want to load it into R. R is using Unix-style paths even on Windows, so use forward-slashes no matter what platform you are on.
tz <- read.table("E:/time-hash/results.txt", header=FALSE)
Now I want to plot it with a basic scatter plot.
plot(tz$V1)
Now I want to plot a range of it – the first 100 samples, and limit the Y axis to the range 1.1 to 1.3.
plot(tz$V1, xlim=c(0,100), ylim=c(1.1,1,3))