satinSummary: Summaryze oceanographic data obtained with 'getGridData' or...

Description Usage Arguments Value Author(s) Examples

View source: R/satinSummary.R

Description

This functions returns some statistics values of oceanographic data, optionally returns a boxplot with aggregated oceanographic data by dates.

Usage

1
satinSummary(satin.obj, plot = FALSE)

Arguments

satin.obj

a satin object with satellite data as returned by read.oceancolor

plot

if TRUE satinSummary makes a boxplot with aggregated oceanographic data by dates

Value

satinSummary returns a dataframe with some statiscal vaules.

Author(s)

Raul O Martinez-Rincon

Examples

 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)

r-forge/satin documentation built on Feb. 18, 2022, 2:39 a.m.