Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/coddingtonbear/q-stdev
- Owner: coddingtonbear
- Created: 2017-10-17T01:28:28.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-17T02:21:32.000Z (about 7 years ago)
- Last Synced: 2024-10-19T12:37:38.764Z (2 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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;
```