sampleAFMImage {AFM} | R Documentation |
Random selection of heights to keep in an AFMImage
.
This function can be used to calculate quickly an approximated variogram of a large image.
sampleAFMImage(AFMImage, percentage)
AFMImage |
an |
percentage |
percentage of heights to keep |
sampleAFMImage
returns a sample of the AFMImage to boost calculation time of variogram
a sample of an AFMImage
M.Beauvais
## Not run:
library(AFM)
library(ggplot2)
data(AFMImageOfAluminiumInterface)
anAFMImageSample<-sampleAFMImage(AFMImageOfAluminiumInterface,15)
variogramAnalysis<-AFMImageVariogramAnalysis(sampleFitPercentage=3.43)
avario<-AFM::calculateOmnidirectionalVariogram(AFMImage= anAFMImageSample,
AFMImageVariogramAnalysis= variogramAnalysis)
dist<-gamma<-NULL
p1 <- ggplot(avario, aes(x=dist, y=gamma))
p1 <- p1 + geom_point()
p1 <- p1 + geom_line()
p1 <- p1 + ylab("semivariance")
p1 <- p1 + xlab("distance (nm)")
p1 <- p1 + ggtitle("Approximation of variogram thanks to sampling")
p1
## End(Not run)