plot_transformation: plot_transformation

Description Usage Arguments Value Author(s) Examples

Description

Function to plot the resistivity-depth transformation from a given VES.

Usage

1
2
plot_transformation(x, trans.type = c("direct", "scaling", "zohdy",
  "zohdy.smoothed"))

Arguments

x

A VES object

trans.type

A character string with the type of transformation to apply. Currently only direct and scaling, zohdy and zohdy.smoothed transformation are defined.

Value

This function returns a ggplot2 object.

Author(s)

Oscar Garcia-Cabrejo khaors@gmail.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
data(ves_data1)
ab2 <- ves_data1$ab2
apprho <- ves_data1$apprho
sev1a <- ves(id= "VES1", ab2 = ab2, apprho = apprho)
# Direct Transfor mation
plot_transformation(sev1a, trans.type = "direct")
# Scaling Transformation
plot_transformation(sev1a, trans.type = "scaling")
# Zohdy Transformation
plot_transformation(sev1a, trans.type = "zohdy")
# Zohdy Smoothed Transformation
plot_transformation(sev1a, trans.type = "zohdy.smoothed")

khaors/rves documentation built on May 29, 2019, 3:07 a.m.