boxplot Interface

public interface boxplot

Module Procedures

private subroutine boxplot_string(data, position, width, label, show_outliers, horizontal, color)

Boxplot with named-color string (matplotlib-compatible). Converts string color to RGB before delegating to the figure.

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in), contiguous :: data(:)
real(kind=wp), intent(in), optional :: position
real(kind=wp), intent(in), optional :: width
character(len=*), intent(in), optional :: label
logical, intent(in), optional :: show_outliers
logical, intent(in), optional :: horizontal
character(len=*), intent(in) :: color

private subroutine boxplot_rgb(data, position, width, label, show_outliers, horizontal, color)

Boxplot with RGB-triple color (matplotlib-compatible).

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in), contiguous :: data(:)
real(kind=wp), intent(in), optional :: position
real(kind=wp), intent(in), optional :: width
character(len=*), intent(in), optional :: label
logical, intent(in), optional :: show_outliers
logical, intent(in), optional :: horizontal
real(kind=wp), intent(in), optional :: color(3)