cdo_ydayavg | R Documentation |
This module computes statistical values of each day of year. Depending on the chosen operator the minimum, maximum, range, sum, average, variance or standard deviation of each day of year in infile is written to outfile. The date information in an output field is the date of the last contributing input field.
cdo_ydayavg(ifile, ofile = NULL)
cdo_ydaymax(ifile, ofile = NULL)
cdo_ydaymean(ifile, ofile = NULL)
cdo_ydaymin(ifile, ofile = NULL)
cdo_ydayrange(ifile, ofile = NULL)
cdo_ydaystd(ifile, ofile = NULL)
cdo_ydaystd1(ifile, ofile = NULL)
cdo_ydaysum(ifile, ofile = NULL)
cdo_ydayvar(ifile, ofile = NULL)
cdo_ydayvar1(ifile, ofile = NULL)
ifile |
String with the path to the input file. |
ofile |
String with the path to the output file. |
ydaymin Multi-year daily minimum o(001,x) = min\{i(t,x), day(i(t)) = 001\} ... o(366,x) = min\{i(t,x), day(i(t)) = 366\} ydaymax Multi-year daily maximum o(001,x) = max\{i(t,x), day(i(t)) = 001\} ... o(366,x) = max\{i(t,x), day(i(t)) = 366\} ydayrange Multi-year daily range o(001,x) = range\{i(t,x), day(i(t)) = 001\} ... o(366,x) = range\{i(t,x), day(i(t)) = 366\} ydaysum Multi-year daily sum o(001,x) = sum\{i(t,x), day(i(t)) = 001\} ... o(366,x) = sum\{i(t,x), day(i(t)) = 366\} ydaymean Multi-year daily mean o(001,x) = mean\{i(t,x), day(i(t)) = 001\} ... o(366,x) = mean\{i(t,x), day(i(t)) = 366\} ydayavg Multi-year daily average o(001,x) = avg\{i(t,x), day(i(t)) = 001\} ... o(366,x) = avg\{i(t,x), day(i(t)) = 366\} ydaystd Multi-year daily standard deviation Normalize by n. o(001,x) = std\{i(t,x), day(i(t)) = 001\} ... o(366,x) = std\{i(t,x), day(i(t)) = 366\} ydaystd1 Multi-year daily standard deviation (n-1) Normalize by (n-1). o(001,x) = std1\{i(t,x), day(i(t)) = 001\} ... o(366,x) = std1\{i(t,x), day(i(t)) = 366\} ydayvar Multi-year daily variance Normalize by n. o(001,x) = var\{i(t,x), day(i(t)) = 001\} ... o(366,x) = var\{i(t,x), day(i(t)) = 366\} ydayvar1 Multi-year daily variance (n-1) Normalize by (n-1). o(001,x) = var1\{i(t,x), day(i(t)) = 001\} ... o(366,x) = var1\{i(t,x), day(i(t)) = 366\}
Operators that output one or more files return a character vector to the output files.
Operators that output an indefinite number of files return a string with the basename of the files.
Operatos that don't return filenames return a character vector with the string output.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.