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

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.

Examples

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