What do these attributes of series signify ?
(i) size
(ii) itemsize
(iii) nbytes
2 Likes
(i) size — It returns the number of elements in the underlying data.
(ii) itemsize — It returns the size of the dtype of the item of the underlying data.
(iii) nbytes — It returns the number of bytes in the underlying data.
Answered By
1 Like
Name the Pandas object that can store one dimensional array like object and can have numeric or labelled indexes.
Can you have duplicate indexes in a series object ?
If S1 is a series object then how will len(S1) and S1.count() behave ?
What are NaNs ? How do you store them in a data structures ?