/// <summary>
 /// Converts the value of the current <see cref="DescriptiveStatistics" /> to its equivalent string representation.
 /// </summary>
 /// <returns>
 /// A string representation of the current <see cref="DescriptiveStatistics" />.
 /// </returns>
 public override String ToString() => $"Size: {Size.ToString()}, Mean: {Mean.RoundedTo(3)}, StDev: {StandardDeviation.RoundedTo(3)}";