knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

dalcwrs

The goal of dalcwrs is to ...

Installation

You can install dalcwrs from github with:

# install.packages("devtools")
devtools::install_github("paleolimbot/dalcwrs")

Load the package:

library(tidyverse)
library(dalcwrs)

Reading ICP-MS data files

Reading ICP files...

df <- read_icpms(system.file("test_icpms/test_icpms.xlsx", package = "dalcwrs"))
str(df)

Get tidy versions of ICP files in parameter-long form:

tidy <- tidy_icpms(df) 
str(tidy)


paleolimbot/dalcwrs documentation built on May 19, 2019, 1:43 a.m.