Skip to contents

Plot histogram of stability class on season or hour base.

Usage

plotStabilityClass(mydata, sc = "sc", type = "season", locale = NULL)

Arguments

mydata

A data frame containing date and stability class fields.

sc

The name of the stability class field.

type

type determines how the data are split and then plotted. Accepted values are "season" (default) and "hour".

locale

Locale to use for day and month names. Default is current locale. Supported locales are listed in stringi::stri_locale_list(). All other labels are in English by default or in Italian if its locale is specified.

Value

A ggplot2 plot.

Details

Numerical values of stability classes are mapped as: 1 = A, 2 = B, ..., 6 = F.

Examples

data("stMeteo")

# Season plot of stability class pgt
plotStabilityClass(stMeteo, sc = "pgt", type = "season")


# Hourly plot of stability class pgt
plotStabilityClass(stMeteo, sc = "pgt", type = "hour")


# Override default locale
plotStabilityClass(stMeteo, sc = "pgt", type = "season", locale = "it_IT")