Conversion and Numeric statistics using Bayesian
#On Windows:
1. Download Python
. Go to the official Python website: https://www.python.org/downloads/
. Click the "Download Python" button (it will suggest the latest version for Windows).
. Save the .exe file.
2. Install Python
. Run the downloaded .exe file.
. Check the box that says "Add Python to PATH" (important!).
. Click "Install Now" (or choose "Customize installation" if you want specific settings).
3. Verify Installation
. Open Command Prompt (Win + R, type cmd, and press Enter).
. c:/> python --version
. should display the version.#On MAC:
1. Download Python
. Go to Python’s official website: https://www.python.org/downloads/macos/
. Click Download Python (it will suggest the latest version for macOS).
2. Run the Installer
. Open the downloaded .pkg file.
. Follow the installation steps.
. Verify Installation
3. Verify Installation
. Open Terminal (Cmd + Space, type Terminal, and press Enter).
. > python3 --version or > python --versionRun the below command based on python version.
#if python3
1. pip3 install numpy
2. pip3 install scipy
3. pip3 install matplotlib
4. pip3 install seaborn
5. pip3 install tabulate
#if python
1. pip install numpy
2. pip install scipy
3. pip install matplotlib
4. pip install seaborn
5. pip install tabulate
#To run converstion
> python3 poc_bay_PTB.py
or
> python poc_bay_PTB.py#To run numeric
> python3 poc_bay_revenue.py
or
> python poc_bay_revenue.py