# File lib/core/facets/array/standard_deviation.rb, line 15
  def standard_deviation
    return nil if empty?
    Math.sqrt(variance)
  end