Feature Engineering - Machine Learning -Python Implementation தமிழ்

Поделиться
HTML-код
  • Опубликовано: 21 дек 2024

Комментарии • 2

  • @gowthama757
    @gowthama757 5 дней назад +1

    Can I use the sklearn library's SimpleImputer method instead of dropna and fillna? I would like to know which is a more efficient way to fill the missing values.

    • @ds_with_keerthi
      @ds_with_keerthi  5 дней назад

      @@gowthama757 both do the same thing actually, filling NaN values. Just the libraries are different(pandas vs sklearn) But, if you are building a complete project like data cleaning, data transformation and modelling everything using Sklearn pipeline then simpleimputer comes handy. So, u can use both interchangeably.