An open API service indexing awesome lists of open source software.

https://github.com/pavanreddy565/infosys_python_for_datascience

Data Science Course Tasks Repository This repository contains tasks and projects completed during the Data Science course from Infosys Springboard. It includes setup instructions for running Jupyter Notebook sessions in a virtual environment.
https://github.com/pavanreddy565/infosys_python_for_datascience

matplotlib numpy pandas

Last synced: about 2 months ago
JSON representation

Data Science Course Tasks Repository This repository contains tasks and projects completed during the Data Science course from Infosys Springboard. It includes setup instructions for running Jupyter Notebook sessions in a virtual environment.

Awesome Lists containing this project

README

          

# Tasks Repository for Data Science Course

This repository contains tasks assigned during the Data Science course from Infosys Springboard. Each folder corresponds to a specific task or project.

## Setup Instructions

To set up the project and run Jupyter Notebook sessions on your system, follow these steps:

1. **Install Jupyter Notebook:**
```
pip install jupyter notebook
```

2. **Create a Virtual Environment:**
```
python -m venv Infosys_python_for_DataScience
```

3. **Activate the Virtual Environment:**
- On Windows:
```
cd Infosys_python_for_DataScience
Scripts\activate
```
- On macOS/Linux:
```
source Infosys_python_for_DataScience/bin/activate
```

4. **Start Jupyter Lab:**
```
jupyter lab
```

This will launch Jupyter Lab in your default web browser. You can now navigate to the task folders and open the corresponding notebooks to explore the assignments and projects.