-
Create a Virtual Environment
Run the following command to create a virtual environment:python -m venv venv
-
Activate the Virtual Environment
Activate the environment using the appropriate command for your operating system:- On Windows:
venv\Scripts\activate
- On macOS/Linux:
source venv/bin/activate
- On Windows:
-
Install Required Packages
Install all necessary dependencies by running:pip install -r requirements.txt
- Open the provided Jupyter Notebook file
data_analytics.ipynbin your preferred IDE or Jupyter environment. - Click on
Select Kernaland choosepython environment -> venv - Click on
Run Allto execute all cells sequentially.
This will process the datasets, perform analyses, and generate visualizations.
- The outputs of each cell are displayed directly within the notebook upon execution.
- Detailed interpretations and business insights derived from the analyses are documented in the
Interpretations_&_Insights.pdffile for your reference.
-
Ensure all required datasets are available in the same directory as the notebook before execution.
- Data Analyst Intern Assignment - Excel.xlsx
- requirements.txt
- data_analytics.ipynb
-
If any issues occur during package installation or execution, verify the Python version and ensure compatibility with the dependencies listed in
requirements.txt.