Hi
Let’s say I have code like this:
import pandas as pd
df = pd.read_csv(filename)
I would expect that if I now type
df.rena
Sublime would autocomplete to the method rename
for that dataframe
Is this not the case?
I mean, autocompletion via Anaconda works well when I try it on direct imports (e.g. pd.read...
will show the many possibilities), but is it meant to be working with generated objects as that dataframe?
Cheers!
Javier