Part_1 Stroke_Prediction – Preparation of data for analysis
In [1]: import pandas as pd import numpy as np import seaborn as sns import matplotlib.pyplot as plt df= pd.read_csv(’c:/1/Stroke_Prediction.csv’) df.head(5) Out[1]: ID Gender Age_In_Days […]
