File tree Expand file tree Collapse file tree 15 files changed +240
-0
lines changed
Expand file tree Collapse file tree 15 files changed +240
-0
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the number of values.
420#
521# Usage: count
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the corrected sample excess kurtosis.
420#
521# Usage: kurtosis
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the maximum value.
420#
521# Usage: max
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the arithmetic mean.
420#
521# Usage: mean
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the median.
420#
521# Usage: median
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the mid-range.
420#
521# Usage: mid-range
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the minimum value.
420#
521# Usage: min
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the mode.
420#
521# Usage: mode
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Computes the range.
420#
521# Usage: range
Original file line number Diff line number Diff line change 11#!/usr/bin/env awk -f
22#
3+ # @license Apache-2.0
4+ #
5+ # Copyright (c) 2017 The Stdlib Authors.
6+ #
7+ # Licensed under the Apache License, Version 2.0 (the "License");
8+ # you may not use this file except in compliance with the License.
9+ # You may obtain a copy of the License at
10+ #
11+ # http://www.apache.org/licenses/LICENSE-2.0
12+ #
13+ # Unless required by applicable law or agreed to in writing, software
14+ # distributed under the License is distributed on an "AS IS" BASIS,
15+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+ # See the License for the specific language governing permissions and
17+ # limitations under the License.
18+
319# Samples a column of values.
420#
521# Usage: sample prob seed
You can’t perform that action at this time.
0 commit comments