Skip to content

DOC: add "kde" and "density" to plot kind docstring #2917

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
1 commit merged into from
Feb 23, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pandas/tools/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1393,9 +1393,10 @@ def plot_frame(frame=None, x=None, y=None, subplots=False, sharex=True,
ax : matplotlib axis object, default None
style : list or dict
matplotlib line style per column
kind : {'line', 'bar', 'barh'}
kind : {'line', 'bar', 'barh', 'kde', 'density'}
bar : vertical bar plot
barh : horizontal bar plot
kde/density : Kernel Density Estimation plot
logx : boolean, default False
For line plots, use log scaling on x axis
logy : boolean, default False
Expand Down Expand Up @@ -1473,9 +1474,10 @@ def plot_series(series, label=None, kind='line', use_index=True, rot=None,
Parameters
----------
label : label argument to provide to plot
kind : {'line', 'bar', 'barh'}
kind : {'line', 'bar', 'barh', 'kde', 'density'}
bar : vertical bar plot
barh : horizontal bar plot
kde/density : Kernel Density Estimation plot
use_index : boolean, default True
Plot index as axis tick labels
rot : int, default None
Expand Down