Skip to content
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

Cfd plot fix #2323

Closed
wants to merge 3 commits into from
Closed

Cfd plot fix #2323

wants to merge 3 commits into from

Commits on Jun 21, 2019

  1. CFD plot function was calling matplot.plt which doesn't exist

    The plot function in ConditionalFreqDist was throwing an ImportError
    because it was trying to import 'plt' from matplotlib which does not
    exist. Additionally the methods called were still the methods of
    they pylab submodule and I updated those calls to those of the pyplot
    submodule. Additionally the if v in self key check would not pass
    with valid input so I removed it and the function now plots correctly.
    jbbe committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    a5118e7 View commit details
    Browse the repository at this point in the history
  2. Added name to AUTHORS.md

    jbbe committed Jun 21, 2019
    Configuration menu
    Copy the full SHA
    01129f4 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2019

  1. Changed method to set x-ticks labels

    Was calling ax.set_xticks which was not displaying the correct labels
    so I changed it to use the pyplot.xticks method which works correctly
    with the input that was being given to set_xticks.
    jbbe committed Jun 24, 2019
    Configuration menu
    Copy the full SHA
    41e761a View commit details
    Browse the repository at this point in the history