npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vector-object

v1.3.0

Published

A vector class supporting vector operations in n-dimensional space. Useful for word vectors calculation.

Downloads

995

Readme

Vector Object

Build Status NPM version

This is a n-dimensional vector implementation in javascript. A vector can be created using json objects, with the object keys as the components. It is useful for cases like word vector calculations. For example, calculating the cosine similarity of two word vectors.

The advantage of using json object over array to define a vector is that we do not need the two vectors have the same number of components for calculations. Take the following example:

Using this library:

const a = new Vector({ react: 1, nodejs: 2, angular: 1 });
const b = new Vector({ nodejs: 2, marko: 3, nextjs: 2 });

const similarity = a.getCosineSimilarity(b);

Compare what if using array (Note: this is not supported in this library):

// assume index 0: react, index 1: nodejs, index 2: angular, index 3: marko, index 4: nextjs
const a = new Vector([1, 2, 1, 0, 0]);
const b = new Vector([0, 2, 0, 3, 2]);

const similarity = a.getCosineSimilarity(b);

It is much easier to define vector in object than array as we need to pad much zeros into the array if two vectors have very few overlapping components. The vectors can be large but sparse if we are doing word analyzation.

Installation

npm install vector-object

And then import the Vector class

const Vector = require('vector-object');

Major Change Log

1.3.0

Upgrade dependency to fix security alerts

1.2.0

Fix the issue if the word vector contains words which are same as the instance methods

1.1.0

The vector operations now would update the instance itself, rather than creating a new vector object. It is for better performance so less objects are created during the calculations. This is a NON-COMPATIBLE change. If you are using versions < 1.1.0, you may need rewrite a bit your code. Sorry for that 🙏🏼

Usage

constructor

create a new vector object

const a = new Vector({ x: 1, y: 2, z: 3 });

clone()

return a copy of the vector object

const a = new Vector({ x: 1, y: 2, z: 3 });
const b = a.clone();

console.log(b); // return { x: 1, y: 2, z: 3 }

toObject()

return an json object of the vector

const a = new Vector({ x: 1, y: 2, z: 3 });

console.log(a.toObject()); // return { x: 1, y: 2, z: 3 }

getComponents()

return array of the components in the vector object

const a = new Vector({ react: 5, angular: 2, vue: 2, marko: 1 });

console.log(a.getComponents()); // return ['react', 'angular', 'vue', 'marko']

get(component)

return the value of the component in the vector object

const a = new Vector({ react: 5, angular: 2, vue: 2, marko: 1 });

console.log(a.get('react')); // return 5
console.log(a.get('nextjs')); // return undefined

set(component, value)

set the value of the component in the vector object

const a = new Vector({ react: 5, angular: 2, vue: 2, marko: 1 });
a.set('react', 10);

console.log(a); // return { react: 10, angular: 2, vue: 2, marko: 1 }

isEqual(vector)

return a boolean value if the input vector is same as itself

const a = new Vector({ a: 1, b: 2, c: 3 });
const b = new Vector({ a: 1, b: 2, c: 3 });
const c = new Vector({ a: 1, b: 2 });

console.log(a.isEqual(b)); // return true
console.log(a.isEqual(c)); // return false
console.log(c.isEqual(a)); // return false

getDistance(vector)

return the distance between the target vector and the vector object

const a = new Vector({ a: 1, b: 2, c: 3 });
const b = new Vector({ b: 2, c: 1, d: 2 });
const distance = a.getDistance(b);

console.log(distance); // return 3

getLength()

return the length of the vector object

const a = new Vector({ a: 3, b: 4 });
const length = a.getLength();

console.log(length); // return 5

getDotProduct(vector)

return the dot product of the input vector and the vector object

const a = new Vector({ a: 1, b: 2, c: 1 });
const b = new Vector({ b: 2, c: 2 });
const dotProduct = a.getDotProduct(b);

console.log(dotProduct); // return 6

getCosineSimilarity(vector)

return the cosine similarity (range from 0 to 1, the larger the more similar between the two vectors) of the input vector and the vector object

const a = new Vector({ ant: 1, bird: 2, cat: 3 });
const b = new Vector({ bird: 2, cat: 2, dog: 2 });
const similarityAA = a.getCosineSimilarity(a);
const similarityAB = a.getCosineSimilarity(b);

console.log(similarityAA); // return 1
console.log(similarityAB); // return 0.6236095644623236

normalize()

normalized the vector and return itself

const a = new Vector({ a: 3, b: 4 });
a.normalize();

console.log(a); // return { a: 0.6, b: 0.8 }

add(vector)

perform additional with the input vector and return itself

const a = new Vector({ a: 1, b: 2 });
const b = new Vector({ b: 1, c: 2 });
a.add(b);

console.log(a); // return { a: 1, b: 3, c: 2 }

subtract(vector)

perform subtraction with the input vector and return itself

const a = new Vector({ a: 1, b: 2 });
const b = new Vector({ b: 1, c: 2 });

console.log(a); // return { a: 1, b: 0, c: -2 }

multiply(scalar)

perform scalar multiplication and return itself

const a = new Vector({ a: 1, b: 2, c: 1 });
a.multiply(10);

console.log(a); // return { a: 10, b: 20, c: 10 }

divide(scalar)

perform scalar division and return itself

const a = new Vector({ a: 1, b: 2, c: 1 });
a.divide(10);

console.log(a); // return { a: 0.1, b: 0.2, c: 0.1 }

chainability

The vector calculation methods are chainable so you can write your expression in the following way:

const a = new Vector({ a: 1, b: 2, c: 1 });
const b = new Vector({ a: 2, b: 1 });
const c = new Vector({ a: 1, b: 4, d: 2 });

const v = a.clone().add(b).subtract(c).normalize();

Test

npm install
npm run test

To-Dos

Authors

License

MIT