Znajdź maksymalną długość w ciągu w PandaS DataFrame

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