knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

Summary Data for AFM Images

Each instrument uses a different set of parameters for describing the systems. Here are a few examples.

library(nanoscopeAFM)
file.list = AFM.getSampleImages()
for(filename in file.list) {
  print(basename(filename))
  print(summary(AFM.import(filename)))
}

AFMinfo class

Additional information can be found using the AFMinfo object:

for(filename in file.list[1:3]) {
  print(basename(filename))
  h = AFMinfo(filename)
  h$data$value = substr(h$data$value,1,32)
  print(h)
}


thomasgredig/nanoscopeAFM documentation built on Jan. 4, 2023, 1:33 p.m.