calculateDirectionalVariograms {AFM} | R Documentation |
calculate four experimental directional variograms of an AFMImage
with the variogram
function of the gstat package.
The directional semi-variogram can be used to check the isotropy of the sample.
Note: The sample will be isotropic if the slopes of the four variograms are similar.
calculateDirectionalVariograms(AFMImageVariogramAnalysis, AFMImage)
AFMImageVariogramAnalysis |
an |
AFMImage |
an |
calculateDirectionalVariograms
returns the directional variograms
Four directional variograms
M.Beauvais
## Not run:
library(AFM)
library(ggplot2)
data(AFMImageOfRegularPeaks)
variogramAnalysis<-AFMImageVariogramAnalysis(sampleFitPercentage=3.43/100)
varios<-AFM::calculateDirectionalVariograms(AFMImage= AFMImageOfRegularPeaks,
AFMImageVariogramAnalysis= variogramAnalysis)
dist<-gamma<-NULL
p <- ggplot(varios, aes(x=dist, y=gamma,
color= as.factor(dir.hor),
shape=as.factor(dir.hor)))
p <- p + expand_limits(y = 0)
p <- p + geom_point()
p <- p + geom_line()
p <- p + ylab("semivariance (nm^2)")
p <- p + xlab("distance (nm)")
p <- p + ggtitle("Directional")
p
## End(Not run)