Computer Science, asked by ojas1322, 3 months ago

Write a program for creating pandas series from a dictionary
of values & an ndarray​

Answers

Answered by kumudarya365
1

Answer:

Pandas Series is a one-dimensional labeled array capable of holding data of any type (integer, string, float, python objects, etc.). The axis labels are collectively called index. Pandas Series is nothing but a column in an excel sheet. In this article, we will see various ways of creating a series using different data types.The list of some values form the series of that values uses list index as series indexThe 1-D Numpy array of some values form the series of that values uses array index as series index.

Similar questions