-
Notifications
You must be signed in to change notification settings - Fork 0
ENH Added ind and bw_method kwargs to KdePlot #1
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
base: master
Are you sure you want to change the base?
Conversation
@khgitting looks like you submitted a pr to your own master branch please rebase off of here's how you can do this with minimal pain # remove your most recent commit from the staging area
git reset HEAD~1
# stash your changes
git stash
# make sure you have the latest upstream (this may not be necessary)
git fetch upstream
git rebase upstream/master
# pop the stash back into the working directory
git stash pop
# add everything and commit it
git commit -am 'your commit message here' |
finally, submit a PR to the |
CLN: let URLError fall through in pandas.io.html._read
DOC: correct release notes version
TST: skip some tests if scikits is installed but not scipy GH3376
BLD: Use 'git describe' to generate the version string for dev versions
…ilures DOC/BUG: fix doc build error because a frame was being redefined
…when appending with different block ordering (GH4096) related
ER: HDFStore raising an invalid TypeError rather than ValueError when appending with a diff block ordering (GH4096)
Also remove the slow decorator for tests that take < 100 ms time
ENH: allow layout for grouped DataFrame histograms
BUG: period idx str map incorrectly returns a str repr of itself when ind.map(str) is called
…r-sheet-name ENH: add integer sheetname support in read_excel
TST/BUG/CLN: make stata IO tests use temporary files for writing
Also add support for PySide
…_pos_plus_1__bugfix Fix issue pandas-dev#4496: tslib.tz_convert(vals, tz1, tz2) may raise an IndexErro...
BUG: GH4273, appending a 0-len table to HDFStore was raising
Adds support for the thousands character in csv parser for floats. Updated docs to reflect bug fix.
csv_import: Thousands separator works in floating point numbers
…to cancan101-offset_cache Conflicts: doc/source/release.rst
ENH: In HDFStore, handle a passed Series in table format (GH4330)
…es are ``s|t`` the same defaults as prior < 0.13.0 remain, e.g. ``put`` implies 's' (Storer) format and ``append`` imples 't' (Table) format
ENH: (GH4629) Support for using a DatetimeIndex/PeriodsIndex directly in a datelike calculation
… into cancan101-excel_parse_utils Conflicts: doc/source/release.rst
API: remove the table keyword, replaced by fmt='s|t'
…uple on the rhs GH4576
BUG: Fix boolean comparison with a DataFrame on the lhs, and a list/tuple on the rhs GH4576
….py, allowing Series/Panel functionaility
CLN/API: Refactor of _get_numeric_data/_get_bool_data to core/generic.py, allowing Series/Panel functionaility
BUG: GH 4667 setitem error/dtype wrong with Series/Frame when setting with None
BUG: (GH4626) Fix decoding based on a passed in non-default encoding in pd.read_stata
Adds ability to set the bandwidth used for the kde and the indices at which it is evaluated. The first is passed to the bw_method kwarg for scipy.stats.gaussian_kde (for scipy >= 0.11.0); the second is passed to gkde.evaluate. For the case when scipy < 0.11.0 but bw_method is specified, bw_method is ignored (not passed to scipy.stats.gaussian_kde), but a warning is issued to alert the user.
pandas-dev#4298