Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 639 Bytes

README.md

File metadata and controls

40 lines (28 loc) · 639 Bytes

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
  
}