Pandas rolling apply skip certain values











up vote
0
down vote

favorite












I have a dataframe and I want to calculate the mean column up til the value points I have for True valid cases.



ids              valid           value      mean (target output)
1 False 0.1 0
1 True 0.2 0.2
1 True 0.4 0.3
2 True 0.1 0.1
2 False 0.5 0.1
2 True 0.3 0.2
3 True 0.1 0.1
3 True 0.1 0.1
3 False 0.5 0.1
3 False 0.9 0.1


How do I exclude the False cases from the mean calculation but still carries on the previous mean. I tried this but it doesn't skip the values from the False cases. I also tried df[~df.valid] before groupby but index doesn't match the original df.



df['mean'] = df.groupby('ids').value.rolling(len(df), min_periods=1).apply(lambda x: np.mean(x)).values









share|improve this question


























    up vote
    0
    down vote

    favorite












    I have a dataframe and I want to calculate the mean column up til the value points I have for True valid cases.



    ids              valid           value      mean (target output)
    1 False 0.1 0
    1 True 0.2 0.2
    1 True 0.4 0.3
    2 True 0.1 0.1
    2 False 0.5 0.1
    2 True 0.3 0.2
    3 True 0.1 0.1
    3 True 0.1 0.1
    3 False 0.5 0.1
    3 False 0.9 0.1


    How do I exclude the False cases from the mean calculation but still carries on the previous mean. I tried this but it doesn't skip the values from the False cases. I also tried df[~df.valid] before groupby but index doesn't match the original df.



    df['mean'] = df.groupby('ids').value.rolling(len(df), min_periods=1).apply(lambda x: np.mean(x)).values









    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have a dataframe and I want to calculate the mean column up til the value points I have for True valid cases.



      ids              valid           value      mean (target output)
      1 False 0.1 0
      1 True 0.2 0.2
      1 True 0.4 0.3
      2 True 0.1 0.1
      2 False 0.5 0.1
      2 True 0.3 0.2
      3 True 0.1 0.1
      3 True 0.1 0.1
      3 False 0.5 0.1
      3 False 0.9 0.1


      How do I exclude the False cases from the mean calculation but still carries on the previous mean. I tried this but it doesn't skip the values from the False cases. I also tried df[~df.valid] before groupby but index doesn't match the original df.



      df['mean'] = df.groupby('ids').value.rolling(len(df), min_periods=1).apply(lambda x: np.mean(x)).values









      share|improve this question













      I have a dataframe and I want to calculate the mean column up til the value points I have for True valid cases.



      ids              valid           value      mean (target output)
      1 False 0.1 0
      1 True 0.2 0.2
      1 True 0.4 0.3
      2 True 0.1 0.1
      2 False 0.5 0.1
      2 True 0.3 0.2
      3 True 0.1 0.1
      3 True 0.1 0.1
      3 False 0.5 0.1
      3 False 0.9 0.1


      How do I exclude the False cases from the mean calculation but still carries on the previous mean. I tried this but it doesn't skip the values from the False cases. I also tried df[~df.valid] before groupby but index doesn't match the original df.



      df['mean'] = df.groupby('ids').value.rolling(len(df), min_periods=1).apply(lambda x: np.mean(x)).values






      python pandas rolling






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 0:25









      Matt-pow

      114215




      114215
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          You can do this by writing a customised rolling mean with groupby.apply



          df['mean'] = (
          df
          .groupby('ids')
          .apply(
          lambda df_: (df_['valid'] * df_['value']).cumsum() / (df_['valid']).cumsum()
          )
          .fillna(0) # No valid rows seen -> 0
          .values # get rid of the index
          )
          print(df)

          ids valid value mean (target output) mean
          0 1 False 0.1 0.0 0.0
          1 1 True 0.2 0.2 0.2
          2 1 True 0.4 0.3 0.3
          3 2 True 0.1 0.1 0.1
          4 2 False 0.5 0.1 0.1
          5 2 True 0.3 0.2 0.2
          6 3 True 0.1 0.1 0.1
          7 3 True 0.1 0.1 0.1
          8 3 False 0.5 0.1 0.1
          9 3 False 0.9 0.1 0.1


          Since a rolling mean is just the sum divided by the number of observations, we can create rolling versions of both with the cumsum while suppressing invalid rows by setting both observation number and value to zero.






          share|improve this answer





















          • Much appreciated!
            – Matt-pow
            Nov 10 at 3:12











          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',
          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%2f53234933%2fpandas-rolling-apply-skip-certain-values%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote



          accepted










          You can do this by writing a customised rolling mean with groupby.apply



          df['mean'] = (
          df
          .groupby('ids')
          .apply(
          lambda df_: (df_['valid'] * df_['value']).cumsum() / (df_['valid']).cumsum()
          )
          .fillna(0) # No valid rows seen -> 0
          .values # get rid of the index
          )
          print(df)

          ids valid value mean (target output) mean
          0 1 False 0.1 0.0 0.0
          1 1 True 0.2 0.2 0.2
          2 1 True 0.4 0.3 0.3
          3 2 True 0.1 0.1 0.1
          4 2 False 0.5 0.1 0.1
          5 2 True 0.3 0.2 0.2
          6 3 True 0.1 0.1 0.1
          7 3 True 0.1 0.1 0.1
          8 3 False 0.5 0.1 0.1
          9 3 False 0.9 0.1 0.1


          Since a rolling mean is just the sum divided by the number of observations, we can create rolling versions of both with the cumsum while suppressing invalid rows by setting both observation number and value to zero.






          share|improve this answer





















          • Much appreciated!
            – Matt-pow
            Nov 10 at 3:12















          up vote
          1
          down vote



          accepted










          You can do this by writing a customised rolling mean with groupby.apply



          df['mean'] = (
          df
          .groupby('ids')
          .apply(
          lambda df_: (df_['valid'] * df_['value']).cumsum() / (df_['valid']).cumsum()
          )
          .fillna(0) # No valid rows seen -> 0
          .values # get rid of the index
          )
          print(df)

          ids valid value mean (target output) mean
          0 1 False 0.1 0.0 0.0
          1 1 True 0.2 0.2 0.2
          2 1 True 0.4 0.3 0.3
          3 2 True 0.1 0.1 0.1
          4 2 False 0.5 0.1 0.1
          5 2 True 0.3 0.2 0.2
          6 3 True 0.1 0.1 0.1
          7 3 True 0.1 0.1 0.1
          8 3 False 0.5 0.1 0.1
          9 3 False 0.9 0.1 0.1


          Since a rolling mean is just the sum divided by the number of observations, we can create rolling versions of both with the cumsum while suppressing invalid rows by setting both observation number and value to zero.






          share|improve this answer





















          • Much appreciated!
            – Matt-pow
            Nov 10 at 3:12













          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          You can do this by writing a customised rolling mean with groupby.apply



          df['mean'] = (
          df
          .groupby('ids')
          .apply(
          lambda df_: (df_['valid'] * df_['value']).cumsum() / (df_['valid']).cumsum()
          )
          .fillna(0) # No valid rows seen -> 0
          .values # get rid of the index
          )
          print(df)

          ids valid value mean (target output) mean
          0 1 False 0.1 0.0 0.0
          1 1 True 0.2 0.2 0.2
          2 1 True 0.4 0.3 0.3
          3 2 True 0.1 0.1 0.1
          4 2 False 0.5 0.1 0.1
          5 2 True 0.3 0.2 0.2
          6 3 True 0.1 0.1 0.1
          7 3 True 0.1 0.1 0.1
          8 3 False 0.5 0.1 0.1
          9 3 False 0.9 0.1 0.1


          Since a rolling mean is just the sum divided by the number of observations, we can create rolling versions of both with the cumsum while suppressing invalid rows by setting both observation number and value to zero.






          share|improve this answer












          You can do this by writing a customised rolling mean with groupby.apply



          df['mean'] = (
          df
          .groupby('ids')
          .apply(
          lambda df_: (df_['valid'] * df_['value']).cumsum() / (df_['valid']).cumsum()
          )
          .fillna(0) # No valid rows seen -> 0
          .values # get rid of the index
          )
          print(df)

          ids valid value mean (target output) mean
          0 1 False 0.1 0.0 0.0
          1 1 True 0.2 0.2 0.2
          2 1 True 0.4 0.3 0.3
          3 2 True 0.1 0.1 0.1
          4 2 False 0.5 0.1 0.1
          5 2 True 0.3 0.2 0.2
          6 3 True 0.1 0.1 0.1
          7 3 True 0.1 0.1 0.1
          8 3 False 0.5 0.1 0.1
          9 3 False 0.9 0.1 0.1


          Since a rolling mean is just the sum divided by the number of observations, we can create rolling versions of both with the cumsum while suppressing invalid rows by setting both observation number and value to zero.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 10 at 0:52









          Matthias Ossadnik

          57427




          57427












          • Much appreciated!
            – Matt-pow
            Nov 10 at 3:12


















          • Much appreciated!
            – Matt-pow
            Nov 10 at 3:12
















          Much appreciated!
          – Matt-pow
          Nov 10 at 3:12




          Much appreciated!
          – Matt-pow
          Nov 10 at 3:12


















          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%2f53234933%2fpandas-rolling-apply-skip-certain-values%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

          Landwehr

          Reims

          Schenkenzell