Selecting Rows in Pandas DataFrame Based on Conditions | GeeksforGeeks

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

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

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

    Apply For Video Internship Program - script.geeksforgeeks.org/on-boarding/youtube

  • @j3553hh
    @j3553hh 10 месяцев назад +1

    Why use .loc when we get the same results just using df[df[? That's something I can't quite understand. Thank you for the video. Concise and informative.

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

    isin method was super helpful, thanks guys

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

    Thank you very much! This was very helpful. It looks like the basic method and the loc method do exactly the same thing!

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

    Thanks a lot! It helped me with our assignment about Selecting Rows and you the best!

  • @anacarolinabonato8462
    @anacarolinabonato8462 2 месяца назад

    great video, thanks!!

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

    Thanks a lot! Very helpful

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

    Great video!

  • @thelumusajamesmthethwa2983
    @thelumusajamesmthethwa2983 5 месяцев назад

    Thank you so much

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

    The video is very informative. If we want to select rows based upon time of arrival/departure, how can we do it? Please suggest. Thanks.

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

    Excellent

  • @9sunz
    @9sunz 2 года назад +1

    Hi there. Great work!
    I want to know if there is a lambda function to achieve what we did in this video?
    Another thing, if one wants to create a new variable from multiple conditions and also separating few columns from total of let's say 100 columns, what's the best way to do it?
    for example, we have columns A to Z. And we want to sort Column B and Column C with conditions, B>0.5, and C

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

    thanks for the video. What about if you need to check two columns and if the value of the list isin either one?

  • @HuyenPhanThanh-jy8pq
    @HuyenPhanThanh-jy8pq Год назад

    thanks a lot for your useful video. I wonder that whether this selecting method can be used for searching assignment ? and I dont know how to search for a month '6' and it still shows the result comprises year,month,day.

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

    if the column is zip code / post code and I want to select the first two characters what is the code for that? for example under column post code I want to show post code that start with NG

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

    How to know that when I choose range between slab as eg: 0 to 5 as 0
    5 to 10 as 1 , 10 to 24 as 2 etc
    Based on column wise ?
    Scoring purpose for analysis

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

    Lets suppose we get only those rows whose indexs contain 7 then what condition is for?

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

    Also if we want to select employees who came after 10 am say, how to do it?

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

    I need sale 2 person,product 5 person and Others each is 3 how to I calculate

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

    m getting this Error while putting condition:
    'SyntaxError: cannot assign to subscript here. Maybe you meant '==' instead of '='?'
    Syntax: DF = DF22.[DF22['sub_code']=1930]

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

    How to. Know that Larry belongs to Business development team?

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

    for example u have 1 excel sheet and it consist of 10000 data in it. Later when we import that excel file in pycharm or jupiter notebook. if i run that file i will get an Index range also know as Row labels. my python code should be able to read that ten thousand row labels and should be able to separate / split into 10 different excel sheet files which will have 1000 data in each of the 10 saperated sheet.
    other example is, if there is 9999 data in 1 sheet then my python code should divide 9000 data in 9 sheet and other 999 in other sheet without any mistakes.
    i am asking this because in my data there is not any unique values for my code to split the files using .unique
    plz help i have search the whole YT , stackoverflow, and github tooo from 3 days

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

    Hii