Example:  Most of the 'matplotlib' and 'pandas' have this 'No suggestions' while code still runs: ``` # 3D Plot: fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X_train['width'], X_train['height'], X_train['color_score'], c=y_train, marker='o', s=100) ax.set_xlabel('width') ax.set_ylabel('height') ax.set_zlabel('color_score') plt.show() ``` Do we have to do anything special/additional to make it autocomplete modules ? Thanks. Juris.