gedaw

Geostatistical package for R

View the Project on GitHub Barilac/gedaw

Gedaw

Introduction


Now we are developing a new geostatistical package. Our package gedaw combines geophysical methods and compositional data.

Data types


There are several types of data

Data name Data type Form of measurements
GPR data frame slices
Content Cell Content Cell  



Lines of code


dftomat = function (a, x=1, y=2, v=3) 
{
  
  a.res=matrix(NA, nrow=length(unique(a[,x])), ncol=length(unique(a[,y])))
  for (i in 1:dim(a)[1])
 {
  a.res[a[i,x],a[i,y]]=a[i,v]
 }
  
  a.res
  
}