This is a repository showing the data exporation techniques that we as a team are exploring to make the data anaysis and manipulation and easier task.
Before you begin, ensure you have the following installed:
-
Clone the repository:
git clone https://github.com/bytecodediary/data-exploration.git
cd data-exploration
-
Create a virtual environment:
You can use venv to create a virtual environment. Run the following command:
python -m venv venv
This will create a directory named venv in your project folder.
Activate the virtual environment:
On Windows:
venv\Scripts\activate
On macOS and Linux:
source venv/bin/activate
After activation, your command prompt should change to indicate that the virtual environment is active.
Once your virtual environment is activated, you can install the required packages listed in requirements.txt:
pip install -r requirements.txt
This command will install all the dependencies specified in the requirements.txt file.