Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jovi1994 committed Dec 4, 2024
1 parent 95a5fb4 commit a5a45f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions steps/aggregation-functions/mean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ values=$(awk -F, 'NR > 1 {print $3}' "${metric_file}")

while IFS= read -r value; do
sum=$(echo "$sum + $value" | bc)

count=$((count + 1))
done <<< "${values}"

Expand Down

0 comments on commit a5a45f3

Please sign in to comment.