Skip to content

Barilac/gedaw

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
  
}