UBC-MDS / magmaviz

MIT License
0 stars 3 forks source link

Update test_corrplot.py conditions to check for numeric columns #39

Closed iamMoid closed 2 years ago

iamMoid commented 2 years ago

if df[col].dtype == 'float' or df[col].dtype == 'int':

Can you update this to include:

if df[col].dtype == 'float' or df[col].dtype == 'int' or df[col].dtype == 'float64' or df[col].dtype == 'int64':

ruben1dlg commented 2 years ago

Of course! I was just working on it! 😀 Thanks!!