I have to calculate NORM.DIST:
NORM.DIST(x,mean,standard_dev,cumulative) in my express.js project. But unable to find any good package/library to do so.
In Python, we have scipy, using which we can calculate Cumulative Norm. Dist.
I have other option, that I do axios call to Python server, but I want to avoid it as it will slow the response of my API on JS server.
Looking for suitable npm package/library.