5e853c5863e8e1a5c6d5e5faf13b5b35ede486c2,lingpy/compare/lexstat.py,LexStat,__init__,#LexStat#Any#,82
Before Change
"check" : False,
"apply_checks":False
}
for k in defaults:
if k not in keywords:
keywords[k] = defaults[k]
// store the model
if str(keywords["model"]) == keywords["model"]:
self.model = rcParams[keywords["model"]]
else:
self.model = keywords["model"]
After Change
**keywords
):
kw = {
"model" : rcParams["sca"],
"merge_vowels" : rcParams["merge_vowels"],
"transform" : rcParams["lexstat_transform"],
"check" : False,
"apply_checks" : False,
"defaults" : False
}
kw.update(keywords)
if kw["defaults"]: return kw
// store the model
if str(kw["model"]) == kw["model"]:
self.model = rcParams[kw["model"]]
In pattern: SUPERPATTERN
Frequency: 4
Non-data size: 14
Instances
Project Name: lingpy/lingpy
Commit Name: 5e853c5863e8e1a5c6d5e5faf13b5b35ede486c2
Time: 2013-11-23
Author: mattis.list@posteo.de
File Name: lingpy/compare/lexstat.py
Class Name: LexStat
Method Name: __init__
Project Name: lingpy/lingpy
Commit Name: 5e853c5863e8e1a5c6d5e5faf13b5b35ede486c2
Time: 2013-11-23
Author: mattis.list@posteo.de
File Name: lingpy/compare/lexstat.py
Class Name: LexStat
Method Name: _get_matrices
Project Name: lingpy/lingpy
Commit Name: 5e853c5863e8e1a5c6d5e5faf13b5b35ede486c2
Time: 2013-11-23
Author: mattis.list@posteo.de
File Name: lingpy/compare/lexstat.py
Class Name: LexStat
Method Name: output
Project Name: lingpy/lingpy
Commit Name: 5e853c5863e8e1a5c6d5e5faf13b5b35ede486c2
Time: 2013-11-23
Author: mattis.list@posteo.de
File Name: lingpy/compare/lexstat.py
Class Name: LexStat
Method Name: cluster