Usage
"hist"(x, datain2.df = NULL, var.name = "delta.air_temperature",
subreg.subset = NULL, season.subset = NULL, plot.density = TRUE,
hist1.col = "red", hist2.col = "blue", bw = "nrd0", kernel = "gaussian",
mark.df = NULL, plot.legend = FALSE,  xlim = NULL, ylim = NULL,
xtick.number = 10, ytick.number = 10, xminor.tick = FALSE, yminor.tick =
FALSE, xlab = NULL, ylab = "Probability Density", main =
NULL, out.file.directory = NULL, out.file.name = NULL, copyright = FALSE, ...)
Arguments
var.name
   Character string of parameter in WUX dataset. Default is temperature change.
 
subreg.subset
    Vector of subregions to be plotted
    (e.g. c("EU.ENS", "GAR")).
  
season.subset
    Vector of seasons to be plotted
    (e.g. c("MAM", "DJF")).
  
plot.density
    Boolean. Indicating if kernel density estimates should be
    plotted. Default is TRUE.
  
hist1.col
    Character string of the 1st histogram color (e.g. "red").
  
hist2.col
    Character string of the 2nd histogram color (e.g. "blue"). 
  
bw
    The smoothing bandwidth to be used in density. Default is
    "nrd0".
  
kernel
    A character string giving the smoothing kernel to be used in
    density. This must be one of "gaussian",
    "rectangular", "triangular",
    "epanechnikov","biweight", "cosine" or
    "optcosine" with default "gaussian".
  
mark.df
    Subset of WUX dataframe indicating the models to be marked.
  
plot.legend
    Boolean. Indicating if a plot legend indicating the models of mark.df and
    sample size should be plotted. Default is FALSE.
  
xlim
    Range vector for the x-axis.
  
ylim
    Range vector for the y-axis.
  
xtick.number
    Number of ticks for the x-axis with default 10.
  
ytick.number
    Number of ticks for the y-axis with default 10.
  
xminor.tick
    Boolean. Indicating if minor ticks for the x-axis should be
    plotted. Default is FALSE.
  
yminor.tick
    Boolean. Indicating if minor ticks for the y-axis should be
    plotted. Default is FALSE.
  
ylab
    Label for y-axis with default Probability Density.
  
out.file.directory
     String of the directory where the plots are exported
       (e.g. "/tmp/plots/"). If
    neither out.file.name nor out.file.directory are
    passed, the plot will be displayed on screen.
  
out.file.name
    Prefix of the file names of the plots. Files will be stored as
    out.file.name_subreg_season.eps, where subreg is one
    realization of the subreg.subset argument and season
    is one realization of season.subset. For example:
    out.file.name = "histogram" will store to the files to
    histogram_EUROPE_DJF.eps and histogram_EUROPE_JJA.eps. If
    neither out.file.name nor out.file.directory are
    passed, the plot will be displyed on screen.
  
copyright
    Boolean. If a copyright message should be plotted.
    Default is FALSE.
  
...
      Further optional arguments passed to hist.