Displaying 1 result from an estimated 1 matches for "braeburn".
2003 Nov 24
2
1.8.1 and subsetting dataframes
...F, sep = "\t", row.names = F)
Browse[1]> mod.df <- read.table("mod.tmp", T, sep = "\t")
Browse[1]> is.array(mod.df)
[1] FALSE
Browse[1]> object.size(mod.df)
[1] 16164
Browse[1]> mod.df[1:5,]
Site System Cultivar Type CFU
1 Canterbury ifp braeburn fruit 388
2 Canterbury ifp braeburn fruit 920
3 Canterbury ifp braeburn fruit 868
4 Canterbury ifp braeburn fruit 328
5 Canterbury ifp braeburn fruit 656
The size of the object using R-1.8.0 (which had no subsetting
problems) was
Browse[1]> object.size(mod.df)
[1] 21160
I suspec...