NanoSIMS data processing of LANS data in R: HMR files

library(lans2r)
library(dplyr)
library(knitr)
library(ggplot2)

This vignettes illustrates how to read and visualize data from HMR (=ion beam scan) files generated by the NanoSIMS software. These are primarily tuning files that are valuable for visualizing and evaluating how tuning parameters affect the peak shapes. This functionality is completely independent from LANS.

hmr <- load_HMR(system.file("extdata", "nanosims_data", "hmr", package = "lans2r"), 
                prefix = "", suffix = ".hmr_txt")

Settings overview

hmr %>% select(-step, -voltage, -cts) %>% distinct() %>% kable()

Scan overview

hmr %>% 
  ggplot() +
  aes(voltage, cts, color = ion) + 
  geom_line() +
  scale_y_log10("counts") +
  facet_wrap(~ion, scales = "free")


Try the lans2r package in your browser

Any scripts or data that you put into this service are public.

lans2r documentation built on March 7, 2023, 7:38 p.m.