Description Usage Arguments Value Author(s) Examples
This functions returns some statistics values of oceanographic data, optionally returns a boxplot with aggregated oceanographic data by dates.
1 | satinSummary(satin.obj, plot = FALSE)
|
satin.obj |
a satin object with satellite data as returned by read.oceancolor |
plot |
if TRUE |
satinSummary
returns a dataframe with some statiscal vaules.
Raul O Martinez-Rincon
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Lets get some data from BloomWatch server
lons <- c(-111, -109)
lats <- c(22, 24)
dates <- c("2013-01-01", "2013-11-30")
dataSetQuery("temp", other = "MODIS")
sst.id <- dataSetQuery(dataset = 52)#WeastUS data
timeperiod <- "1month"
datos.sst <- getGridData(lons, lats, dates, sst.id, timeperiod)
## Just values
satinSummary(datos.sst)
## Values and boxplot
satinSummary(datos.sst, plot = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.