Teradata Package for Python Function Reference | 20.00 - shape - Teradata Package for Python - Look here for syntax, methods and examples for the functions included in the Teradata Package for Python.
Teradata® Package for Python Function Reference - 20.00
- Deployment
- VantageCloud
- VantageCore
- Edition
- Enterprise
- IntelliFlex
- VMware
- Product
- Teradata Package for Python
- Release Number
- 20.00.00.03
- Published
- December 2024
- ft:locale
- en-US
- ft:lastEdition
- 2024-12-19
- dita:id
- TeradataPython_FxRef_Enterprise_2000
- Product Category
- Teradata Vantage
- teradataml.dataframe.dataframe.DataFrame.shape
- Returns a tuple representing the dimensionality of the DataFrame.
PARAMETERS:
None
RETURNS:
Tuple representing the dimensionality of this DataFrame.
EXAMPLES:
>>> load_example_data("dataframe","sales")
>>> df = DataFrame.from_table('sales')
>>> df
Feb Jan Mar Apr datetime
accounts
Orange Inc 210.0 None None 250 04/01/2017
Yellow Inc 90.0 None None None 04/01/2017
Red Inc 200.0 150 140 None 04/01/2017
Blue Inc 90.0 50 95 101 04/01/2017
Jones LLC 200.0 150 140 180 04/01/2017
Alpha Co 210.0 200 215 250 04/01/2017
>>> df.shape
(6, 6)
>>>
RAISES:
TeradataMlException (TDMLDF_INFO_ERROR)