Skip to content

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

Open
wants to merge 261 commits into
base: master
Choose a base branch
from
Open

Conversation

khgitting
Copy link
Owner

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

@cpcloud
Copy link

cpcloud commented Jul 21, 2013

@khgitting looks like you submitted a pr to your own master branch

please rebase off of pydata/pandas/master. try not to go any further back in the history otherwise you'll end up including merge commits and other's commits as you see above.

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'

@cpcloud
Copy link

cpcloud commented Jul 21, 2013

finally, submit a PR to the pydata:master branch not to your own master...i think there are instructions floating around on github somewhere but i don't remember exactly where

hayd and others added 27 commits July 24, 2013 22:54
CLN: let URLError fall through in pandas.io.html._read
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
jreback and others added 30 commits August 23, 2013 06:26
…_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'
BUG: Fix boolean comparison with a DataFrame on the lhs, and a list/tuple on the rhs GH4576
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.