Skip to contents

This function produces a barplot of FORCIS sample records by depth.

Usage

plot_record_by_depth(data)

Arguments

data

a data.frame, i.e. a FORCIS dataset.

Value

A ggplot object.

Examples

# Attach the package ----
library("forcis")

# Import example dataset ----
file_name <- system.file(file.path("extdata", "FORCIS_net_sample.csv"), 
                         package = "forcis")

net_data <- read.table(file_name, dec = ".", sep = ";")

# Add 'data_type' column ----
net_data$"data_type" <- "Net"

# Plot data by year (example dataset) ----
plot_record_by_depth(net_data)