Computer Science, asked by kurubakhamal2906, 7 months ago

Given a Pandas series called Sequences, the command which will display the first 4 rows is
a. print(Sequences.head(4) b.print(Sequences.Head(4)) c.print(Sequences.heads(4)
d. printed Sequences. Heads(4))​

Answers

Answered by atmarampatil399
9

The series name: PANDA. ||. PYTHON

Attachments:
Answered by priyaag2102
15

The correct answer to this question is option a. print(Sequence.head(4)).

Explanation:

  • Pandas Series is a one-dimensional categorized array capable of infolding data of any type (string, integer, float, python objects, etc.).  
  • The axis labels are together called index.  

  • Pandas Series is nothing but a column in the excel sheet.  

  • Labels need not be exclusive but must be a hashable type.

Similar questions