I have this data frame:
its a print of the first lines of my dataframe, it have around 11k lines its made of twitter data
I was using:
df.loc[(df["screen_name"]=="vagnerfsm")]
to get specific lines that have tweets made by this user
but I still don't know how to get lines from a specific day:
df.loc[(df["created_at"]=="Mon May 25")]
<- I believe i need some specific code, like * in excel, to make it understand that I want all data that begin with "Mon May 25".
Whats should I put?
Yeah, its a noob question, but I'm learning python since a few weeks, so.. if someone can help... suggestions are welcome