I got the following error for trying import a valid pandas library.
InputRejected: Importing scatter_matrix from pandas.plotting raised an
ImportError. No modules or attributes with a similar name were found.
Our security system is concerned. If you continue to have import
errors, your account will be suspended until a human can talk to you.
Here is my code:
#map correlations
from pandas.plotting import scatter_matrix
attributes = ['p_ON', 'i_1', 'i_4', 'i_8', 'i_27']
scatter_matrix(housing[attributes], figsize = (12, 8))
Does anyone know why this is happening? Is quantopian using an outdated version of pandas?