I'm using pycharm IDE, and several libraries such as scikit-learn and pandas. For some reason, if I create a new python file and do:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plot
pd. #no auto complete here
right after i type pd. auto complete doesn't seem to work. I'm getting nothing. However, if i run a python console within PyCharm, and do similar thing above, the console would pop up an autocomplete window showing all the members of pd..
how do i get autocomplete to work on the main python file?