💾 Archived View for gemini.mingmengtou.org › 2021-03-28-neil-on-nuts.gmi captured on 2021-11-30 at 20:18:30. Gemini links have been rewritten to link to archived content

View Raw

More Information

-=-=-=-=-=-=-

neil in gemini space

neil on nuts - 2021-03-28

changelog:

building nuts back into my feeding: but which ones to eat?

the answer was pretty much what i'm doing but it was an interesting exercise.

sorted by my priorities:

6 lowest poly-unsaturated

Macadamia, Cashews, Hazelnuts, Almonds, Pistachios, Pecans.

5 of these highest mono-saturated

Macadamia, Hazelnuts, Pecans, Almonds, Cashews.

4 of these highest fibre

grams per 100 gram: polyunsaturated fat, mono-saturated fat, fibre.

Almonds 12.4 31.6 12.5 Hazelnuts 7.9 45.7 9.7 Pecans 21.6 40.8 9.6 Macadamia 1.5 58.9 8.6

or using a second method

grams per 100 gram: total fat - polyunsaturated fat (same as saturated + mono-saturated fat), fibre.

Almonds 37.5 12.5 Hazelnuts 52.9 9.7 Pecans 50.4 9.6 Macadamia 74.3 8.6

same answer:-)

what else do i get?

Vitamins and minerals exceeding 50% of RDA per 100g.

Almonds

Hazelnuts

Pecans

Macadamia

data

data from a nutrition app based on 100g portions. YDMV.

data file for nut macronutrients (530B).

working the data

using tail, sort, head, awk, tr, to work on and format the data

tail -n+3 nut_macronutrients.txt | sort -nk7 | head -n6 | \
sort -nrk6 | head -n5 | sort -nrk9 | \
head -n4 | awk '{ print $1,$7,$6,$9 }' | tr "\n" " "; echo

/, tr, and echo are for formatting.

method 2 does some awk arithmetic to determine total fat - polyunsaturated fat first and then we only work on that and the field for fibre.

I added protein to the commands below.

Grams per 100 gram: total fat - polyunsaturated fat (same as saturated + mono-saturated fat), fibre, protein.

Almonds 37.5 12.5 21.1 Hazelnuts 52.9 9.7 14.9 Pecans 50.4 9.6 9.2 Macadamia 74.3 8.6 7.9

tail -n+3 nut_macronutrients.txt | awk '{ print $1,$4-$7,$9,$3 }' | \
sort -k2nr | head -n5 | sort -k3nr | head -n4 | \
tr '\n' ' '; echo

no doubt better ways to do it lol.

some seed work to follow.

---

return to gemini.mingmengtou.org index page.

---

neil.gemini@mingmengtou.org

content licensed CC-BY-SA 4.0 unless stated.

creative commons licence information.