Open
Description
Pandas version checks
- I have checked that the issue still exists on the latest versions of the docs on
master
here
Location of the documentation
pandas.DataFrame.to_html (https://pandas.pydata.org/docs/dev/reference/api/pandas.DataFrame.to_html.html?highlight=pandas%20dataframe%20to_html#)
Documentation problem
Came across the documentation for pandas.DataFrame.to_html, found no example
Suggested fix for documentation
Example:
df = pd.DataFrame({'ID': ['XYZ', 'ABC'],
... 'Department': ['HR', 'Admin'],
... 'Job Title': ['Title1', 'Title2']})
print(df.to_html())
ID | Department | Job Title | |
---|---|---|---|
0 | XYZ | HR | Title1 |
1 | ABC | Admin | Title2 |