knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
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))) }
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) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.