Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including ml-preprocess with all npm packages installed. Try it out:

import {normal} from 'ml-preprocess'; // vectors let vector = [1000, 2000, 3000]; normal(vector); // [-1, 0, 1] // matrices let matrix = [ [2000, 1000, 3000], [3000, 2000, 1000], [1000, 1000, 1000] ]; normal(matrix); // [[0, -1, 1], [1, 0, -1], [0, 0, 0]]

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

ml-preprocess v0.1.0

Preprocess functions to improve the representation and quality of data

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free