проблема с заменой выбросов медианой в python

#python #pandas #data-cleaning #outliers Вопрос: for col in ('DiabetesPedigreeFunction','Insulin'): Q1=df[col].quantile(0.25) Q3=df[col].quantile(0.75) IQR=Q3-Q1 upper_limit= Q3 1.5*IQR lower_limit= Q1-1.5*IQR db_median= float(df[col].median()) In_median= float(df[col].median()) df[col]=np.where(df[col]>upper_limit,db_median,df[col]) df[col]=np.where(df[col]>upper_limit,In_median,df[col]) Тем не менее, код работает хорошо, используя…

Продолжить чтениепроблема с заменой выбросов медианой в python