Informatics Practices

Which of the following statement is wrong in context of DataFrame ?

  1. Two dimensional size is Mutable
  2. Can Perform Arithmetic operations on rows and columns.
  3. Homogeneous tabular data structure
  4. Create DataFrame from numpy ndarray

Python Pandas

59 Likes

Answer

Homogeneous tabular data structure

Reason — The pandas DataFrames can hold heterogeneous data, meaning each column can have a different data type.

Answered By

1 Like


Related Questions