This project aims to estimate the total number of units produced by analyzing serial numbers. By entering the highest observed serial number along with the total number of observations, it is possible to determine an estimate of the total number of units produced. These units can be of various types, such as wagons, buses, tanks, etc. The inspiration for this project comes from this video: https://www.youtube.com/watch?v=WLCwMRJBhuI
The project has been built using nuxt js. You can run it locally to use it.
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installStart the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run devBuild the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run buildLocally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run previewCheck out the deployment documentation for more information.