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")


KopfLab/lans2r documentation built on Feb. 22, 2023, 3:25 p.m.