-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: table keyword missing in the docstring for Series.plot() and DataFr... #7698
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
Conversation
HTML doc for this can be found here: http://pandas.pydata.org/pandas-docs/stable/visualization.html#plotting-tables |
table : boolean, Series or DataFrame, default False | ||
If True, draw a table using the data in the DataFrame | ||
If a Series or DataFrame is passed, use passed data to draw a table | ||
Data will be transposed to meet matplotlib’s default layout |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you put full stops .
after each sentence? (in this text it looks good, but when it is rendered ti html, the different lines become continuous text)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure will do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done, PR updated
@sinhrks this is correct? |
table : boolean, Series or DataFrame, default False | ||
If True, draw a table using the data in the DataFrame. | ||
If a Series or DataFrame is passed, use passed data to draw a table. | ||
Data will be transposed to meet matplotlib’s default layout. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This transpose is for making plotting internal data to mpl table layout. Thus, transposed only in boolean., not in another DataFrame and Series is passed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great catch thanks! Fixed and PR updated.
Thans for this. Only one comment. |
@jorisvandenbossche looks ok to me |
@mortada Thanks a lot! |
DOC: table keyword missing in the docstring for Series.plot() and DataFr...
Version 0.14.1 * tag 'v0.14.1': (21 commits) RLS: v0.14.1 final DOC: clean up 0.14.1 whatsnew file CI: remove sql from 3.3 build entirely DOC: docstring for PeriodIndex SQL: suppress warning for BIGINT with sqlite and sqlalchemy<0.8.2 (GH7433) TST/REG/BUG: Make PeriodIndex work with Series objects DOC: fix problem with part of code example cut off TST: additional network error catching (test_html/test_spam_html) DOC: fix doc build warnings BUG: offset normalize option may not work in addition/subtraction DOC: add release thanks note DOC: fix non-ascii character (from pandas-dev#7698) DOC: table keyword missing in the docstring for Series.plot() and DataFrame.plot() TST/CLN: centralize numpy < 1.7 skips TST: skip on older numpy for (GH7694) BUG: Fix conditional for underlying price in io.data.options. TST: fix dtypes in select_dtypes (GH7434) on windows PERF: better perf on min/max/resample when on indices not containing NaT for DatetimeIndex/PeriodIndex (GH7633) DOC: minor corrections in v0.14.1 FIX: to_sql takes the boolean column as text column BUG: grouped hist raises error with single group ...
...ame.plot()