Learn practical skills, build real-world projects, and advance your career
import pandas as pd 
import numpy as np
import matplotlib.pyplot as mltp
import seaborn as sns
data = pd.read_csv(r"C:\Users\hp\Pictures\MY PIC\eduonix projects\prosperLoanData.csv")
data
sns.distplot (x=data['CreditScoreRangeUpper'])
C:\Users\hp\anaconda3\lib\site-packages\seaborn\distributions.py:2557: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms). warnings.warn(msg, FutureWarning)
<AxesSubplot:ylabel='Density'>
Notebook Image