Jupyter notebook – Lab Session – 12 – Panda Introduction

Read more »

Jupyter notebook – Lab Session – 11 – Numpy Introduction

Read more »

Jupyter notebook – Lab Session – 10 – Introduction of Data Types, Variables & checkpoint

Read more »

Jupyter notebook – Lab Session – 9 – Defining Function, Basic Module, and Package

Read more »

Jupyter notebook – Lab Session – 8 – Calculating Descriptive Statistics with math, statistics, numpy, pandas

Read more »

Jupyter notebook – Lab Session – 7 – Data Cleaning with Pandas

Read more »

Jupyter notebook – Lab Session – 6 – Conditions, Control Flow & Looping

Read more »

Jupyter notebook – Lab Session – 5 – Exploring Datasets with Pandas and Matplotlib

Read more »

Jupyter notebook – Lab Session – 4 – Exploring Datasets with Pandas

Read more »

Jupyter notebook – Lab Session 3 – Visualizing Data with Pandas, NumPy, matplotlib & seaborn

Read more »

Jupyter notebook – Lab Session – 2 – Analyzing Data with Pandas, NumPy & Visualizing Data with matplotlib

Read more »

What is Jupyter Notebook and use cases of Jupyter Notebook?

What is Jupyter Notebook? Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations, and narrative text. It’s widely…

Read more »

What is JupyterHub?

JupyterHub is an open-source, multi-user server designed to provide access to Jupyter Notebook environments for multiple users simultaneously. It’s particularly useful for organizations, educational institutions, and research teams that need…

Read more »

What is Anaconda?

Anaconda is a popular open-source distribution of the Python and R programming languages, designed specifically for scientific computing, data science, and machine learning. It provides a comprehensive platform that includes…

Read more »

Jupyter notebook – Lab Session – 1 – Exploring Dataset with Pandas and NumPy

Importing Libraries import pandas as pdimport numpy as np Explanation: Import the essential libraries. Loading the Dataset df = pd.read_csv(‘/path_to_your_dataset.csv’) Explanation: Load the dataset into a Pandas DataFrame. Display First…

Read more »

Installing Jupyter: Get up and running on your computer

Prereq How to install Paython 3? URL – https://www.python.org/downloads/ How to install PIP? Usually, pip is automatically installed if you are: How to Installing Jupyter Project Jupyter’s tools are available…

Read more »