How to use the n.e function in n

To help you get started, we’ve selected a few n examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github idrdex / star-django / frontend / app / analysis / index.js View on Github external
var series = _.map(groupedData, (d) => {
        const result = {
            title: d.studlab,
            md: d.TE,
            left: d.lower,
            right: d.upper,
            experimental: {
                total: d['n.e'],
                mean: d['mean.e'],
                sd: d['sd.e'],
            },
            control: {
                total: d['n.c'],
                mean: d['mean.c'],
                sd: d['sd.c'],
            },
            fixedWeight: d['w.fixed'] / data['w.fixed.w'],
            randomWeight: d['w.random'] / data['w.random.w'],
        };
        return result;
    });
github idrdex / star-django / static / plots.html View on Github external
var series = _.map(groupedData, function(d) {
    return {
        title: d.studlab,
        md: d.TE,
        left: d.lower,
        right: d.upper,
        experimental: {
            total: d["n.e"],
            mean: d["mean.e"],
            sd: d["sd.e"],
        },
        control: {
            total: d["n.c"],
            mean: d["mean.c"],
            sd: d["sd.c"],
        },
        fixedWeight: d["w.fixed"]/data['w.fixed.w'],
        randomWeight: d["w.random"]/data['w.random.w'],
    }
});

n

Interactively Manage All Your Node Versions

MIT
Latest version published 1 month ago

Package Health Score

89 / 100
Full package analysis