Exemplo n.º 1
0
 /**
  * Standard deviation of lead time
  */
 public function getSdLeadTimeAttribute()
 {
     $leadTimes = $this->lead_times;
     if ($leadTimes == null) {
         return 0;
     }
     return Services::stats_standard_deviation($leadTimes);
 }