New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bdelab/jscat

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bdelab/jscat - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

package.json
{
"name": "@bdelab/jscat",
"version": "1.0.2",
"version": "1.0.3",
"description": "A library to support IRT-based computer adaptive testing in JavaScript",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -12,11 +12,11 @@ # jsCAT: Computer Adaptive Testing in JavaScript

```JavaScript
import {jsCAT} from '@bdelab/jscat';
import {normal, estimateAbility, findNextItem} from '@bdelab/jscat';
// declare prior if you choose to use EAP method
const prior = jsCAT.normal();
const prior = normal();
// for each adaptive trial, you will use the following functions
const theta = jsCAT.estimateAbility(answers, zetas, method, minTheta, maxTheta, prior);
const theta = estimateAbility(answers, zetas, method, minTheta, maxTheta, prior);
const nextStimulus = jsCAT.findNextItem(stimuli, theta, method, deepCopy);
const nextStimulus = findNextItem(stimuli, theta, method, deepCopy);
```

@@ -23,0 +23,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc