From b6e2253835f8692b63a4c54fb3bc5b466e4ff4ab Mon Sep 17 00:00:00 2001 From: thauck Date: Sun, 10 Feb 2013 14:14:09 -0600 Subject: [PATCH] Add documentation for the classes parameter of the to_html method --- pandas/core/frame.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 6c96317a645f7..796e9af8fcf30 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -1539,6 +1539,8 @@ def to_html(self, buf=None, columns=None, col_space=None, colSpace=None, to_html-specific options bold_rows : boolean, default True Make the row labels bold in the output + classes : str or list or tuple, default None + CSS class(es) to apply to the resulting html table Render a DataFrame to an html table. """