Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pandas-dev/pandas
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1863adb
Choose a base ref
...
head repository: danfrankj/pandas
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: a17f9d7
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 12, 2014

  1. Add sharex and sharey to grouped boxplot

    sharex and sharey should be settable and by default False in a grouped boxplot. E.g. 
    
    In [97]: df = DataFrame(np.random.rand(10,2), columns=['Col1', 'Col2'] )
    
    In [98]: df['X'] =['A','A','A','A','A','B','B','B','B','B']
    
    In [99]: df.iloc[0:5, :2] += 10000
    
    In [100]: df.groupby('X').boxplot()  # this is unreadable
    danfrankj committed Aug 12, 2014
    Configuration menu
    Copy the full SHA
    a17f9d7 View commit details
    Browse the repository at this point in the history
Loading