Basic Pandas Project
import numpy as np
import pandas as pd
df=pd.read_csv('diabetes.csv')
df.head()
# Calculate the mean using pandas
mean_values = df.mean()
print("Mean values of each numerical column:\n", mean_values)
# Find the maximum value using pandas
max_values...
shravanii.hashnode.dev2 min read