Skip to content

Instantly share code, notes, and snippets.

@Enucatl
Created October 27, 2014 13:31
Show Gist options
  • Save Enucatl/cc1914214f5e0d5c338b to your computer and use it in GitHub Desktop.
Save Enucatl/cc1914214f5e0d5c338b to your computer and use it in GitHub Desktop.
calculate weighted average with first column = value, second column = weight with awk
#!/usr/bin/env bash
awk '{w = w + $2; e = e + $1 * $2;} END {print e/w}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment