From 96133c68e90741f7e962aad8b9fb19dfa983bfcd Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Tue, 15 Feb 2022 22:53:08 +0000 Subject: [PATCH] Corrected documentation for Table.set/add/sort_by --- python/damask/_table.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/python/damask/_table.py b/python/damask/_table.py index 81c23e73b..df364d46e 100644 --- a/python/damask/_table.py +++ b/python/damask/_table.py @@ -372,9 +372,9 @@ class Table: label : str Column label. data : numpy.ndarray - New data. + Replacement data. info : str, optional - Human-readable information about the new data. + Human-readable information about the modified data. Returns ------- @@ -407,9 +407,9 @@ class Table: label : str Column label. data : numpy.ndarray - Modified data. + New data. info : str, optional - Human-readable information about the modified data. + Human-readable information about the new data. Returns ------- @@ -485,7 +485,7 @@ class Table: labels: Union[str, List[str]], ascending: Union[bool, List[bool]] = True) -> 'Table': """ - Sort table by values of given labels. + Sort table by data of given columns. Parameters ----------