I am having a problem similar to this user: when calling autocomplete on df.col., I get no autocompletion even after evaluating a cell containing only df.col. For instance, I'd like to see df.col.str.matc to autocomplete to df.col.str.match. What can I do to solve this?
Take as example the following dataframe:
import pandas as pd
data = [['Alex in FL','ten'],['Bob in FLORIDA','five'],['Will in GA','three']]
df = pd.DataFrame(data,columns=['Name','Age'])
#Dataframe:
Name Age
0 Alex in FL ten
1 Bob in FLORIDA five
2 Will in GA three
#Command that should autocomplete (but does not):
df.Name.str.matc [+TAB]
I do not want to try hinterland since I only want autocomplete upon pressing tab.
Thanks a lot in advance!