didier
Hi there,
I want to get the average height of a given list of people. Here is the associated code :
people = [%{name: 'Mary', height: 160},
%{name: 'Paul', height: 180},
%{name: 'Hugo'}]
heights = Enum.map(people, fn person -> Map.get(person, :height) end)
heights = Enum.filter(heights, fn h -> h != nil end)
if length(heights) > 0, do: (
Enum.reduce(heights, 0, fn (h, total) -> total + h end) / length(heights)
)
Is there a better way to do this? I would like to know if there is a way to filter a list of maps by a given key (here, the height property).
Thanks,
Didier
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #iex
- #elixirconf-us
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
I’d go for roughly the following as an
avgfunction:The cool thing about this is, that you only need to iterate a single time over the input list.
Currently it would fail on non-numeric input, but you can easily define appropriate guards. Adding one which does simply ignore
nils should be easy.And as a small rule of thumb, when you start chaining from one
Enum-function into another, you might think about usingStreaminstead to reduce the number of iterations over the complete input.But this really depends on the size of your input, if your input is short enough and the
Enum-chains also, thenStreammight take much more time.gregvaughn
Applying @NobbZ’s approach to your specific situation, I’d be looking at something like:
rvirding
You are almost at the stage where it is easier to write the loop directly and not use
Enum.gregvaughn
You say “loop” and that makes me wonder. I don’t see a good way to do it in one pass with a list comprehension. I can do it with recursion, but I prefer
Enum.reduceNobbZ
My professor for functional programming used to say, that “loop” is just another word for recursion
didier
Thanks for your replies! I really appreciate ! I’m a totally noob with functional programming and elixir. This is far different from traditional OOP…
matt212
Hi,
I am at very nascent stage in elixir , was wondering how can we achieve below case scenario in elixir
I only require to get only two columns out of three with new column names !
OvermindDL1
Assuming that above is javascript, the equivalent in Elixir would be:
So getting just a list of maps containing all of the
dockerNumber’s andplayedBy’s only would be as a direct translation of your next javascript (assuming you meant to swap the keys and values since they were backwards):As seen here:
There are other more traditionally elixir’y ways, but for such a simple example this is a simple output.
matt212
Woah, thanks a lot ,excellent ! can we also club filter with existing map, just curious though !
OvermindDL1
The ‘traditional’ Elixir way of writing that is in one of two forms, either via Enum piping:
Or via a
for comprehension:Or something like that.
EDIT: Also, this forum is Discourse, it supports normal markdown, so using code fences like:
Gets turned into this:
With syntax coloring and all.