plot3d,ProfileSet-method {geoelectrics} | R Documentation |
3D Scatterplot of Geoelectrics Profiles
Description
Plots the interpolated resistance values of the processed data for a single profile or a set of profiles.
Usage
## S4 method for signature 'ProfileSet'
plot3d(x, title = x@title, sub = "",
xlab = "", ylab = "", zlab = "", minData = x@minData,
maxData = x@maxData, col = colors, trafo = log,
psize = pointsize, ...)
## S4 method for signature 'Profile'
plot3d(x, title = "", sub = "", xlab = "",
ylab = "", zlab = "", minData = x@processedData@minData,
maxData = x@processedData@maxData, col = colors, trafo = log,
psize = pointsize, ...)
Arguments
x |
either an object of a single Profile or a ProfileSet. |
title |
title to be plotted. |
sub |
subtitle to be plotted. |
xlab |
label of the x-axes, e.g. length [m]. |
ylab |
label of the y-axes, e.g. height above sea level [m]. |
zlab |
label of the z-axes, e.g. length [m]. |
minData |
mimimum value to adjust color bar. |
maxData |
maximum value to adjust color bar. |
col |
vector of colors. |
trafo |
transformation to be done on data (default: log). |
psize |
size of value points (default: 10). |
... |
parameters passed to points3d method of rgl package |
See Also
Profile-class
, ProfileSet-class
,
plot
, levelplot
Examples
data(sinkhole)
plot3d(sinkhole@profiles[[1]])
plot3d(sinkhole)
[Package geoelectrics version 0.2.2 Index]