README.md

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

}



Barilac/gedaw documentation built on May 30, 2020, 9:16 p.m.