Wednesday, 31 July 2019

🐼 New DataSet Exploration in less time 🐼

       Just Use pandas_profiling  :  A Fantastic Package

        Steps:

  • Install pandas_profiling library via pip or conda. 
            pip install pandas-profiling
            conda install -c conda-forge pandas-profiling
  • import pandas_profiling
  • It's a time saving trick in few lines of code when exploring the  data.


Wednesday, 24 July 2019

🐼 Take a look at the fillna() function 🐼


        
      fillna() function
  • It helps to fill out the missing data.
  • If you think that some entries don’t need to be filled out, you can just remove them using the dropna() function.