generateCheckReport: Generate a check report for one AFMImage

Description Usage Arguments Author(s) Examples

View source: R/AFMReportMaker.R

Description

Generate a check report in pdf format in order to analyse the distribution and the isotropy of heights of the AFMImage.

Usage

1

Arguments

AFMImage

an AFMImage imported from Nanoscope Analysis(TM) with importFromNanoscope or created manually AFMImage

Author(s)

M.Beauvais

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
## Not run: 
library(AFM)

# Analyse the AFMImageOfRegularPeaks AFMImage sample from this package
  data("AFMImageOfRegularPeaks")
  AFMImage<-AFMImageOfRegularPeaks
# exportDirectory="C:/Users/my_windows_login" or exportDirectory="/home/ubuntu"
  exportDirectory=tempdir()
  AFMImage@fullfilename<-paste(exportDirectory,"AFMImageOfRegularPeaks.txt",sep="/")
  
# Start to check if your sample is normaly distributed and isotropic.
  generateCheckReport(AFMImage)
# If the sample is normaly distributed and isotropic, generate a full report
  generateReport(AFMImage)

# Analyse your own AFM image from nanoscope analysis (TM) software tool
   anotherAFMImage<-importFromNanoscope("c:/users/me/myimage.txt")
# Start to check if your sample is normaly distributed and isotropic.
   generateCheckReport(anotherAFMImage)
# If your sample is normaly distributed and isotropic, generate a full report
   generateReport(anotherAFMImage)

## End(Not run)

AFM documentation built on Oct. 23, 2020, 5:23 p.m.

Related to generateCheckReport in AFM...