# Plot Joint plot
for col in numerical_columns[1:]: #df.describe().columns
g = sns.JointGrid(data=df, x=col, y="Rented Bike Count")
g.plot(sns.scatterplot, sns.histplot, sns.kdeplot)
fig.show()
# OR Plot Joint plot
for col in numerical_columns[1:]: #df.describe().columns
g = sns.JointGrid(data=df, x=col, y="Rented Bike Count")
g.plot(sns.scatterplot, sns.kdeplot)
fig.show()