Record Class BoxplotData.Boxplot

java.lang.Object
java.lang.Record
com.storedobject.chart.BoxplotData.Boxplot
Record Components:
lower - The lower bound of the data.
q1 - The first quartile (Q1), representing the 25th percentile of the data.
median - The median, representing the 50th percentile of the data.
q3 - The third quartile (Q3), representing the 75th percentile of the data.
upper - The upper bound of the data.
Enclosing class:
BoxplotData

public static record BoxplotData.Boxplot(Number lower, Number q1, Number median, Number q3, Number upper) extends Record
Represents a boxplot data record with the key statistical parts of a boxplot. The components include lower bound, first quartile (Q1), median, third quartile (Q3), and upper bound. This record provides an immutable representation of these values.
Author:
Syam