gvessel | R Documentation |
These are observations taken over nine days in May 2000 by the German vessel Gauss in the North Atlantic.
data(gvessel)
A data frame with 643 observations on the following 7 variables.
day2g
an integer for the day at which the measurement was taken.
salg
a numeric vector with measurements of salinity according to the PSS (Practical Salinity Scale).
tempg
a numeric vector with measurements of water temperature in degrees Celsius.
depthg
a numeric vector with the water depths (in meters) at which the measurements were taken.
oxyg
a numeric vector with measurements of oxygen content (mm per litre of water)
longg
longitude
latg
latitude
Retrieved by B. Powell from the World Ocean Database.
Einbeck, J., Evers, L., and Powell, B. (2010): Data compression and regression through local principal curves and surfaces, International Journal of Neural Systems, 20, 177-192.
data(gvessel)
pairs(gvessel[,c(3,2,4,5)])
tcol <- (gvessel$tempg- min(gvessel$tempg))/(max(gvessel$tempg)- min(gvessel$tempg))
require(scatterplot3d)
scatterplot3d(gvessel[,2],gvessel[,4],gvessel[,5], color=rgb(tcol,0,1-tcol))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.