@@ -871,30 +871,53 @@ def var_overload(df, axis=None, skipna=None, level=None, ddof=1, numeric_only=No
871871@sdc_overload_method (DataFrameType , 'max' )
872872def max_overload (df , axis = None , skipna = None , level = None , numeric_only = None ):
873873 """
874- Pandas DataFrame method :meth:`pandas.DataFrame.max` implementation.
874+ Intel Scalable Dataframe Compiler User Guide
875+ ********************************************
875876
876- .. only:: developer
877+ Pandas API: pandas.DataFrame.max
877878
878- Test: python -m sdc.runtests -k sdc.tests.test_dataframe.TestDataFrame.test_max*
879+ Limitations
880+ -----------
881+ Parameters ``axis``, ``level`` and ``numeric_only`` are unsupported.
879882
880- Parameters
881- -----------
882- df: :class:`pandas.DataFrame`
883- input arg
884- axis:
885- *unsupported*
886- skipna:
887- *unsupported*
888- level:
889- *unsupported*
890- numeric_only:
891- *unsupported*
883+ Examples
884+ --------
885+ .. literalinclude:: ../../../examples/dataframe/dataframe_max.py
886+ :language: python
887+ :lines: 35-
888+ :caption: Return the maximum of the values for the columns.
889+ :name: ex_dataframe_max
892890
893- Returns
894- -------
895- :obj:`pandas.Series` or `pandas.DataFrame`
896- return the maximum of the values for the requested axis.
897- """
891+ .. command-output:: python ./dataframe/dataframe_max.py
892+ :cwd: ../../../examples
893+
894+ .. seealso::
895+ :ref:`Series.sum <pandas.Series.sum>`
896+ Return the sum.
897+ :ref:`Series.max <pandas.Series.max>`
898+ Return the maximum.
899+ :ref:`Series.idxmin <pandas.Series.idxmin>`
900+ Return the index of the minimum.
901+ :ref:`Series.idxmax <pandas.Series.idxmax>`
902+ Return the index of the maximum.
903+ :ref:`DataFrame.sum <pandas.DataFrame.sum>`
904+ Return the sum over the requested axis.
905+ :ref:`DataFrame.min <pandas.DataFrame.min>`
906+ Return the minimum over the requested axis.
907+ :ref:`DataFrame.idxmin <pandas.DataFrame.idxmin>`
908+ Return the index of the minimum over the requested axis.
909+ :ref:`DataFrame.idxmax <pandas.DataFrame.idxmax>`
910+ Return the index of the maximum over the requested axis.
911+
912+ Intel Scalable Dataframe Compiler Developer Guide
913+ *************************************************
914+
915+ Pandas DataFrame method :meth:`pandas.DataFrame.max` implementation.
916+
917+ .. only:: developer
918+
919+ Test: python -m sdc.runtests -k sdc.tests.test_dataframe.TestDataFrame.test_max*
920+ """
898921
899922 name = 'max'
900923
0 commit comments