which of the following is not an attribute of pandas dataframe? length , T , size , shape
Answers
Answer:
T, Size and shape
Explanation:
These are the attributes of pandas dataframe
Answer:
The answer is LENGTH
Explanation:
What is the primary function of DataFrame?
DataFrame is a 2-dimensional labelled data structure with potentially different types of columns. Consider it similar to a spreadsheet, SQL table, or dict of Series objects. It is the most frequently used pandas object.
What is Pandas Dataframe?
Pandas DataFrame is a two-dimensional, size-mutable tabular data structure with labelled axes (rows and columns). A data frame is a two-dimensional data structure in which data is aligned in rows and columns in a tabular fashion. Pandas DataFrame is made up of three major components: data, rows, and columns.
Pandas Attributes
Attributes are similar to methods, but instead of transforming variables or data, they are used to provide additional information about the data you have. Pandas Series objects include a number of built-in attributes that can be used.
- index
- columns
- axes
- dtypes
- size
- shape
- ndim
- empty
- T
- values
To know more: https://brainly.in/question/6948039
https://brainly.in/question/22722286
#SPJ2