Blame view
README.md
751 Bytes
1ded7f369 - |
1 |
--- |
e2d42ab2c add readme |
2 3 4 |
# Description Compute and plot Allan Deviation from tab separated values files. |
1ded7f369 - |
5 |
--- |
e2d42ab2c add readme |
6 7 8 9 |
# Usage `python allanplot.py --help` |
8798dcc5b - |
10 |
usage: allanplot.py [-h] [-f FILENAME] [-c COLUMNS [COLUMNS ...]] [-r RATE] |
e2d42ab2c add readme |
11 12 13 14 15 16 17 18 19 20 21 |
Plot Allan Deviation from timeseries file optional arguments: -h, --help show this help message and exit -f FILENAME File(s) to import (default *.dat) -c COLUMNS [COLUMNS ...] Columns to import (default 2) -r RATE Time rate in seconds (default 1) Example: './allanplot.py -f 'toto.dat' -c 2 3' compute and plot Allan |
8798dcc5b - |
22 |
Deviation form columns 2 and 3 of toto.dat |
e2d42ab2c add readme |
23 24 25 26 |
# Examples `python allanplot.py -f '**/*.dat` will load all dat files in all sub-directories of the current path. |