pandas dataframe get values of a column by name

Solutions on MaxInterview for pandas dataframe get values of a column by name by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "pandas dataframe get values of a column by name"
Edoardo
19 Jun 2018
1In [4]: ages = titanic["Age"]
2
3In [5]: ages.head()
4Out[5]: 
50    22.0
61    38.0
72    26.0
83    35.0
94    35.0
10Name: Age, dtype: float64
11