Drop rows on multiple conditions in pandas dataframe












0














My df has 3 columns



df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0), 
"col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
"col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})


I want to drop rows where df.col_1 is 1.0 and df.col_2 is 0.0. So, I would get:



df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 0.0, 1.0), 
"col_2": (0.0, 0.24, 1.0, 0.22, 3.11),
"col_3": ("Mon", "Tue", "Thu", "Mon", "Tue")})


I tried:



df_new = df.drop[df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index]


It gives me the error:



'method' object is not subscriptable


Any idea how to solve the above problem?










share|improve this question





























    0














    My df has 3 columns



    df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0), 
    "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
    "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})


    I want to drop rows where df.col_1 is 1.0 and df.col_2 is 0.0. So, I would get:



    df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 0.0, 1.0), 
    "col_2": (0.0, 0.24, 1.0, 0.22, 3.11),
    "col_3": ("Mon", "Tue", "Thu", "Mon", "Tue")})


    I tried:



    df_new = df.drop[df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index]


    It gives me the error:



    'method' object is not subscriptable


    Any idea how to solve the above problem?










    share|improve this question



























      0












      0








      0







      My df has 3 columns



      df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0), 
      "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
      "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})


      I want to drop rows where df.col_1 is 1.0 and df.col_2 is 0.0. So, I would get:



      df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 0.0, 1.0), 
      "col_2": (0.0, 0.24, 1.0, 0.22, 3.11),
      "col_3": ("Mon", "Tue", "Thu", "Mon", "Tue")})


      I tried:



      df_new = df.drop[df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index]


      It gives me the error:



      'method' object is not subscriptable


      Any idea how to solve the above problem?










      share|improve this question















      My df has 3 columns



      df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0), 
      "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
      "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})


      I want to drop rows where df.col_1 is 1.0 and df.col_2 is 0.0. So, I would get:



      df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 0.0, 1.0), 
      "col_2": (0.0, 0.24, 1.0, 0.22, 3.11),
      "col_3": ("Mon", "Tue", "Thu", "Mon", "Tue")})


      I tried:



      df_new = df.drop[df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index]


      It gives me the error:



      'method' object is not subscriptable


      Any idea how to solve the above problem?







      python pandas






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 29 at 6:08









      Saurabh

      2,08321726




      2,08321726










      asked Sep 22 at 12:57









      Dsh M

      297




      297
























          3 Answers
          3






          active

          oldest

          votes


















          0














          drop is a method, you are calling it using , that is why it gives you:



          'method' object is not subscriptable


          change to () (a normal method call) an it should work:



          import pandas as pd

          df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0),
          "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
          "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})

          df_new = df.drop(df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index)
          print(df_new)


          Output



             col_1  col_2 col_3
          0 0.0 0.00 Mon
          1 0.0 0.24 Tue
          2 1.0 1.00 Thu
          4 0.0 0.22 Mon
          5 1.0 3.11 Tue





          share|improve this answer





















          • Awesome! Thanks a lot.
            – Dsh M
            Sep 22 at 16:51



















          0














          Try to filter your df with loc. It's so powerfull.
          The "~" means you want the opposit of your condition.
          The ":" means you want to keep all the columns



          df = df.loc[~((df['col_1'] == 1.0) & (df['col_2'] == 0.0)),:]





          share|improve this answer





























            0














            You can use or (|) operator for this ,
            Refer this link for it pandas: multiple conditions while indexing data frame - unexpected behavior



            i.e dropping rows where both conditions are met



             df = df.loc[~((df['col_1']==1) | (df['col_2']==0))]





            share|improve this answer





















              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52456874%2fdrop-rows-on-multiple-conditions-in-pandas-dataframe%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              drop is a method, you are calling it using , that is why it gives you:



              'method' object is not subscriptable


              change to () (a normal method call) an it should work:



              import pandas as pd

              df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0),
              "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
              "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})

              df_new = df.drop(df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index)
              print(df_new)


              Output



                 col_1  col_2 col_3
              0 0.0 0.00 Mon
              1 0.0 0.24 Tue
              2 1.0 1.00 Thu
              4 0.0 0.22 Mon
              5 1.0 3.11 Tue





              share|improve this answer





















              • Awesome! Thanks a lot.
                – Dsh M
                Sep 22 at 16:51
















              0














              drop is a method, you are calling it using , that is why it gives you:



              'method' object is not subscriptable


              change to () (a normal method call) an it should work:



              import pandas as pd

              df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0),
              "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
              "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})

              df_new = df.drop(df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index)
              print(df_new)


              Output



                 col_1  col_2 col_3
              0 0.0 0.00 Mon
              1 0.0 0.24 Tue
              2 1.0 1.00 Thu
              4 0.0 0.22 Mon
              5 1.0 3.11 Tue





              share|improve this answer





















              • Awesome! Thanks a lot.
                – Dsh M
                Sep 22 at 16:51














              0












              0








              0






              drop is a method, you are calling it using , that is why it gives you:



              'method' object is not subscriptable


              change to () (a normal method call) an it should work:



              import pandas as pd

              df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0),
              "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
              "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})

              df_new = df.drop(df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index)
              print(df_new)


              Output



                 col_1  col_2 col_3
              0 0.0 0.00 Mon
              1 0.0 0.24 Tue
              2 1.0 1.00 Thu
              4 0.0 0.22 Mon
              5 1.0 3.11 Tue





              share|improve this answer












              drop is a method, you are calling it using , that is why it gives you:



              'method' object is not subscriptable


              change to () (a normal method call) an it should work:



              import pandas as pd

              df = pd.DataFrame({"col_1": (0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0),
              "col_2": (0.0, 0.24, 1.0, 0.0, 0.22, 3.11, 0.0),
              "col_3": ("Mon", "Tue", "Thu", "Fri", "Mon", "Tue", "Thu")})

              df_new = df.drop(df[(df['col_1'] == 1.0) & (df['col_2'] == 0.0)].index)
              print(df_new)


              Output



                 col_1  col_2 col_3
              0 0.0 0.00 Mon
              1 0.0 0.24 Tue
              2 1.0 1.00 Thu
              4 0.0 0.22 Mon
              5 1.0 3.11 Tue






              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Sep 22 at 13:03









              Daniel Mesejo

              12.4k1924




              12.4k1924












              • Awesome! Thanks a lot.
                – Dsh M
                Sep 22 at 16:51


















              • Awesome! Thanks a lot.
                – Dsh M
                Sep 22 at 16:51
















              Awesome! Thanks a lot.
              – Dsh M
              Sep 22 at 16:51




              Awesome! Thanks a lot.
              – Dsh M
              Sep 22 at 16:51













              0














              Try to filter your df with loc. It's so powerfull.
              The "~" means you want the opposit of your condition.
              The ":" means you want to keep all the columns



              df = df.loc[~((df['col_1'] == 1.0) & (df['col_2'] == 0.0)),:]





              share|improve this answer


























                0














                Try to filter your df with loc. It's so powerfull.
                The "~" means you want the opposit of your condition.
                The ":" means you want to keep all the columns



                df = df.loc[~((df['col_1'] == 1.0) & (df['col_2'] == 0.0)),:]





                share|improve this answer
























                  0












                  0








                  0






                  Try to filter your df with loc. It's so powerfull.
                  The "~" means you want the opposit of your condition.
                  The ":" means you want to keep all the columns



                  df = df.loc[~((df['col_1'] == 1.0) & (df['col_2'] == 0.0)),:]





                  share|improve this answer












                  Try to filter your df with loc. It's so powerfull.
                  The "~" means you want the opposit of your condition.
                  The ":" means you want to keep all the columns



                  df = df.loc[~((df['col_1'] == 1.0) & (df['col_2'] == 0.0)),:]






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Sep 22 at 13:00









                  Charles R

                  825213




                  825213























                      0














                      You can use or (|) operator for this ,
                      Refer this link for it pandas: multiple conditions while indexing data frame - unexpected behavior



                      i.e dropping rows where both conditions are met



                       df = df.loc[~((df['col_1']==1) | (df['col_2']==0))]





                      share|improve this answer


























                        0














                        You can use or (|) operator for this ,
                        Refer this link for it pandas: multiple conditions while indexing data frame - unexpected behavior



                        i.e dropping rows where both conditions are met



                         df = df.loc[~((df['col_1']==1) | (df['col_2']==0))]





                        share|improve this answer
























                          0












                          0








                          0






                          You can use or (|) operator for this ,
                          Refer this link for it pandas: multiple conditions while indexing data frame - unexpected behavior



                          i.e dropping rows where both conditions are met



                           df = df.loc[~((df['col_1']==1) | (df['col_2']==0))]





                          share|improve this answer












                          You can use or (|) operator for this ,
                          Refer this link for it pandas: multiple conditions while indexing data frame - unexpected behavior



                          i.e dropping rows where both conditions are met



                           df = df.loc[~((df['col_1']==1) | (df['col_2']==0))]






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 22 at 18:03









                          Saurabh

                          2,08321726




                          2,08321726






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52456874%2fdrop-rows-on-multiple-conditions-in-pandas-dataframe%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              What visual should I use to simply compare current year value vs last year in Power BI desktop

                              Alexandru Averescu

                              Trompette piccolo