Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6955387
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:43:47+00:00 2026-05-27T14:43:47+00:00

Is there a standard function to sum all values in a Haskell map. My

  • 0

Is there a standard function to sum all values in a Haskell map. My Map reads something like [(a,2),(b,4),(c,6)]?

Essentially what I am trying to do is a normalized frequency distribution. So the values of the keys in the above map are counts for a,b,c. I need to normalize them as [(a,1/6),(b,1/3),(c,1/2)]

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T14:43:47+00:00Added an answer on May 27, 2026 at 2:43 pm

    You can simply do Map.foldl' (+) 0 (or M.foldl', if you imported Data.Map as M).

    This is just like foldl' (+) 0 . Map.elems, but slightly more efficient. (Don’t forget the apostrophe — using foldl or foldr to do sums with the standard numeric types (Int, Integer, Float, Double, etc.) will build up huge thunks, which will use up lots of memory and possibly cause your program to overflow the stack.)

    However, only sufficiently recent versions of containers (>= 0.4.2.0) contain Data.Map.foldl’, and you shouldn’t upgrade it with cabal install, since it comes with GHC. So unless you’re on GHC 7.2 or above, foldl' (+) 0 . Map.elems is the best way to accomplish this.

    You could also use Data.Foldable.sum, which works on any instance of the Foldable typeclass, but will still build up large thunks on the common numeric types.

    Here’s a complete example:

    normalize :: (Fractional a) => Map k a -> Map k a
    normalize m = Map.map (/ total) m
      where total = foldl' (+) 0 $ Map.elems m
    

    You’ll need to import Data.List to use foldl'.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an NSURL that looks like this: file://localhost/Users/myuser/myfile.txt Is there a standard function
Is there a standard C function similar to strtol which will take a char*
Is there a way to disable the standard built-in function of the Windows-Key (open
Does anyone know if there's a de-facto standard (i.e., TR1 or Boost) C++ function
Is there a standard convention (like phpdoc or python's docstring) for commenting C# code
Is there stock standard function that does newline to <br /> encoding in ASP.Net
Is there a standard function that returns the position (not value) of the maximum
Is there any standard function in PHP to find only extension of an image
Is there any standard C function that converts from hexadecimal string to byte array
In Smarty, is there a standard function or an easy way to generate json

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.