Learn practical skills, build real-world projects, and advance your career
import warnings
warnings.filterwarnings('ignore')
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
df = pd.read_csv('https://raw.githubusercontent.com/ingledarshan/AIML-B2/main/data.csv')
df.head()
df.describe()