Description Usage Arguments Details Value Note Author(s) References See Also Examples
Plots Bagnouls - Gaussen climatic charts of precipitation and temperature. Conventionally, in this chart the scale of precipitation has a double extension with respect to the scale of temperature (Bagnouls and Gaussen, 1953).
1 2 3 |
clim_norm_sta |
data frame with climatic normals |
save_dir |
name of destination directory for graphs (if any). |
format |
graphical format of graphs; default is NULL. |
main_title |
main title for all charts; e.g., it may include references to station id. Default is |
st_name |
name to be included into graphs titles. Only for file output. Default is |
trace_grid |
logic. If |
tick_step |
step for Y axis (precipitation). Default is 20 (mm) |
bar_width |
width of bars in the chart. Default is 30. |
bar_col |
color of bars. Default is "grey". |
trace_0.line |
logic. If |
... |
arguments to be passed to methods, such as graphical parameters (see |
clim_norm_sta
can be e.g. one element of the output of function climate
. See examples
.
If format
is NULL (default), graphs are sent to the console. Otherwise, a file is produced and saved. format
is used only if the graphs are to be sent to files. Values allowed are: "png", "jpeg", "tiff", "bmp".
If one or more data are missing, the chart is not processed.
Most graphic parameters for functions plot
, axis
, and mtext
are accepted.
Bagnouls - Gaussen's charts of precipitation and temperature.
A conflict is generated if parameters already used by the function are passed (e.g. col
- use col.main
, col.axis
, ..., instead).
Emanuele Eccel
Bagnouls, F., and Gaussen, H., 1953: Saison seche et indice xerothermique. Docum. pour les Cartes des Prod. Veget. Serie: Generalite, 1 (1953), pp. 1-49
1 2 3 4 5 6 7 8 | data(Trent_climate)
# clima_81_10 can be generated from monthly time series by function "climate".
par(ask=TRUE)
for(sta in 1:length(clima_81_10)) {
bagn_gau(clim_norm_sta= clima_81_10 [[sta]],
main_title=paste(names(clima_81_10[sta]), " 1981-2010")
, bar_width=40)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.