Trouver la longueur maximale en chaîne dans Pandas DataFrame

df.text.map(lambda x: len(x)).max()
#or
df['text_corrected'].max()
SaadMakhdoom