| [ Web Proxy ] |
| Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.pandas.api.typing.StringMethods.upper.html | [Back] [Original] |
Section Navigation
Convert strings in the Series/Index to uppercase.
Equivalent to str.upper().
Examples:
>>> import bigframes.pandas as bpd
>>> s = bpd.Series(['lower',
... 'CAPITALS',
... 'this is a sentence',
... 'SwApCaSe'])
>>> s.str.upper()
0 LOWER
1 CAPITALS
2 THIS IS A SENTENCE
3 SWAPCASE
dtype: string
Series with uppercase strings.
Copyright 2019, Google.
Created using Sphinx 8.1.3.
Built with the PyData Sphinx Theme 0.19.0.
| Web Proxy Viewer | New URL | Original Page |