Corrected documentation for Table.set/add/sort_by

This commit is contained in:
Philip Eisenlohr 2022-02-15 22:53:08 +00:00
parent 00f44c9ed6
commit 96133c68e9
1 changed files with 5 additions and 5 deletions

View File

@ -372,9 +372,9 @@ class Table:
label : str label : str
Column label. Column label.
data : numpy.ndarray data : numpy.ndarray
New data. Replacement data.
info : str, optional info : str, optional
Human-readable information about the new data. Human-readable information about the modified data.
Returns Returns
------- -------
@ -407,9 +407,9 @@ class Table:
label : str label : str
Column label. Column label.
data : numpy.ndarray data : numpy.ndarray
Modified data. New data.
info : str, optional info : str, optional
Human-readable information about the modified data. Human-readable information about the new data.
Returns Returns
------- -------
@ -485,7 +485,7 @@ class Table:
labels: Union[str, List[str]], labels: Union[str, List[str]],
ascending: Union[bool, List[bool]] = True) -> 'Table': ascending: Union[bool, List[bool]] = True) -> 'Table':
""" """
Sort table by values of given labels. Sort table by data of given columns.
Parameters Parameters
---------- ----------