Learn R Programming

provenance (version 0.2)

read.DZdata: Read a .csv file with continuous (detrital zircon) data

Description

Reads a data table containing continuous data (e.g. detrital zircon ages)

Usage

read.DZdata(datafile, errorfile = NULL, metric = "KS",
  xlabel = "age [Ma]")

Arguments

datafile
the path of a .csv file with the input data, arranged in columns.
errorfile
the (optional) path of a .csv file with the standard errors of the input data, arranged by column in the same order as datafile. Must be specified if the data are to be compared with the Sircombe-Hazelton distance.
metric
an optional string specifying the dissimilarity measure which should be used for comparing this with other datasets. Should be one of either "KS" (for Kolmogorov-Smirnov) or "SH" (for Sircombe and Hazelton). If metric = "SH
xlabel
an optional string specifying the nature and units of the data. This string is used to label kernel density estimates.

Value

  • an object of class DZdata, i.e. a list with the following items:

    x: a named list of vectors containing the numerical data for each sample

    err: an (optional) named list of vectors containing the standard errors of x

    metric: either "KS" (for Kolmogorov-Smirnov) or "SH" (for Sircombe Hazelton)

    breaks: a vector with the locations of the histogram bin edges

    xlabel: a string containing the label to be given to the x-axis on all plots

Examples

Run this code
fname <- system.file("DZ.csv",package="provenance")
DZ <- read.DZdata(fname)
plot(getKDE(DZ$x$N1))

Run the code above in your browser using DataLab