Starting in pandas version 0.18.1, you can create a new datetime column directly from a DataFrame, based solely on the column names! It's a useful trick, which I explain in this video: kzbin.info/www/bejne/Y3_Fimp7bs1-rs0
@cossanfran6 жыл бұрын
Hello! I have a table with the date column. I want to group the data by month / year how do I do this?
@dikshyantthapa33674 жыл бұрын
I love you Bruh.. 😂.. No homo..thanks a lot!!!!
@cobbdouglas6904 жыл бұрын
You've saved my job on multiple occasions sir, thank you.
@dataschool4 жыл бұрын
That's awesome to hear! 🙌
@kasiditauable5 жыл бұрын
I am an aspiring data scientist. I just found a series of your videos. Thank you for doing this for all of us. Keep doing great work!
@dataschool4 жыл бұрын
Thanks for your kind words, and good luck to you!
@Martin-lv1xw4 жыл бұрын
You are naturally born to impart knowledge. Thanks for your videos br!
@dataschool4 жыл бұрын
Wow, I really appreciate your kind words! 🙏
@goktugerce8 жыл бұрын
I was actually going to ask you about this. I started learning Pandas thanks to your video series and I feel like I learnt a lot. Thanks for all the awesome videos.
@dataschool8 жыл бұрын
Wow, that's really great to hear! You're very welcome!
@goktugerce8 жыл бұрын
Actually, I still need some help. I want to create a column for "year/month" from datetime column. For example, if datetime is 2016-07-06 15:56:19, I want to map "2016-07" into a column. Of course I can get first seven characters by converting it to a string, but what is the correct way to do this? I have following the following lambda function: get_month = lambda x: '{}-{:02}'.format(x.to_datetime().year, x.to_datetime().month) my_df["year_month"] = my_df["timestamp"].map(get_month) For now, I do it like this but I am sure a better and more efficient way exists for the job. I'd be glad if you can help!
@dataschool8 жыл бұрын
If your desired end result is a string (such as '2016-07'), then I think using string methods is the way to go! Perhaps something like this: ufo.Time.dt.year.astype(str).str.cat(ufo.Time.dt.month.astype(str), sep='-') However, there is probably an even simpler approach that I'm not thinking of...
@goktugerce8 жыл бұрын
Awesome. It really is simpler than what I was doing. Thanks!
@archidar16 жыл бұрын
Hi, I know its a year late, but in case you (or anyone else is interested) "pd.Series.dt.strftime" is an easy way to output dates as strings in whatever format you like. pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.dt.strftime.html#pandas.Series.dt.strftime
@witotiw2 жыл бұрын
2022 and you're still saving us. Thanks for the excelent content
@dataschool2 жыл бұрын
You're welcome!
@akashmishra26614 жыл бұрын
I understood each and everything in this video and it helped me alot for my project. I just want to thank the instructor.
@dataschool4 жыл бұрын
Great to hear!
@oleholeynikov86594 жыл бұрын
5 years video, but the best on KZbin!!!
@dataschool4 жыл бұрын
Thanks very much for your kind words!
@christopherclark22054 жыл бұрын
Phenomenal description of working with dates and times in Pandas, very helpful.
@Diachron8 жыл бұрын
I've only recently stumbled onto your videos. Very clear and concise delivery. Good job!
@dataschool8 жыл бұрын
Thanks so much! Glad you are enjoying them.
@Cam-p2z5 жыл бұрын
These are the first videos I look for when I have pandas questions.
@dataschool5 жыл бұрын
Thanks!
@jsmit77304 жыл бұрын
I'm impressed. Simple explanations with examples. subbed and hit that bell. Thanks for the vid!
@dataschool4 жыл бұрын
Awesome, thank you!
@cmdeckermusic5 жыл бұрын
Thanks for this! You explain things very clearly and concisely.
@dataschool4 жыл бұрын
Thanks!
@aartiladdha015 жыл бұрын
All your videos are worth watching. I have learned a lot about pandas just from your videos. Thanks a ton :)
@dataschool5 жыл бұрын
Thanks Aarti!
@boubacaramaiga44085 жыл бұрын
I love the way you teach, easy to follow and to understand. Many Thanks.
@dataschool4 жыл бұрын
You're welcome!
@senz37574 жыл бұрын
Thanks for your great video! It seems pandas.Series.dt.weekday_name is removed in pandas version 0.23.0. and one can use pandas.Series.dt.day_name() instead.
@wilmarperez49624 жыл бұрын
Thanks for the tip. Was facing the same issue!
@Vishnu_Datta_16982 жыл бұрын
Thanks a lot
@jasper82912 жыл бұрын
Thanks :)
@RossThompson894 жыл бұрын
I really enjoyed this video and your teaching style! To the point, but well explained at a nice pace. Thank you for this :)
@dataschool4 жыл бұрын
Thank you so much!
@AsyraffLatiffi6 жыл бұрын
I've been watching your videos for a while now but never got the chance to comment on it i just want to say keep up the great work! You are just awesome!
@dataschool6 жыл бұрын
Thanks very much for your kind words! Much appreciated :)
@benjerome97384 жыл бұрын
I have a column containing times in the format hour, minute, second (e.g. 00:24:43) and are currently an 'object' type. How can I calculate the average time for this column? I have tried converting to a pandas datetime but this throws up several different errors when I try to calculate the mean? Also, I have three separate groups (full match, T1 and T2) how can I use groupby to figure out the mean times for each group? Thanks
@XinhLe3 жыл бұрын
4:25 .weekday_name is not working, used day_name() instead (2022 update). Thank u!
@dataschool2 жыл бұрын
Thanks for sharing!
@payalbhatia52446 жыл бұрын
@Data School , Mark, you are just amazing. :) You make it appear everything quite simple. My humble request is to kindle make a series on machine learning algorithms too.
@dataschool6 жыл бұрын
Thanks for your kind words and your suggestion!
@deepakpanigrahi96015 жыл бұрын
Data School is the best of all resource available on Pandas. thanks a ton!!
@dataschool5 жыл бұрын
Thanks!
@aakashvarma99608 жыл бұрын
Excellent explanation .I suggested these video series to most of my friends.
@dataschool8 жыл бұрын
Thanks so much! I really appreciate you spreading the word.
@marco45704 жыл бұрын
That bonus is what I needed. Thank you so much!
@dataschool4 жыл бұрын
You are so welcome!
@slavaslavia40856 жыл бұрын
New to Pandas, new to your channel, and soon New year =) Thanks for the videos!
@dataschool6 жыл бұрын
You're very welcome!
@python_by_abhishek3 жыл бұрын
Hi Kevin I have a doubt.. I have 1 column in which time is 42368.149155 When I convert it into year, days, month, hrs, min, sec I am getting 1970-01-01, 17:22:13.453068 I read that 1970 is the default year. How can I convert it into some other year, say 2016 or any other year. Kindly help.
@dataschool3 жыл бұрын
You might need to adjust the "unit", see examples here: pandas.pydata.org/docs/reference/api/pandas.to_datetime.html
@python_by_abhishek3 жыл бұрын
@@dataschool Thank You Kevin. Got it now.
@ΠαναγιώταΜωραΐτη-τ2μ3 жыл бұрын
So many great videos . Absolutely guidness. thanks from GREECE !
@dataschool3 жыл бұрын
Thank you!
@termica73492 жыл бұрын
Thnks for this explanation buddy! So clear and concise!
@dataschool2 жыл бұрын
Thanks for your kind words!
@goktugerce8 жыл бұрын
For anyone who wants to convert timezones, here's how you do it. First, you need to specify which timezone the date originally belongs to. In my case, it was UTC (Coordinated Universal Time). In my DataFrame (let's call it df), I have a column named "timestamp", with type datetime. I localized the column first: timestamp_utc = df["timestamp"].dt.tz_localize("UTC") Then I overwrite the timestamp column: df["timestamp"] = timestamp_utc.dt.tz_convert("Europe/Istanbul") I hope this method is correct and it helps someone!
@dataschool8 жыл бұрын
Awesome! Thanks so much for taking the time to share your code.
@SetarehFasihnia6 жыл бұрын
Hi, I just tried your code but it returned all NaT values? my original column was in datetime format and UTC + x timezone. I tried to convert it to US/Eastern time. Update: Apologies, turns out the error lies in trying to convert my 'timestamp' equivalent column into date time from object and inserting errors=coerce produced the NaT values.
@SatishKumar-yz4tn4 жыл бұрын
Thank you so much in taking time to explain so nicely.
@dataschool4 жыл бұрын
You're very welcome!
@pranavmendiratta31664 жыл бұрын
loved the tutorial, cleared my doubts! I like how you explain so patiently.
@pythonradio64973 жыл бұрын
I have a series of " 23:21:06 31/07/2019" format how to convert this to a time series
@rodrigoviverosphoto5 жыл бұрын
This is EXACTLY was a looking for. I love you.
@dataschool5 жыл бұрын
Awesome!
@nowyouknow22495 жыл бұрын
Thanks so much. You are one of the best teachers I have ever known. Thanks so much once more you are a darling.
@dataschool5 жыл бұрын
Wow! Thank you so much for your kind words! :)
@sarikadatta37062 жыл бұрын
this is an awesome video but the to_datetime is not working for me, it keeps giving me error like "hour must be in 0..23: 10/11/2006 24:00" I've tried everything
@sdoken8 жыл бұрын
When he says at 2:46 that to_datetime() is a top-level function, what does it mean? Is to_datetime() a pandas function? Or is it a python function? Thanks!
@dataschool8 жыл бұрын
It's a pandas function. It's called a top-level function because it's at the top level of the pandas namespace, meaning you call it using 'pd.function_name(df.series_name)' rather than 'df.series_name.function_name()'. The latter is called a Series method. Hope that helps!
@TorIvanBoine6 жыл бұрын
awesome videos. been watching quite a few now. So, I'm playing with my gpx running data. And I'm trying to convert the duration of my runs so I can plot them. But I just fail. How would you convert ints like 33:28 and 01:44:42 so it would be understood as 33 minutes and 1 hour 44 minutes and so on?
@dataschool6 жыл бұрын
Glad you like the videos! As for your question, it seems like extracting the datetime attributes (hours, minutes, seconds) and then doing the math with those attributes would solve your problem. Hope that helps!
@sinabaghaei35044 жыл бұрын
Special thanks for your valuable work. Is the attribute "weekday_name" in panda version '1.1.3' now deprecated? and instead now we have 'day_name()' method?
@frankdeng6245 жыл бұрын
HI Kevin, I met a problem when I read the csv file with date time. I use the following code to read the csv file, but got 2 warnings said PST and PDT can't be understood... Can you please help me solve this problem? thank you! data = pd.read_csv("datetime.csv",parse_dates = ['date/time']) Mar 3, 2019 12:16:44 AM PST UnknownTimezoneWarning: tzname PST identified but not understood. Pass `tzinfos` argument in order to correctly return a timezone-aware datetime. In a future version, this will raise an exception. category=UnknownTimezoneWarning)
@dataschool5 жыл бұрын
It's hard to say without investigating, I'm sorry!
@gurkanyesilyurt44613 жыл бұрын
You're king of this area man!!!!
@dataschool3 жыл бұрын
Thank you!
@jannahawkins8652 жыл бұрын
This is a great video. Thank you so much! Also, I wish the pandas API reference still looked like it does in this older video. It's harder to read now.
@dataschool2 жыл бұрын
I agree...
@carloseduardocorreacoimbra40402 жыл бұрын
Kevin, could we define a ts_min and ts_max, and select the events during this interval?
@farzanaislamadiba79874 жыл бұрын
Hi, I have applied the format as you had shown. But I am getting error called "AttributeError: 'DataFrame' object has no attribute 'Time'". Time is the column for my Date and time. How to solve it?
@leandrorberto2 жыл бұрын
Excellent class! As always! Cheers!
@dataschool2 жыл бұрын
Thank you!
@Gargi_3106Ай бұрын
I'm unable to use ufo.Time.dt.weekday_name as an attribute. What might be wrong?
@bloomingtruth339919 күн бұрын
Try ufo.Time.dt.day_name()
@deutschejar4 жыл бұрын
Nice video man, in 9:20 min, if you wanna group by month and year, how could you do that?
@gustavoviana11785 жыл бұрын
I'm so thankful for your tutorials
@dataschool5 жыл бұрын
You're welcome!
@deepakebenezer20894 жыл бұрын
Hi - qq - I have an excel sheet that has a column that includes dates, some of the dates have errors like '4/4/4/2020' or '/1/12/2020' - - is there a way python generate a dateframe column that lists all of these errors with their corresponding row information?
@samcathcart53884 жыл бұрын
Hi DataSchool tk u for gr8 vid on working with dates and times. I am trying to work out how to group data for days, months and years in the same plot, e.g. bar graphs for months and different colours for the years
@shilpikulshrestha94875 жыл бұрын
Hello sir, you are awesome teacher. Great videos Thank you very much
@dataschool5 жыл бұрын
Thanks so much for your kind words!
@majidm42154 жыл бұрын
Hello , I have a dataset with datatime index col. and it is weekly data , do I need to set freq='W' to apply forecasting models such as Holt-Winters, I tried : df.index.freq ='W', and got this error: OverflowError: int too big to convert"" please help me to fix this. Thank you
@j4y07854 жыл бұрын
Hi Data School, Just a quick question, I am still new at this and my apologies if this question as been answered already, how would I go about changing multiple columns to datetime? Thank you.
@manumadhavan92647 жыл бұрын
Hi, I have Hour column in format- 0,1,2,...22,23.How can i convert to 00:00:00,01:00:00,02:00:00...,22:00:00,23:00:00. Thanks in Advance Manu Madhavan
@dataschool7 жыл бұрын
I'm not sure the easiest way to do that off-hand. Sorry! And good luck!
@OmarMiranda7 жыл бұрын
for h in hour_column: datetime.time(h, 0, 0)
@devanshukala6264 жыл бұрын
I want to show the week of months as per the datetime columns. How can i do that? Please advise.
@myselfandpesit4 жыл бұрын
Thanks for the tutorial. I have a question. How can i find unique items under a given column as some could have been repeated?
@jameszanzarelli92557 жыл бұрын
I tried to use pd.to_datetime(df.variable) with my date variable (read as an object), but I'm getting this error: OutOfBoundsDatetime: Out of bounds nanosecond timestamp: 1410-02-25 00:00:00 What am I doing wrong?
@dataschool7 жыл бұрын
I'm not sure, sorry! I haven't seen that error before.
@jameszanzarelli92557 жыл бұрын
found it! python couldn't handle a date with year 1410
@dataschool7 жыл бұрын
Ha! Good to know!
@iubob983 жыл бұрын
wow.. you're tutorials are just so awesome !!!!!
@dataschool3 жыл бұрын
Thank you!
@gilbertgutabaga82556 жыл бұрын
I did like this but getting error OutOfBoundsDatetime: Out of bounds nanosecond timestamp: 1-01-21 00:00:00 , from tutorial example on web scraping of Tramp's lie
@dataschool6 жыл бұрын
I'm sorry, I'm not sure what the cause of this error would be.
@Jazzcrime15 жыл бұрын
@@dataschool Great Tutorial! i also encountered this problem because of a date outlier (year 2981). Pandas would read the column as object and was unable to convert to datetime see: stackoverflow.com/questions/32888124/pandas-out-of-bounds-nanosecond-timestamp-after-offset-rollforward-plus-adding-a i added this parameter df['date'] = pd.to_datetime(df['date'], errors = 'coerce') seems to work, the column is converted and the outlier has NaN value.
@annakornikova11196 жыл бұрын
Very nice, just what I was looking for . Thanks!
@dataschool6 жыл бұрын
You're welcome!
@jjunior12837 жыл бұрын
Thanks for the tutorials. I want to compute the difference between two dates and return the result in integer. Much like the last example you showed. can that number of days be returned as integer? thanks
@dataschool7 жыл бұрын
Actually, this already returns the result as an integer: (ufo.Time.max() - ufo.Time.min()).days
@ganwilliam437 жыл бұрын
Very good video tutorials! Very much thanks, Kevin.
@dataschool7 жыл бұрын
You're very welcome!
@HealthyFoodBae_5 жыл бұрын
Hello, I have 2 large datasets and want to compare time differences by seconds for instance. I want to Group-by a certain column first, and then see the time differences or duration for a certain action. Can I do this in Python
@dataschool4 жыл бұрын
I'm sure you can, but it's hard for me to say how off-hand. Sorry!
@AnalyticsMaster8 жыл бұрын
Hi Kevin, Just like we have 'weekday_name' to know whether it is 'Sunday', 'Monday' etc... what should we use to find the 'month name' ? I serched for help in pandas doc, but not able to find. Kindly suggest.
@dataschool8 жыл бұрын
Great question! I'm not sure if there is a built-in way in pandas to do this. I would probably write my own code to do this using the map method, explained here: kzbin.info/www/bejne/hpDUYaehjtapic0
@didierleprince6106Ай бұрын
A Huge Merci from Les Sables d'Olonne (France) (:
@dataschool17 күн бұрын
You're very welcome!
@VijayKumar-zx5bm8 жыл бұрын
Excellent videos.Please consider giving tutorials on time series forecasting ( with various statistical models ) with Pandas.
@dataschool8 жыл бұрын
Thanks for the suggestion! I'll consider it for the future.
@debashissahoo50316 жыл бұрын
Your video is really good, we'll be really helpful, if you make some more videos on Dates and Times. Thank you.
@dataschool6 жыл бұрын
I cover it a bit more in this series: kzbin.info/aero/PL5-da3qGB5IBITZj_dYSFqnd_15JgqwA6
@debashissahoo50316 жыл бұрын
thank you, Now I am planning to cover this series too.
@hiteshkumavat63356 жыл бұрын
The videos is with very nice explanation .I am getting the time data only in hour:min:sec format and when i convert it from object to time then it gives also the current date with time stamp. I want to fill the missing seconds values so is there any other function available ?
@dataschool5 жыл бұрын
I'm not sure off-hand, I'm sorry!
@subasishbiswal34814 жыл бұрын
Hi , I have a column in date/mm/yy i want to remove the yy can i do this ?
@ssam71954 жыл бұрын
Thanks for your videos. I have data df['DateTime'] as '02/12/2019 11:00:00' , ...02/13/2019 23:00:00'., 02/13/2019 24:00:00' in column 48hrs of hourly data. While plot only ' 02/XX/2019 24:00:00' ( only 24:00:00 ) hrs point missing on graph. :( How to fix this? Please support me.
@kunalkumar27174 жыл бұрын
how can we handle ranges ( suppose salary ranges ) in a dataset? it would be great if any of you can tell.
@vaishnavipadala94577 жыл бұрын
Hi, Very useful basics covered in your videos, thank you very much!
@dataschool7 жыл бұрын
You're very welcome!
@vimultivi7 жыл бұрын
hi in the last line graph what to do to introduce line with arrow after 1960 to point some annotations and also customise x axis labels ? I want to know more about axis ticks ,labels and formating of axis as per our coveinence and also annotations in graphs .Your teaching is very simple and easy to understand and interesting !
@dataschool7 жыл бұрын
You'll need to use matplotlib for customizations. This post should help you get started: pbpython.com/effective-matplotlib.html
@dineshkundu46234 жыл бұрын
If I want specific dates in train data and remaining in test data how can we do tht
@varshadevgankar82424 жыл бұрын
hi, i want a function in python that identify which column have date in them??
@sdoken7 жыл бұрын
It is interesting that while ufo.dtypes tells you the type as “datetime64[ns]”, when you look at each element individually type(ufo.loc[0, ‘Time’]) returns a Timestamp object. Seems a bit inconsistent? No big deal, I’ll just have to get used to it. With timedelta however, both the column and the individual elements are of type timedelta.
@dataschool7 жыл бұрын
Yes, it takes some getting used to.... datetime is the type of the Series, timestamp is the type of the element, and timedelta is the type of a time range!
@akahn83114 жыл бұрын
thanks for the tutorial. is there any way to change the year column meaning change the year series. In year series - starts with 1930 and then go on till 1933, how to change this to 2013 to 2016 in the csv file ? thanks lot for the time and help ! cheers
@АлексейВереник-г1р4 жыл бұрын
Great job, bro! Thnx dude!
@dataschool4 жыл бұрын
You're welcome!
@pradeepmada75153 жыл бұрын
when i am trying to convert my data column into datetype its showing an error unknown string format
@ariramkilowan80518 жыл бұрын
As always (literally), Great video! Quick question, Is it trivial to combine the times from two independent time series' then resample both time series' (the data at those times) to the new combined times? I can't quite figure out how to do this pythonically. pandas.resample doesn't seem to be too friendly when using irregular timestamps.
@dataschool8 жыл бұрын
Thanks for your kind comment! Regarding your question, it's hard for me to envision exactly how to do this... I'm sorry! Feel free to let me know if you figure out a good strategy.
@Yagnik_Sojitra4 жыл бұрын
I am plotting a chart in that I need to show time only, how to trim time from pandas datetime ?
@yucelozyazgan8 жыл бұрын
Basically how can i do a simple math operation like increasing 2 months to the month of any date when i do that as at the following, i'm taking an error like : 'datetime.date' objects is not writable not wirtable *** dt = pd.to_datetime('2016/9/28') dt.month = dt.month + 2
@dataschool8 жыл бұрын
Great question! Here's how I would do it: dt = pd.to_datetime('2016/9/28') td = pd.to_timedelta('60 days') dt + td I don't think you can specify time units as months because of the ambiguity. It makes sense when you say 9/28 plus 2 months (11/28), but what about 12/31 plus 2 months (2/31?)
@yucelozyazgan8 жыл бұрын
Holly teacher! :D
@_AbUser4 жыл бұрын
I did't get what is the difference between ufo.time* and ufo.time.dt* operations. Would You explain plz...
@teklehaimanotaman31503 жыл бұрын
Hi Kevin, lets say you have a date column containing only hour, minute and second. While changing into date format using pd.to_datetime, it added automatically years and days. How could keep only hours, minutes and seconds? Thank you.
@dataschool3 жыл бұрын
Great question! I can't remember off-hand, but I think you need to use a pandas timedelta object instead of a datetime object.
@anilsangani88624 жыл бұрын
AB['Date']=pd.to_datetime(AB.Date) i am getting error Unknown string format: TOTAL my format is dd/mm/yyyy in column Date of a data frame named AB showing dtype as object .
@galymzhankenesbekov29244 жыл бұрын
thank you for your video! I have a question. for if one of your columns has the following values,like 1.x,y,d,z,w 2.x,t,y,d,z 3,x,y,t,d,w and so on. numbers mean different rows So, i need split the dataFrame into x,y,d columns(by values). P.S. so how to tell the program that if particular value within a selected column satisfies my desire I need to take that value and put them into seperate column
@dataschool4 жыл бұрын
Sorry, I don't quite understand your question... good luck!
@09january5 жыл бұрын
Is there any simple method to calculate sum of consecutive days say employees who worked continuously for 2 weeks including weekend? Can this be done using timedelta?
@dataschool4 жыл бұрын
It's hard for me to say off-hand, sorry!
@townheadbluesboy7 жыл бұрын
Hi Thanks for all your videos - what's the easiest way to get seconds since the epoch from a datetime object - Python 2 ?
@dataschool7 жыл бұрын
Sorry, I don't know off-hand. Good luck!
@riderblack64016 жыл бұрын
Big thanks, Kevin! Great job!
@dataschool6 жыл бұрын
You're welcome!
@rashmikoparde8267 жыл бұрын
I have a csv file which consist of placeid and date .I want to calculate in a particular month how many times is the particular place visited..how this could be done in python code..Please help @ Data School
@dataschool7 жыл бұрын
Perhaps you could store the 'month' attribute from the 'date' column as a new column, then filter the DataFrame by 'placeid' column, and then check the shape of the DataFrame. This video might be helpful to you: kzbin.info/www/bejne/aHKpeIOag9NnfK8
@timpinckney6 жыл бұрын
Great explanation Kevin. Do you have any videos exclusively on matplotlib?
@dataschool6 жыл бұрын
I don't... sorry! I'll consider them for the future!
@timpinckney6 жыл бұрын
Thanks Kevin
@nousername25205 жыл бұрын
@Data School Do you have any video on how to fill missing dates with zero (desired number) in a large csv file?
@dataschool4 жыл бұрын
kzbin.info/www/bejne/nHSwo4KVi9-Ygpo
@Nehisniche7 жыл бұрын
Hey thanks for the video really cleared so many doubts, I had one question tho, I extracted the microsecond from my date-time format and now if I want to plot my microsecond as x axis and all 3 other columns(that has float values) as y axis how do I do that?
@dataschool7 жыл бұрын
I'm not sure, sorry!
@nadie74803 жыл бұрын
How can I export this "datetime64" (YYYY-MM-DD HH:MM:SS) to a CSV file with the format "DD/MM/YYYY HH:MM" ?
@matildanordahl35005 жыл бұрын
What if I want to know the mean of entries for each month? Is there more ufo-sightings in summer as an example?
@dataschool5 жыл бұрын
Is this what you are looking for? ufo['Month'] = ufo.Time.dt.month ufo.Month.value_counts().sort_index()
@Skandawin783 жыл бұрын
Python is really not intuitive when compared to R.. datetime comparison makes me split my hair . Still try to figure out how to compare a date in a dataframe ( which in datetime format) to today's date and do some action if they both match.. Any help is appreciated
@raghwendranarayanshandilya45254 жыл бұрын
Hi, I liked your way of presentation. It is very precise and nice. I would like to see any tutorial where you explain about taking statistics (mean, median, etc.) of data by filtering any column (say date-time column).
@debaniedalaielizondoflores44046 жыл бұрын
Is there any way to separate the time (h,m,s) that's on the same column of an imported excel data frame and pass it all to seconds?
@dataschool6 жыл бұрын
I'm sorry, I don't understand your question. Could you clarify? Thanks!
@hajaya17 жыл бұрын
Thanks for the awesome videos! Any thoughts on how I can use time series functionality with a data set that contains multiple rows with the same date? I mean I use day-level dates for one-year data, and every day may contain multiple observations (my data set has no unique column). Thanks
@dataschool7 жыл бұрын
I think what you're looking for is resampling. Thanks for your kind comment, and good luck!
@diakitem.youssouf79166 жыл бұрын
Thanks You. But a have a query If I want to get the data between two dates How I can do ?
@dataschool5 жыл бұрын
I don't know the code off-hand, I'm sorry!
@diakitem.youssouf79165 жыл бұрын
@@dataschool OK. Thanks . But according some of my research to have the data between a period we should set data index as time stamp type.
@robertowbatista6 жыл бұрын
Thanks for the video. Quick question: How can I change the data type of several columns at the same time?
@dataschool6 жыл бұрын
Great question! See part 3 of this video: kzbin.info/www/bejne/Y3_Fimp7bs1-rs0