Answers for "get column values pandas"

7

select columns pandas

df1 = df.iloc[:,0:2] # Remember that Python does not slice inclusive of the ending index.
Posted by: Guest on April-02-2020
0

pandas dataframe get values of a column by name

In [4]: ages = titanic["Age"]

In [5]: ages.head()
Out[5]: 
0    22.0
1    38.0
2    26.0
3    35.0
4    35.0
Name: Age, dtype: float64
Posted by: Guest on September-22-2021

Code answers related to "get column values pandas"

Python Answers by Framework

Browse Popular Code Answers by Language