Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.Series.head

Series.head(n=5)[source]

Return the first n rows.

Parameters:

n : int, default 5

Number of rows to select.

Returns:

obj_head : type of caller

The first n rows of the caller object.

Scroll To Top