diff --git a/acro/acro_tables.py b/acro/acro_tables.py index c3ec6f6..0318f36 100644 --- a/acro/acro_tables.py +++ b/acro/acro_tables.py @@ -556,12 +556,8 @@ def hist( # pylint: disable=too-many-arguments,too-many-locals 'histogram.png' will be used as the filename. A number will be appended automatically to the filename to avoid overwriting the files. - Returns - ------- - matplotlib.Axes - - Parameters: - ----------- + Parameters + ---------- data : DataFrame The pandas object holding the data. column : str @@ -606,6 +602,10 @@ def hist( # pylint: disable=too-many-arguments,too-many-locals Whether to show the legend. filename: The name of the file where the plot will be saved. + + Returns + ------- + matplotlib.Axes """ logger.debug("hist()") command: str = utils.get_command("hist()", stack()) diff --git a/docs/source/acro.rst b/docs/source/acro.rst index d1f7a63..522335f 100644 --- a/docs/source/acro.rst +++ b/docs/source/acro.rst @@ -3,3 +3,4 @@ ACRO Class .. automodule:: acro.acro :members: + :inherited-members: