How do I use the MultiIndex in pandas?

Поделиться
HTML-код
  • Опубликовано: 31 янв 2025

Комментарии • 314

  • @infiltr80r
    @infiltr80r 5 лет назад +23

    It's rare to find exactly what you're looking for when it comes to Pandas but this was it.

  • @brockobama257
    @brockobama257 3 года назад +2

    I couldn't find the Corey Schafer video on MultiIndex so I'm here.
    And I'm not disappointed... subscribed!

    • @dataschool
      @dataschool  3 года назад

      Welcome to the channel! 👋

  • @rezas2626
    @rezas2626 6 лет назад +11

    Slice(None) trick was what I looked everywhere to find and found it here. Thank you so much!

  • @annieyang4420
    @annieyang4420 4 года назад +8

    Life saver video! i have been panic for 2 days , read many pieces and still confused. this helped me out! thank you!

  • @ssankarnarayan
    @ssankarnarayan 4 года назад +1

    slice(None) instead of : was a very important input. I struggled with it for quite a while before watching this video. Thank you.

  • @cosmopolitanPJ
    @cosmopolitanPJ 5 лет назад +2

    Hello from Hungary Kevin! After a period away from the technicalities of python working mostly with Google Analytics and CRO techniques I'm glad to be back to your videos playing around Jupyter. I appreciate a lot the work you do on Data School, so here is a bit of my honest appreciation, thank you and keep it up! John Ostrowski :)

  • @amitsardanayt
    @amitsardanayt 3 года назад +1

    You made this complicated taboo topic so simple to understand. Worth half an hour i spent

    • @dataschool
      @dataschool  3 года назад

      Thanks for your kind words!

  • @owenlie
    @owenlie 4 года назад +2

    24 hours struggling to get the answer, and the answer just single line *unstack()* method. Thank you so much, I'll subscribe immediately!

  • @emuratspahic
    @emuratspahic 2 года назад +1

    Great explanation! Even though I used pandas a lot, I never really understood how multi-indexing worked. Thank you so much for this tutorial, this helped me out a lot!

  • @khardu
    @khardu 3 года назад +2

    Thank you for sharing your knowledge and experience beautifully. I am new to Python and Pandas, was struggling to understand how to select a subset of the data in a MultiIndex scenario. You made it a piece of cake by putting it all in one video, and by comparing and contrasting between Series and Data Frame.

    • @dataschool
      @dataschool  3 года назад

      That's awesome to hear! 🙌

  • @stephenmaddock2863
    @stephenmaddock2863 4 года назад +3

    Brilliant tutorial. This is the 2nd of yours that I have watched and it covered what I need in my new job. Thank you very much.

  • @shadrinan90
    @shadrinan90 Год назад +1

    Your lesson is sooo simple and clear. I found everything I wanted to know. Thank you

  • @shrishailgajbhar3191
    @shrishailgajbhar3191 2 года назад +1

    Thanks for helping us out with multiindexing in pandas...Cleared my daunting confusions about it.

  • @billy818
    @billy818 5 лет назад +3

    ive been stuck trying to understand this reading tru the documentation for ages. 10 mins and i get it this vid is great thanks

  • @raminsadeghnasab9310
    @raminsadeghnasab9310 2 года назад +1

    Finallllly, I understand how the multi-index works. Thanks man.

  • @adarshrai22
    @adarshrai22 2 года назад +3

    This is really a value adding video for data specialists. Thanks a lot for this brother.

  • @adamyork8407
    @adamyork8407 6 лет назад +2

    This was so cool! I am already thinking of a dozen ways to use multi-indexing in my newbie projects and adding them to my little presentation next week. I owe a lot of my comfort with pandas to you. I hope your holidays went well, Kevin!

    • @dataschool
      @dataschool  6 лет назад

      Awesome, thanks so much for your kind comments, Adam! 👌

  • @carolinefawer-wasser2570
    @carolinefawer-wasser2570 6 лет назад +3

    As always great explaination. You are a gifted teacher, so surely well worth the Patreon membership for you.

    • @dataschool
      @dataschool  6 лет назад +1

      Thank you, Caroline, both for your kind words and for your support through Data School Insiders! :)

  • @DeebzFromThe90s
    @DeebzFromThe90s 2 года назад

    Thank you sir. I will shoot you a donation if/when my quant journey presents some alpha. You are a lifesaver.

  • @minglee5164
    @minglee5164 3 года назад +1

    Thanks for the excellent tutorial, I have been confused by this issue for a long time.

  • @olenamelnyk2427
    @olenamelnyk2427 4 года назад

    You saved my life with slice(None) (19:45). Thank you so much.

  • @carlomision9546
    @carlomision9546 6 лет назад +1

    Clear explanation with examples. This is exactly what I needed to know. You have yourself a new subscriber.

  • @searchingsoul5910
    @searchingsoul5910 4 года назад +5

    Extremely informative, thanks for making it so simple - really good job

  • @wiresandwavessolutions4723
    @wiresandwavessolutions4723 4 года назад

    Thanks for making this multi-index topic so easy for all of us. I understood, pivot table perfectly after this video.
    I am having difficulty in the following : I want to select all Symbols and calculate the difference between the closing price of all SYMBOLs from 4th to 05th .

  • @akashpoudel571
    @akashpoudel571 5 лет назад +1

    u r the bestest ever teacher to me.......damn lucid ua guideliness......thanks a tonne sir

  • @5a035
    @5a035 2 года назад

    19:50 "slice(None)", I never would have figured that out..... thank you!

  • @HD_157
    @HD_157 5 лет назад +1

    The most helpful video I've ever seen about Python. Thanks a lot!

    • @dataschool
      @dataschool  5 лет назад

      Awesome! Glad it was helpful to you :)

  • @florianrudowable
    @florianrudowable 3 года назад

    pandas is awesome and you are too! I cant belive that pandas is free and this video is free. Thank you.

  • @TadeuszKurpiel
    @TadeuszKurpiel Год назад +1

    time about 19:55 - when it comes to selecting rows according to values of deeper levels of MultiIndex, we can also do it that way:
    (assumption: 'stocks' has ['Symbol', 'Date'] MultiIndex set up)
    selection by one value:
    stocks[stocks.index.get_level_values(1) == '2016-10-04']
    and selection by values from list:
    stocks[stocks.index.get_level_values(1).isin(['2016-10-03', '2016-10-04'])]
    and when the MultiIndex levels have their names (like here: 'Symbol', 'Date'), we can use these names in the 'get_level_values' method instead of numbers, e.g.:
    stocks.index.get_level_values('Date")

    • @dataschool
      @dataschool  Год назад +1

      Thanks so much for sharing!

    • @TadeuszKurpiel
      @TadeuszKurpiel Год назад

      @@dataschool ​ - and Reuven Lerner in his film 'Retrieving from a multi-index in Pandas' (time 9min 35 sec) shows one more way - with the 'xs' method:
      stocks.xs('2016-10-04', level='Date')
      but I think my way is most flexible one - for example we can make logical expressions like this one (it corresponds to Reuven's dataframe):
      df[
      df.index.get_level_values('Year').isin([1993, 1920, 2010]) &
      df.index.get_level_values('Sport').isin(['Archery', 'Judo']) &
      (df.Age < 24.0)
      ]

  • @Brocollipy
    @Brocollipy 4 года назад

    Thanks so much for this video. Really great to see a range of options with such clear advice.

  • @mahyarazad
    @mahyarazad 4 года назад +3

    Thank you gazillion, you are the best! I finally understand the functionality of the Groupby method!

  • @mohammadkaifi
    @mohammadkaifi 3 года назад +1

    This is the solution I was looking for. Thanks!

  • @ahmadalrashedi5718
    @ahmadalrashedi5718 3 года назад

    man thank you soooooooooooooo much, I had been stuck on one thing for hours and finally figured it out!! !

  • @Mo3azSolomon
    @Mo3azSolomon Год назад +1

    Thanks a lot for this simplified Explanation 😍

  • @kilocesar
    @kilocesar 9 месяцев назад +1

    Great content man! Exactly what I needed!

    • @dataschool
      @dataschool  9 месяцев назад +1

      Great to hear! 🙌

  • @shabdarana2848
    @shabdarana2848 5 лет назад

    Thanks. This topic had been bugging me but you make it seem really simple.

    • @dataschool
      @dataschool  5 лет назад +1

      It is complex, but glad you are feeling good about it now!

  • @donaldbebel7979
    @donaldbebel7979 3 года назад +1

    Very good explanation of a confusing topic. Thanks you.

    • @dataschool
      @dataschool  3 года назад

      Glad it was helpful to you!

  • @markcampanelli
    @markcampanelli 6 лет назад +8

    Thanks a lot. Including slice(None) was very helpful.

    • @dataschool
      @dataschool  6 лет назад

      Great to hear - you're very welcome!

  • @jsr7599
    @jsr7599 3 года назад +1

    Perfect video for what I needed. Thanks!

  • @mdfaiz4583
    @mdfaiz4583 6 лет назад

    u make things very simple....easy to understand ....thanks man

  • @rubencrespo1720
    @rubencrespo1720 3 года назад

    thank you so much, finally I could change from a Dataframe to a multiindex

  • @wildlife_and_drones1320
    @wildlife_and_drones1320 3 года назад

    Very helpful. I will be back with questions about machine learning.

    • @dataschool
      @dataschool  3 года назад

      Great! I've got a free course: courses.dataschool.io/introduction-to-machine-learning-with-scikit-learn

  • @coolzkabhijit
    @coolzkabhijit 4 года назад +1

    Thanks for the video! I have a question. How to access a particular index without naming the index, like say without naming 'AAPL'

  • @mountainscott5274
    @mountainscott5274 5 лет назад +2

    Would you normally go through all of this? It seems like one can just stick to groupby() without complicating the syntax for selection or changing the shape of the dataframe. In other words, have you encountered multi-indexing often in the field?

    • @dataschool
      @dataschool  5 лет назад

      Great question! Personally, I try not to use the MultiIndex very much. That being said, it is still useful to be able to work with it when you have to.

  • @robertodilisio7535
    @robertodilisio7535 6 лет назад

    Hi Mark! Great video on a very Syntax confusing matter such as multiindex. Thank you very much!

  • @venkynew9509
    @venkynew9509 2 года назад

    15:06 indeed… you are eye opener… Also I’m wondering can we able to update cell by condition in side multi index value?

  • @umeshdev6403
    @umeshdev6403 3 года назад

    Thank you. Nice explanation. how to get max values with the dates

  • @reibalachandran4775
    @reibalachandran4775 5 лет назад +1

    Thanks for the video, I found it very useful and enjoyable to watch :)

  • @CNW21
    @CNW21 2 года назад

    As clear as day now , thank you

  • @niva090
    @niva090 3 года назад

    Thank you, this helped me out so much! I have one question however, I hope you can answer for me here:
    I have a multi index with ID as the first and Day as the second. Now I want to select all ID's that has more than 6 days of data. How can I pass this logical statement to the selector?

  • @mselim-o7p
    @mselim-o7p 6 лет назад

    Thanks for additional topics. Thanks for your time.

  • @willd0g
    @willd0g 4 года назад +1

    Excellent - yes a few 💡 moments indeed. Very good

  • @ebena.k.8032
    @ebena.k.8032 2 года назад

    Thank you so much. 'unstack()' has alleviated my headache.

  • @zennicliffzennicliff
    @zennicliffzennicliff 5 лет назад +3

    Thank you so much. You are such a talented teacher. Where can I find out how I can structurally learn courses from you? Thank you and greetings!

    • @dataschool
      @dataschool  5 лет назад +1

      Thanks! This post might be helpful to you: www.dataschool.io/launch-your-data-science-career-with-python/

  • @originalkundukulangara9281
    @originalkundukulangara9281 3 года назад +1

    I am trying to merge from pivot table and although it succeeds, it gives an error.
    merging between different levels can give an unintended result (1 level on the left,2 on the right)
    warnings.warn(msg, UserWarning)
    I tried to check if it is because of multi-indexing, it wasn't. not sure how to resolve it

  • @pankajthakkar311
    @pankajthakkar311 5 лет назад +1

    This is awesome, thanks for making this Video Kevin.

  • @ItsRainingSteak
    @ItsRainingSteak 5 лет назад +1

    Top shelf content right here

  • @ocamlmail
    @ocamlmail 2 года назад

    Great explanation, very clear, thank you!

  • @twtw785
    @twtw785 4 года назад

    hello Kevin, great video, got 2 questions for you.
    data looks like this
    "date","time","open","high","low","close"
    04/21/82,10:01,528.55,528.55,528.45,528.45
    04/21/82,10:03,528.40,528.45,528.40,528.45
    04/21/82,10:04,528.40,528.40,528.35,528.40
    04/21/82,10:06,528.45,528.45,528.40,528.40
    I am trying to do a day HIGH/LOW studies on 1-min S&P futures data.
    I have 2 questions.
    1) How could I print the day HIGH / LOW for each day
    2) How could I print the day HIGH / LOW for the first hour of trading
    I've tried the followings:
    df.groupby(['date']).high.max()
    and got this
    date
    1982-04-21 529.80
    1982-04-22 530.60
    1982-04-23 531.95
    1982-04-26 532.80
    I am kind of stuck here. I want to have the output displayed all in 2 lines day by day like the following.
    Date, Time, High
    Date, Time, Low
    Could you please help ? thanks a lot in advance. I appreciate your time.
    data type
    date datetime64[ns]
    time datetime64[ns]
    open float64
    high float64
    low float64
    close float64
    dtype: object
    ptcm2011@gmail.com

  • @rayli2221
    @rayli2221 3 года назад

    Thank you for sharing this information. I would like to ask if I wanted to get this to do portfolio optimization so calculating expected returns and covariance on multi-index dataframe how would you set this up?

  • @mxmmalinin
    @mxmmalinin 3 года назад +1

    Thank you for sharing your knowledge!

  • @АнтонМакаров-ъ5е
    @АнтонМакаров-ъ5е 4 года назад

    5:30 - How to combine 2 multiindex columns in one but in different rows?
    So first row will be AAPL(combined) - Close - Volume. Second row AAPL 2016-10-03 - Close Volume. Third row AAPL 2016-10-04 - Close - Volume and so on???

  • @manikandanpalanivel4941
    @manikandanpalanivel4941 3 года назад

    I learn something from your video👌but I have some doubts. Kindly explain me for example we are having a issues in our computer in different dates . We need to filter out with O/P as computer type, computer model, windows 10,7,8 , dates in sequence it got fault

  • @jerryetc
    @jerryetc 4 года назад

    Extremely clear, thank you

  • @ridthrahman6637
    @ridthrahman6637 5 лет назад

    How to use range selection (:) while inner and outer row labels are inside tuples? Use slice which probably did not allow range selection. Thank you!

    • @dataschool
      @dataschool  5 лет назад

      Sorry, it's hard for me to say off-hand, good luck!

  • @SFayed-lg5sp
    @SFayed-lg5sp 3 года назад +1

    it's so helpful!!! thank you so much!

  • @mounah2182
    @mounah2182 3 года назад

    Thanks for the video but i have a question how to merge columns and indexes in order to not have blank spaces in headers in my html view ?

  • @thimirabandara679
    @thimirabandara679 3 года назад

    Great video! is there a way to must index the column so there is an outer column and inner column? And if so how do you sort that? Because I know sort_column is not a callable function on the datafram

  • @ankitsajwan7520
    @ankitsajwan7520 5 лет назад +1

    Exactly what I was looking for. Thanks :)

  • @MagicmathmandarinOrg
    @MagicmathmandarinOrg 5 лет назад

    Thanks for the thorough explanation. Very helpful.

  • @ramvpage
    @ramvpage 5 лет назад +2

    Excellent Tutorial ! Thank You!

  • @asdkop7818
    @asdkop7818 6 лет назад

    Nice video, anyway I would have liked a final section in which you could have explained the usage of logic over the selection on multi-indexes. Eg: what if I wanted to select data for each symbol and for each date except one? Is it possible to use the same logic as .loc with simple indexes? Thanks :)

    • @dataschool
      @dataschool  6 лет назад

      Thanks for your suggestion!

  • @Zielu13
    @Zielu13 2 года назад

    Thanks. Do you know how to change the background color in dataframe.plot graphs ( the background on which there are: labels and graph name). In subplots you can use 'facecolor' param, but it doesn't work in plots generated from multiindex dataframes.

  • @ramutillu5005
    @ramutillu5005 4 года назад

    Thanks alot. Very useful. Can u teach how to use multiple groupby in single expression.

  • @包乐-c9f
    @包乐-c9f 4 года назад +2

    Thank you ! Your video is very helpful!

  • @pankushkukreja3101
    @pankushkukreja3101 6 лет назад

    Thanks Alot, really a good series for pandas and easy to learn.
    I would request if you can make a video on Iteration in pandas like iterrows, itertuples and iteritems.
    Many Thanks In advance.

    • @dataschool
      @dataschool  6 лет назад

      I think I cover it in this video: ruclips.net/video/B-r9VuK80dk/видео.html

  • @surenderp2863
    @surenderp2863 5 лет назад

    very good explanation in this vedio on multi-indexes, could you please explain, why do we need multi levels of columns and multilevels of row labels and again there is droplevel option, could you please explain on this.

    • @dataschool
      @dataschool  5 лет назад

      The short answer is that you should use a MultiIndex if it helps you to represent the structure of the data.

  • @amitgaj1
    @amitgaj1 5 лет назад +1

    Thanks Kevin. That's brillant explanation.

    • @dataschool
      @dataschool  5 лет назад

      Awesome! Thanks for your kind words :)

  • @marvinjoyceburgstededijk9749
    @marvinjoyceburgstededijk9749 3 года назад

    Great video and many thanks. Greetings from Amsterdam

  • @iloveno3
    @iloveno3 6 лет назад +1

    Thank you. I have learned so much from you already...

  • @spiderschwein8g
    @spiderschwein8g 6 лет назад +1

    Saved me hours. Thanks!

  • @crush3dices
    @crush3dices 4 года назад +1

    11:50 dunno what version you are using but for me with pandas 1.1.3 out[21] does not work. I have to use loc[pd.IndexSlice[:,'key'], :] instead or xs('key', level = 1). Though i would prefer the easier way .loc[:, 'key'] but that does not work...

  • @marklittlewood2418
    @marklittlewood2418 6 лет назад

    Nice presentation Kevin well done. How about accessing a range of dates for say apple, date:date ?

    • @dataschool
      @dataschool  6 лет назад

      I'm not sure if that can be done using the colon, I'd have to check...

  • @dmitku
    @dmitku 4 года назад

    Very useful as always. Many thanks!

  • @jhonatangarcia3826
    @jhonatangarcia3826 4 года назад +1

    Thanks man! You helped me a lot!

  • @mufidharahap4192
    @mufidharahap4192 4 года назад

    whats the difference between pivot() and pivot_table(). I tried both and it worked fine

    • @funnybunnysunny
      @funnybunnysunny 3 года назад

      pivot_table is used when you have multiple values for each row and column combination. those multiple values can be aggregated (like mean, median etc). pivot is used when you have only one value for one row and column combination. the default aggfunc for pivot_table is mean and if you have one value for a row and column combination, both pivot_table and pivot will return same result.

    • @mufidharahap4192
      @mufidharahap4192 3 года назад

      @@funnybunnysunny thank you very much for the explanation sir

  • @nonamenoname2618
    @nonamenoname2618 5 лет назад +1

    Multiindex is very similar to the functionality of the xarray package. And the pandas creators recommend using xarray for multiple dimensions, especially >3. Does anyone has experience with pandas Multiindex vs xarray? What would be the better choice?

    • @dataschool
      @dataschool  5 лет назад

      I haven't used xarray, sorry!

  • @ckim0717
    @ckim0717 4 года назад +1

    Thank you for the videos! I have an additional question on the slice(None) object you made. Let's say you have 100 more symbols and I don't want all of the symbols but want a specific slice of symbols (for example the all symbols after "CSCO" ) how would I do that?
    stock.loc[("CSCO": , ['2016-10-03', '2016-10-04']), : ] does not work :(

    • @willd0g
      @willd0g 4 года назад

      Slice(some)

  • @GodX36999
    @GodX36999 3 года назад

    Hi , thanks for great videos, I have a question , If I have many csv file in one folder each file is data frame of symbol of stocks (APPL.csv, BA.csv, CSCO.csv, MSFT.csv,....) but I just wanna pick a few of them but not all, instead of I use pd.read_csv one by one it's so slow and manually so I would like to use for loop but I still not find out the way. Would you please help me. Thank you

  • @gggganzo
    @gggganzo 3 года назад +4

    Well explined. Would be great a video about data visualization with multiindex data structures also

  • @dangantman5474
    @dangantman5474 4 года назад

    unstack() + reset_index() for the win!

  • @szymonk.7237
    @szymonk.7237 4 года назад

    Thank you very much for this explanation ❤️

  • @АнтонМакаров-ъ5е
    @АнтонМакаров-ъ5е 4 года назад

    I have a DataFrame very similar to your ser at 5:06. But with many dates in Date column. Every date in Dates has its value.
    Need to find for every Symbol a date in Dates with the maximum amount of rows. df.groupby( ['Symbol', 'Date']['Value'].count() -works!
    It seems, all I need is to add a idxmax( )... But no, it gives only one max value, but I need for every group.
    How to find a date with maximum rows in every Symbol group?

  • @Zielu13
    @Zielu13 3 года назад

    Thanks. Any advice hot to plot multiindex?

  • @kundansinha5603
    @kundansinha5603 5 лет назад

    How about if the value is not an aggregate and rather an arithmetic 'calculation ' between 2 variables. Ex. Company names for index, date/timestamp for columns BUT for Values it is something like ColumnA/(ColumnB*4.7)?? Thanks :)

  • @uncommon_common_man
    @uncommon_common_man 5 лет назад +1

    great tutorial

  • @fredsarti1
    @fredsarti1 2 года назад

    Why slice(None).... omg. Thank you for your amazing video! Substribed

  • @ryanchia2249
    @ryanchia2249 5 лет назад

    Hi... a question... how do i add column into a multi-level indexing?
    df['new_column'] = df['col_a] - df['col_b']

    • @dataschool
      @dataschool  5 лет назад

      Sorry, it's hard for me to say without trying it out myself. Good luck!

  • @abcdefghi2650
    @abcdefghi2650 4 года назад +1

    THANK YOU BILLION TIMES!!!!

  • @muralikrishnapolipallivenk2572
    @muralikrishnapolipallivenk2572 6 лет назад

    Hi Thanks for the video, I learned a lot, I currently struggling with concat, join and merge functions in Pandas, do you have any videos to help me understand it better. Thanks

    • @dataschool
      @dataschool  6 лет назад +1

      I cover concat in this video: ruclips.net/video/15q-is8P_H4/видео.html
      But you should watch this video first: ruclips.net/video/OYZNk7Z9s6I/видео.html