Displaying 1 result from an estimated 1 matches for "weblong".
Did you mean:
weblog
2006 Jul 05
1
read.table() errors with tab as separator (PR#9061)
...ook's distance\t152"
[2] "1019\tlinear model (lm)! Cook's distance\t177"
[3] "1048\tlinear model (lm)! Cook's distance\t183"
[4] "1082\tlinear model (lm)! Cook's distance\t187"
[5] "1220\tlinear model (lm)! Cook's distance\t214"
> weblong <- "http://www.maths.anu.edu.au/~johnm/testfiles/long.txt"
> webshort <- "http://www.maths.anu.edu.au/~johnm/testfiles/short.txt"
> xyLong <- read.table(url(weblong), sep="\t")
> dim(xyLong) # Should be 1821 x 2
[1] 1569 2
> xyShort <-...