You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code uses .ix for indexing in pandas DataFrames, which is deprecated. It should be replaced with .loc or .iloc depending on whether label-based or integer-based indexing is intended. Using .loc is generally preferred when dealing with labels.