Answers for "pandas.core.frame.dataframe"

0

pandas.core.frame.DataFrame to pandas.core.series.Series

>>> df = pd.DataFrame([list(range(5))], columns=["a{}".format(i) for i in range(5)])
>>> df
   a0  a1  a2  a3  a4
0   0   1   2   3   4
>>> df.iloc[0]
a0    0
a1    1
a2    2
a3    3
a4    4
Name: 0, dtype: int64
>>> type(_)
<class 'pandas.core.series.Series'>
Posted by: Guest on April-29-2021

Code answers related to "pandas.core.frame.dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language