Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Side by Side Diff: polymer_0.4.0/bower_components/chartnewjs/Add-ins/stats.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 function stats(data, config) { 2 function stats(data, config) {
3 data.stats = {}; 3 data.stats = {};
4 if (typeof data.datasets == 'undefined') { // Pie structure; 4 if (typeof data.datasets == 'undefined') { // Pie structure;
5 PSbasic(data); 5 PSbasic(data);
6 } else { // line structure; 6 } else { // line structure;
7 LSbasic(data); 7 LSbasic(data);
8 Linear_Regression(data); 8 Linear_Regression(data);
9 } 9 }
10 replace_stats(data, config); 10 replace_stats(data, config);
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 found = true; 810 found = true;
811 } 811 }
812 } 812 }
813 } 813 }
814 } 814 }
815 return { 815 return {
816 found: found, 816 found: found,
817 resval: resval 817 resval: resval
818 }; 818 };
819 }; 819 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698