Commit 3c94f78ab0b2ffb86b406fa5a903f284ff4daed3
1 parent
677c5d1d06
Exists in
master
-
Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff
allanplot.py
... | ... | @@ -7,7 +7,7 @@ |
7 | 7 | |
8 | 8 | # Default filename |
9 | 9 | FILENAME = '*.dat' |
10 | -COLUMNS = [2] | |
10 | +COLUMNS = '2' | |
11 | 11 | RATE = 1 |
12 | 12 | |
13 | 13 | #============================================================================== |
... | ... | @@ -18,7 +18,7 @@ |
18 | 18 | :returns: populated namespace (parser) |
19 | 19 | """ |
20 | 20 | parser = argparse.ArgumentParser(description = 'Plot Allan Deviation from timeseries file', |
21 | - epilog = 'Example: \'./allanplot.py -f toto.dat\' compute and plot Allan Deviation form toto.dat values') | |
21 | + epilog = 'Example: \'./allanplot.py -f \'toto.dat\' -c 2 3\' compute and plot Allan Deviation form columns 2 and 3 of toto.dat') | |
22 | 22 | |
23 | 23 | parser.add_argument('-f', |
24 | 24 | action='store', |