bigframes.pandas.api.typing.StringMethods.rjust#
- StringMethods.rjust(width,fillchar='')→T[source]#
Pad left side of strings in the Series/Index up to width.
Examples:
>>>importbigframes.pandasasbpd
>>>ser=bpd.Series(['dog','bird','mouse'])>>>ser.str.rjust(8,fillchar='.')0 .....dog1 ....bird2 ...mousedtype: string
- Parameters:
- Returns:
Returns Series or Index with minimum number of char in object.
- Return type:
On this page