-
Notifications
You must be signed in to change notification settings - Fork 90
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
Parallexaxis doc #249
Parallexaxis doc #249
Changes from 1 commit
9b291b2
03ce45a
3fa3213
5fef735
f7a9de8
28922d6
6b88e33
ae9a479
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,6 +143,27 @@ class ParallelAxes: | |
rot : float, optional | ||
rotation of axis labels | ||
|
||
|
||
Attributes | ||
---------- | ||
limits : DataFrame | ||
recoding : dict | ||
non numeric columns are converting to integer variables | ||
flipped_axes : set | ||
set of Axes that are to be shown flipped | ||
axis_labels : list of str | ||
fontsize : int | ||
normalizer : MinMaxScaler instance | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a description of There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I made this an implementation detail and removed it from the documentation. It is not part of the public API so you don't want to mess with the normalizer. |
||
fig : a matplotlib Figure instance | ||
axes : list of matplotlib Axes instances | ||
ticklabels : list of str | ||
datalabels : list of str | ||
labels associated with lines | ||
|
||
|
||
The basic setup of the Parallel Axis plot is a row of mpl Axes instances, with all whitespace | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this line have a header, since from here class methods are discussed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. moved it into Notes which is the proper place for implementation details |
||
in between removed. The number of Axes is the number of columns - 1. | ||
|
||
""" | ||
|
||
def __init__(self, limits, formatter=None, fontsize=14, rot=90): | ||
|
@@ -155,7 +176,6 @@ def __init__(self, limits, formatter=None, fontsize=14, rot=90): | |
formatter : dict, optional | ||
specify precision formatters for minima and maxima, | ||
defaults to .2f | ||
|
||
fontsize : int, optional | ||
fontsize for defaults text items | ||
rot : float, optional | ||
|
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.
Add a description of
limits
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.
added the description from the parameters part