Start writing…
Tell the story behind the code.
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as pltpython
df = pd.read_csv('LungCapData2.csv')
df.head()python
Age Height LungCap 0 9 57.0 3.124 1 8 67.5 3.172 2 7 54.5 3.160 3 9 53.0 2.674 4 9 57.0 3.685
df.shapepython
(654, 3)
df.isnull().sum()python
Age 0 Height 0 LungCap 0 dtype: int64
sns.pairplot(data=df)
plt.show()python
.png)