StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/d3_exploding_boxplot/node_modules/d3/bin/meteor

20 lines
576 B

#!/usr/bin/env node
var fs = require("fs"),
package = require("../package.json");
console.log(
"// Package metadata for Meteor.js.\n" +
"\n" +
"Package.describe({\n" +
" name: \"d3js:d3\", // http://atmospherejs.com/d3js/d3\n" +
" summary: \"D3 (official): " + package.description + "\",\n" +
" version: \"" + package.version + "\",\n" +
" git: \"https://github.com/mbostock/d3.git\"\n" +
"});\n" +
"\n" +
"Package.onUse(function(api) {\n" +
" api.versionsFrom([\"METEOR@1.0\"]);\n" +
" api.addFiles(\"d3.js\", \"client\");\n" +
"});"
);