Learn R Programming

geoelectrics (version 0.2.2)

levelplot: Levelplot of Geoelectrics Data

Description

Plots the interpolated resistance values of the geoelectrics data.

Usage

levelplot(x, data, ...)

# S4 method for Profile levelplot(x, dataType = "processed", withTopo = FALSE, xlab = "Length [m]", ylab = "Depth [m]", main = paste(x@title), col = colors, breaks = 18, trafo = log, backtrafo = exp, aspect = "iso", ...)

# S4 method for ProfileSet levelplot(x, dataType = "processed", withTopo = FALSE, xlab = "Length [m]", ylab = "Depth [m]", main = paste(x@title), col = colors, breaks = 18, trafo = log, backtrafo = exp, aspect = "iso", ...)

levelplotProcessedData(x, xlab = "Length [m]", ylab = "Depth [m]", main = paste(x@title, "without topography"), col = colors, breaks = 18, trafo = log, backtrafo = exp, aspect = "iso", ...)

levelplotProcessedDataWithTopo(x, xlab = "Length [m]", ylab = "Height [m]", main = paste(x@title, "with topography"), col = colors, breaks = 18, trafo = log, backtrafo = exp, aspect = "iso", ...)

levelplotRawData(x, xlab = "Length [m]", ylab = "Depth [m]", main = paste(x@title, "without topography (raw data)"), col = colors, trafo = log, aspect = "iso", ...)

Arguments

x

profile object.

data

is always NULL

...

lattice levelplot arguments.

dataType

specify whether 'processed' (default) or 'raw' data should be plotted

withTopo

TRUE if topography information is plotted

xlab

label for x-axes.

ylab

label for y-axes.

main

title to be plotted.

col

vector of colors.

breaks

number of color breaks.

trafo

transformation to be done on data (default: log).

backtrafo

back transformation to plot correct labels (default: exp).

aspect

the y/x aspect ratio (default: iso).

See Also

Profile-class

Examples

Run this code
data(sinkhole)

levelplot(sinkhole@profiles[[1]], dataType = 'processed', withTopo = FALSE)
levelplotLegendLabel()

levelplot(sinkhole@profiles[[1]], dataType = 'processed', withTopo = TRUE)
levelplotLegendLabel()

levelplot(sinkhole@profiles[[1]], dataType = 'raw')
levelplotLegendLabel()

Run the code above in your browser using DataLab