ProbsCalc is a simple calculator that help user to calculate discrete distribution with given input. Currently, ProbsCalc support four features:
-
Binomial distribution
-
Geometric distribution
-
Hypergeometric distribution
-
Poisson distribution
Files in this repository is used as frontend side of ProbsCalc
-
Pre-running:
-
Install
node_modules
withyarn install
command. -
Make sure the backend side is running. Then, set
NEXT_PUBLIC_API_URL
to backend address.
-
-
Run application:
-
Use
yarn dev
to run application in development mode. -
Use
yarn build-production
to build application andyarn start
to run application in production mode.
-
-
Open
localhost:8080
in your browser.