5fb711e976485cd72371d9fb173618348ed746b1,examples/plotting/file/boxplot.py,,,#,27

Before Change



// prepare outlier data for plotting, we need coordinates for every outlier.
if not out.empty:
    outx = []
    outy = []
    for keys in out.index:
        outx.append(keys[0])
        outy.append(out.loc[keys[0]].loc[keys[1]])

After Change



// prepare outlier data for plotting, we need coordinates for every outlier.
if not out.empty:
    outx = list(out.index.get_level_values(0))
    outy = list(out.values)

p = figure(tools="", background_fill_color="//efefef", x_range=cats, toolbar_location=None)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: bokeh/bokeh
Commit Name: 5fb711e976485cd72371d9fb173618348ed746b1
Time: 2020-12-16
Author: dirk.biesinger@gmail.com
File Name: examples/plotting/file/boxplot.py
Class Name:
Method Name:


Project Name: bokeh/bokeh
Commit Name: 061d916ba77932d50e41c83f476d8c0d55674856
Time: 2018-10-13
Author: xavart2011@gmail.com
File Name: examples/app/gapminder/main.py
Class Name:
Method Name:


Project Name: CamDavidsonPilon/lifelines
Commit Name: 279f47ca9fe95b3248f31db3580e1748e05ba041
Time: 2020-07-11
Author: cam.davidson.pilon@gmail.com
File Name: lifelines/fitters/__init__.py
Class Name: ParametericAFTRegressionFitter
Method Name: _create_initial_point