You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo 'Average number of fighting rounds and standard deviation:'
grep summary ./logs/integration/player-fights-wisp.log|awk '{sum+=$10; sumsq+=$10*$10} END {print "Total Number of fights: " NR ". Average number of fight rounds: " sum/NR " - Standard Deviation: " sqrt(sumsq/NR - (sum/NR)**2)}'