| bio | website | kickingdragon.com |
|---|---|---|
| location | Vancouver, Canada | |
| age | 32 | |
| visits | member for | 4 years, 4 months |
| seen | May 19 at 7:25 | |
| stats | profile views | 330 |
|
Apr 4 |
asked | C#: Implement Abstract Base of An Interface With Minimal Duplication? |
|
Mar 23 |
awarded | Tumbleweed |
|
Mar 22 |
awarded | Nice Question |
|
Mar 16 |
asked | Facade On C# XMLSerializer? |
|
Mar 7 |
comment |
Find an item in List by LINQ? Great answer. I found SingleOrDefault to be my answer of choice - same as Single but returns 'null' if it can't find it. |
|
Feb 5 |
awarded | Nice Question |
|
Jan 18 |
awarded | Yearling |
|
Jan 1 |
comment |
FFmpeg file conversion formats and file extensions Or, look at ffprobe. You still need to shell to execute it, but you can get it to dump a JSON output as well: stackoverflow.com/questions/7708373/… |
|
Dec 6 |
comment |
Turn a string into a valid filename in Python +1 Loved this. Slight modification I've done: "".join([x if x.isalnum() else "_" for x in s]) -- would yield a result where invalid items are _, like they're blanked. Maybe tha thelps someone else. |
|
Nov 15 |
accepted | LINQ: Average of a Sub IEnumerable |
|
Nov 13 |
comment |
LINQ: Average of a Sub IEnumerable As you astutely asked in the comments, I do want to average across all items, not just the ones containing data. Your solution is close, but misses the case where detail is missing from one element. Apparently Average() in this case only averages over items with this element in it? |
|
Nov 13 |
comment |
LINQ: Average of a Sub IEnumerable Ooh, good catch. I didn't realize my example end data was incorrect. I'll have to test this out and make sure it catches all the cases, but it looks good. Dumb question however: what's the difference between using function style notation for LINQ versus the "from x in foo" notation? |
|
Nov 13 |
revised |
LINQ: Average of a Sub IEnumerable Fixing my example desired data after Rawling pointed out my folly. :) |
|
Nov 13 |
comment |
LINQ: Average of a Sub IEnumerable Rawling: .5 - average over all items. Just curious: does that complicate things in LINQ-land? |
|
Nov 13 |
comment |
LINQ: Average of a Sub IEnumerable Close, but not quite. You're averaging each individual item, versus averaging the sum. I've posted an update to the question using your solution as a partial answer, and given you a +1 for getting me that much closer. |
|
Nov 13 |
revised |
LINQ: Average of a Sub IEnumerable Updated to show partial example. |
|
Nov 13 |
comment |
LINQ: Average of a Sub IEnumerable Very close! This is missing the summing of the details that are the same under a particular item. I'm trying to figure that out locally... You'll likely beat me to it tho. :) |
|
Nov 13 |
comment |
LINQ: Average of a Sub IEnumerable I think you have it right James, but to be extra clear I've updated the question with my desired output. I want the final sequence to contain one entry for each size, and the "Details" entry to contain the average of the all the item's details, after they've been totaled per item. |
|
Nov 13 |
revised |
LINQ: Average of a Sub IEnumerable Updated example to give desired output. |
|
Nov 13 |
asked | LINQ: Average of a Sub IEnumerable |