Python Forum
Manipulating Series in Dataframe (Pandas)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Manipulating Series in Dataframe (Pandas)
#1
Hi,

I have a date column in a data frame that looks like this:

(Year-Month-Day)
2017-09-21
2018-11-25

I am trying to create a function that considers only the year, I have been trying the following.

df[df['DateColumn'].str[:4]=='2017']

But I am receiving this error:
AttributeError: Can only use .str accessor with string values, which use np.object_ dtype in pandas

Any chance to point what I am missing here? Should I change the column to strings, or is there a way to do something similar with the series?

Thank you for your help,
Wendy
Reply
#2
Pandas is very flexible, so you access year component of a date-column easily : df.loc[:, 'DateColumn'].dt.year

Also, you can select desired rows of the dataframe by year:

df.loc[df.loc[:, 'DateColumn'].dt.year == 2017, :]
Reply
#3
This worked:

df.loc[df.loc[:, 'DateColumn'].dt.year == 2017, :]

Thank you!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
Question [Solved] Formatting cells of a pandas dataframe into an OpenDocument ods spreadsheet Calab 1 640 Mar-01-2025, 04:51 AM
Last Post: Calab
  Find duplicates in a pandas dataframe list column on other rows Calab 2 2,105 Sep-18-2024, 07:38 PM
Last Post: Calab
  Find strings by index from a list of indexes in a different Pandas dataframe column Calab 3 1,602 Aug-26-2024, 04:52 PM
Last Post: Calab
  Add NER output to pandas dataframe dg3000 0 1,135 Apr-22-2024, 08:14 PM
Last Post: dg3000
  HTML Decoder pandas dataframe column mbrown009 3 2,616 Sep-29-2023, 05:56 PM
Last Post: deanhystad
  Use pandas to obtain cartesian product between a dataframe of int and equations? haihal 0 1,986 Jan-06-2023, 10:53 PM
Last Post: haihal
  Pandas Dataframe Filtering based on rows mvdlm 0 2,060 Apr-02-2022, 06:39 PM
Last Post: mvdlm
  Pandas dataframe: calculate metrics by year mcva 1 3,387 Mar-02-2022, 08:22 AM
Last Post: mcva
  Pandas dataframe comparing anto5 0 1,892 Jan-30-2022, 10:21 AM
Last Post: anto5
  PANDAS: DataFrame | Replace and others questions moduki1 2 2,598 Jan-10-2022, 07:19 PM
Last Post: moduki1

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020