From bf7419f4a742099a34cb4c42421ab48cc28ced4a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 7 Aug 2010 12:26:40 -0400 Subject: [PATCH] Remove differentiation reference from difference's column argument help. --- hooke/plugin/curve.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hooke/plugin/curve.py b/hooke/plugin/curve.py index 9daab06..158cb77 100644 --- a/hooke/plugin/curve.py +++ b/hooke/plugin/curve.py @@ -190,11 +190,11 @@ approaching curve and `1` selects the retracting curve. help='Block B in A-B.'), Argument(name='x column', type='int', default=0, help=""" -Column of data block to differentiate with respect to. +Column of data to return as x values. """.strip()), - Argument(name='f column', type='int', default=1, + Argument(name='y column', type='int', default=1, help=""" -Column of data block to differentiate. +Column of data block to difference. """.strip()), ], help=self.__doc__, plugin=plugin) @@ -205,7 +205,7 @@ Column of data block to differentiate. assert a[:,params['x column']] == b[:,params['x column']] out = Data((a.shape[0],2), dtype=a.dtype) out[:,0] = a[:,params['x column']] - out[:,1] = a[:,params['f column']] - b[:,params['f column']] + out[:,1] = a[:,params['y column']] - b[:,params['y column']] outqueue.put(out) class DerivativeCommand (Command): -- 2.26.2