d37577ab61980311ee479e010c10294323d37e2a,pliers/updater.py,,check_updates,#,10
Before Change
if prior_data is None:
results.to_csv(datastore, index=False)
return "File created"
else:
mismatches = []
last = prior_data[
prior_data.time_extracted == prior_data.time_extracted.max()].\
After Change
new_data = prior_data.append(results)
new_data.to_csv(datastore, index=False)
extractors = set([m.split(".")[0] for m in mismatches])
return {"changed_extractors" : extractors, "mismatches" : mismatches}
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: tyarkoni/pliers
Commit Name: d37577ab61980311ee479e010c10294323d37e2a
Time: 2017-11-02
Author: delavega@utexas.edu
File Name: pliers/updater.py
Class Name:
Method Name: check_updates
Project Name: danforthcenter/plantcv
Commit Name: ee7dc09812df5dded34adcde4267d9c754e3b655
Time: 2019-09-11
Author: haleyschuhl@gmail.com
File Name: plantcv/plantcv/hyperspectral/read_data.py
Class Name:
Method Name: read_data
Project Name: ncullen93/torchsample
Commit Name: a7d92f7020dfe8854430ef13ed2923b2606a6262
Time: 2017-05-11
Author: ncullen.th@dartmouth.edu
File Name: torchsample/modules/module_trainer.py
Class Name: ModuleTrainer
Method Name: evaluate