Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/coddingtonbear/q-stdev

WIP: Function providing a new standard deviation function for q (text as data)
https://github.com/coddingtonbear/q-stdev

Last synced: 20 days ago
JSON representation

WIP: Function providing a new standard deviation function for q (text as data)

Awesome Lists containing this project

README

        

*NOTE*: This functionality is contingent upon [this pull request](https://github.com/harelba/q/pull/155).

---

Adds functionality allowing you to calculate the standard deviation of columns using the `stdev` function in your
[`q`](https://github.com/harelba/q) SQL queries.

Example:

```python
SELECT stdev(some_column) FROM ./my_file.csv;
```