Get sum of specific rows in PySparkHow to sum array of numbers in Ruby?Converting a Pandas GroupBy output from Series to DataFrameHow can I replace all the NaN values with Zero's in a column of a pandas dataframeHow to iterate over rows in a DataFrame in Pandas?Select rows from a DataFrame based on values in a column in pandasHow to store a dataframe using PandasDivide Column in Pandas Dataframe by Sum of ColumnPyspark : Cumulative Sum with reset conditionCould not get sum of each row in a column in php mysql tableFill in specific row in pySpark dataframe while adding new columns

Can I submit a paper under an alias so as to avoid trouble in my country?

Are required indicators necessary for radio buttons?

Can pay be witheld for hours cleaning up after closing time?

Is there a SubImageApply?

Does Swashbuckler's Fancy Footwork apply if the attack was made with Booming Blade?

What is the evidence on the danger of feeding whole blueberries and grapes to infants and toddlers?

Why don't sharp and flat root note chords seem to be present in much guitar music?

How to think about joining a company whose business I do not understand?

Potential new partner angry about first collaboration - how to answer email to close up this encounter in a graceful manner

!I!n!s!e!r!t! !n!b!e!t!w!e!e!n!

What is the difference between a premise and an assumption in logic?

Why is 日本 read as "nihon" but not "nitsuhon"?

Why does my house heat up, even when it's cool outside?

Can you be convicted for being a murderer twice?

Do I have to learn /o/ or /ɔ/ separately?

What can I do to keep a threaded bolt from falling out of it’s slot

How can I support the recycling, but not the new production of aluminum?

Why were movies shot on film shot at 24 frames per second?

Don't teach Dhamma to those who can't appreciate it or aren't interested

Nuclear decay triggers

Is "stainless" a bulk or a surface property of stainless steel?

jersey vs sweater

What are the pros and cons of Einstein-Cartan Theory?

Was 'help' pronounced starting with a vowel sound?



Get sum of specific rows in PySpark


How to sum array of numbers in Ruby?Converting a Pandas GroupBy output from Series to DataFrameHow can I replace all the NaN values with Zero's in a column of a pandas dataframeHow to iterate over rows in a DataFrame in Pandas?Select rows from a DataFrame based on values in a column in pandasHow to store a dataframe using PandasDivide Column in Pandas Dataframe by Sum of ColumnPyspark : Cumulative Sum with reset conditionCould not get sum of each row in a column in php mysql tableFill in specific row in pySpark dataframe while adding new columns






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have this dataframe



+----+-----+-----+
|Cat |01/02|02/02|......
+----+-----+-----+
| a | 20 | 7 |......
| b | 30 | 12 |......
| c | 10 | 10 |
All| 60 | 29 |......
+----+---+-------+


I want the total to be this sum Total = a +b -c . Right now I am using this script



dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


I tried to calculate the desired outcome by doing this



pr = col("Cat")=='b'
dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c) - when(pr, F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


but I am getting null in the total. Any hints?










share|improve this question






























    0















    I have this dataframe



    +----+-----+-----+
    |Cat |01/02|02/02|......
    +----+-----+-----+
    | a | 20 | 7 |......
    | b | 30 | 12 |......
    | c | 10 | 10 |
    All| 60 | 29 |......
    +----+---+-------+


    I want the total to be this sum Total = a +b -c . Right now I am using this script



    dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


    I tried to calculate the desired outcome by doing this



    pr = col("Cat")=='b'
    dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c) - when(pr, F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


    but I am getting null in the total. Any hints?










    share|improve this question


























      0












      0








      0








      I have this dataframe



      +----+-----+-----+
      |Cat |01/02|02/02|......
      +----+-----+-----+
      | a | 20 | 7 |......
      | b | 30 | 12 |......
      | c | 10 | 10 |
      All| 60 | 29 |......
      +----+---+-------+


      I want the total to be this sum Total = a +b -c . Right now I am using this script



      dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


      I tried to calculate the desired outcome by doing this



      pr = col("Cat")=='b'
      dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c) - when(pr, F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


      but I am getting null in the total. Any hints?










      share|improve this question














      I have this dataframe



      +----+-----+-----+
      |Cat |01/02|02/02|......
      +----+-----+-----+
      | a | 20 | 7 |......
      | b | 30 | 12 |......
      | c | 10 | 10 |
      All| 60 | 29 |......
      +----+---+-------+


      I want the total to be this sum Total = a +b -c . Right now I am using this script



      dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


      I tried to calculate the desired outcome by doing this



      pr = col("Cat")=='b'
      dfFrc = fs.union(fs.select(F.lit("Total").alias("Cat"), *[F.sum(F.col(c) - when(pr, F.col(c)).alias(c) for c in fs.columns if c != 'Cat']))


      but I am getting null in the total. Any hints?







      dataframe pyspark sum






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 27 at 15:29









      Gerasimos Gerasimos

      741 gold badge2 silver badges13 bronze badges




      741 gold badge2 silver badges13 bronze badges

























          0






          active

          oldest

          votes










          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%2f55380940%2fget-sum-of-specific-rows-in-pyspark%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55380940%2fget-sum-of-specific-rows-in-pyspark%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