1e5b37f18b4c8fa60d24bd212e7a351121b6dfcc,ggplot/themes/theme_bw.py,theme_bw,__init__,#theme_bw#,11
Before Change
super(theme_bw, self).__init__()
self._rcParams["axes.facecolor"] = "white"
self._rcParams["grid.linewidth"] = "0.5"
self._rcParams["grid.color"] = "//E5E5E5"
self._rcParams["xtick.color"] = "black"
self._rcParams["ytick.color"] = "black"
def apply_theme(self, ax):
After Change
def __init__(self):
theme_gray.__init__(self)
d = {
"axes.facecolor": "white",
"grid.linewidth": "0.5",
"grid.color": "//E5E5E5",
"xtick.color": "black",
"ytick.color": "black",
}
self._rcParams.update(d)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: has2k1/plotnine
Commit Name: 1e5b37f18b4c8fa60d24bd212e7a351121b6dfcc
Time: 2015-09-16
Author: has2k1@gmail.com
File Name: ggplot/themes/theme_bw.py
Class Name: theme_bw
Method Name: __init__
Project Name: asyml/texar
Commit Name: 77c08dbc5f557c0548d123992b1321505a64e096
Time: 2018-05-29
Author: zhitinghu@gmail.com
File Name: texar/modules/encoders/rnn_encoders.py
Class Name: BidirectionalRNNEncoder
Method Name: default_hparams
Project Name: PyThaiNLP/pythainlp
Commit Name: 75ab30d9111eea3d10ac88e907ddb2bc18232c1d
Time: 2018-10-25
Author: arthit@gmail.com
File Name: pythainlp/ner/__init__.py
Class Name:
Method Name: _doc2features