├── LICENSE ├── META.json ├── Makefile ├── README.md ├── doc └── weighted_mean.md ├── sql └── weighted_mean.sql ├── src └── weighted_mean.c ├── test ├── expected │ └── test_weighted_mean.out └── sql │ └── test_weighted_mean.sql └── weighted_mean.control /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/LICENSE -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | doc/weighted_mean.md -------------------------------------------------------------------------------- /doc/weighted_mean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/doc/weighted_mean.md -------------------------------------------------------------------------------- /sql/weighted_mean.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/sql/weighted_mean.sql -------------------------------------------------------------------------------- /src/weighted_mean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/src/weighted_mean.c -------------------------------------------------------------------------------- /test/expected/test_weighted_mean.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/test/expected/test_weighted_mean.out -------------------------------------------------------------------------------- /test/sql/test_weighted_mean.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/test/sql/test_weighted_mean.sql -------------------------------------------------------------------------------- /weighted_mean.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kozea/weighted_mean/HEAD/weighted_mean.control --------------------------------------------------------------------------------