Re: [R-sig-Geo] Variogram Plot

2008-03-25 Thread ONKELINX, Thierry
nable answer can be extracted from a given body of data. ~ John Tukey -Oorspronkelijk bericht- Van: PUJAN RAJ REGMI [mailto:[EMAIL PROTECTED] Verzonden: zaterdag 22 maart 2008 10:14 Aan: ONKELINX, Thierry; David PINAUD; r-sig-geo@stat.math.ethz.ch Onderwerp: RE: [R-sig-Geo] Variogram Plot

Re: [R-sig-Geo] Variogram Plot

2008-03-22 Thread PUJAN RAJ REGMI
Dear all, I think earlier i didn't clear myself. I ahve a data set of 3 colun and 14000 rows in which first and second column is X and Y coordinates and the third column is the value of samples of each coordinates points. Now I am trying to plot semi variogram for the given sample with respect

Re: [R-sig-Geo] Variogram Plot

2008-03-19 Thread Paulo Justiniano Ribeiro Jr
Pujan geoR indeed has some restriction the way is is programed down in the C code, more or less in the direction Edzer has pointed out. This can certainly be improved but as a quick solution to run a variogram computation on 14,000 data or over you should consider raun a function grom another pac

Re: [R-sig-Geo] Variogram Plot

2008-03-19 Thread PUJAN RAJ REGMI
Dear all, I think earlier i didn't clear myself. Now i am sending my data file and the code. My data set is attached with the mail where first and second column is X and Y coordinates and the column is the value of samples. I hope this time i am able to communicate. Thanking you Pujan Cod

Re: [R-sig-Geo] Variogram Plot

2008-03-18 Thread Edzer Pebesma
ONKELINX, Thierry wrote: > > gstat on the other hand has no problem with a dataset of 14000 points. > Right; it computes all pairwise distances in a double loop, but never stores them. -- Edzer ___ R-sig-Geo mailing list R-sig-Geo@stat.math.ethz.ch h

Re: [R-sig-Geo] Variogram Plot

2008-03-18 Thread ONKELINX, Thierry
: PUJAN RAJ REGMI [mailto:[EMAIL PROTECTED] Verzonden: dinsdag 18 maart 2008 9:29 Aan: ONKELINX, Thierry; David PINAUD; r-sig-geo@stat.math.ethz.ch Onderwerp: RE: [R-sig-Geo] Variogram Plot Thank you very much for response. Here i have attached the my code below . Pls have a look and suggest me the s

Re: [R-sig-Geo] Variogram Plot

2008-03-18 Thread Edzer Pebesma
Does geoR try to store the quadratic form? > (14049 ** 2 * 8 / 2)/(1024**2) [1] 752.9236 "I am trying to plot semivarigram using the function "variog" but i am getting following error message "cannot allocate vector of size 757.6 Mb" In any case, function variogram in package gstat does not d

Re: [R-sig-Geo] Variogram Plot

2008-03-18 Thread PUJAN RAJ REGMI
Thank you very much for response. Here i have attached the my code below . Pls have a look and suggest me the solution. Thanking you in advance Yours Pujan mol.gr <- read.table(“D:/Pujan_IUPWARE/Second_Year/Thesis/mol.dat”) mol.gr[,"x"] <-mol.gr[,1] mol.gr[,"y"] <-mol.gr[,2] mol.gr[,"Green Ban

Re: [R-sig-Geo] Variogram Plot

2008-03-18 Thread ONKELINX, Thierry
2008 23:36 Aan: David PINAUD; r-sig-geo@stat.math.ethz.ch Onderwerp: [R-sig-Geo] Variogram Plot Dear all, I am trying to plot semivarigram using the function "variog" but i am getting following error message "cannot allocate vector of size 757.6 Mb" I suppose my data set s

[R-sig-Geo] Variogram Plot

2008-03-17 Thread PUJAN RAJ REGMI
Dear all, I am trying to plot semivarigram using the function "variog" but i am getting following error message "cannot allocate vector of size 757.6 Mb" I suppose my data set seems large?? it has 14090 samples. I will be thankful if anybody suggest me the alternative ways to overcome the probl