Averaging over columns while ignoring zero entries
Clash Royale CLAN TAG#URR8PPP
$begingroup$
I have:
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0,
1, 0, 2, 2, 2, 4, 0
I want to calculate the average but without considering the 0s.
The result should be:
result = Array[0 &, Last@Dimensions@list];
n = Length@result;
Do[
array = list[[All, i]];
total = Total[array];
cnt = Count[array, 0];
If[Length@array - cnt > 0,
result[[i]] = total/(Length@array - cnt),
result[[i]] = 0
];,
i, 1, n
];
result // N
2., 3., 3., 4., 4., 3., 9.
How can I replace the Do
loop?
list-manipulation
$endgroup$
|
show 1 more comment
$begingroup$
I have:
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0,
1, 0, 2, 2, 2, 4, 0
I want to calculate the average but without considering the 0s.
The result should be:
result = Array[0 &, Last@Dimensions@list];
n = Length@result;
Do[
array = list[[All, i]];
total = Total[array];
cnt = Count[array, 0];
If[Length@array - cnt > 0,
result[[i]] = total/(Length@array - cnt),
result[[i]] = 0
];,
i, 1, n
];
result // N
2., 3., 3., 4., 4., 3., 9.
How can I replace the Do
loop?
list-manipulation
$endgroup$
1
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
$endgroup$
– MarcoB
Mar 8 at 14:10
$begingroup$
Thank you for the solution.
$endgroup$
– lio
Mar 8 at 14:12
$begingroup$
You’re welcome. I’ve added an answer since this solution works for you
$endgroup$
– MarcoB
Mar 8 at 14:13
5
$begingroup$
I'm not at a computer right now, so please tryTotal[list]/Total[Unitize[list]]
.
$endgroup$
– J. M. is away♦
Mar 8 at 14:21
$begingroup$
@J.M. Well, that is clever! Cool trick :-)
$endgroup$
– MarcoB
Mar 8 at 16:50
|
show 1 more comment
$begingroup$
I have:
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0,
1, 0, 2, 2, 2, 4, 0
I want to calculate the average but without considering the 0s.
The result should be:
result = Array[0 &, Last@Dimensions@list];
n = Length@result;
Do[
array = list[[All, i]];
total = Total[array];
cnt = Count[array, 0];
If[Length@array - cnt > 0,
result[[i]] = total/(Length@array - cnt),
result[[i]] = 0
];,
i, 1, n
];
result // N
2., 3., 3., 4., 4., 3., 9.
How can I replace the Do
loop?
list-manipulation
$endgroup$
I have:
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0,
1, 0, 2, 2, 2, 4, 0
I want to calculate the average but without considering the 0s.
The result should be:
result = Array[0 &, Last@Dimensions@list];
n = Length@result;
Do[
array = list[[All, i]];
total = Total[array];
cnt = Count[array, 0];
If[Length@array - cnt > 0,
result[[i]] = total/(Length@array - cnt),
result[[i]] = 0
];,
i, 1, n
];
result // N
2., 3., 3., 4., 4., 3., 9.
How can I replace the Do
loop?
list-manipulation
list-manipulation
edited Mar 11 at 15:06
lio
asked Mar 8 at 13:50
liolio
1,102218
1,102218
1
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
$endgroup$
– MarcoB
Mar 8 at 14:10
$begingroup$
Thank you for the solution.
$endgroup$
– lio
Mar 8 at 14:12
$begingroup$
You’re welcome. I’ve added an answer since this solution works for you
$endgroup$
– MarcoB
Mar 8 at 14:13
5
$begingroup$
I'm not at a computer right now, so please tryTotal[list]/Total[Unitize[list]]
.
$endgroup$
– J. M. is away♦
Mar 8 at 14:21
$begingroup$
@J.M. Well, that is clever! Cool trick :-)
$endgroup$
– MarcoB
Mar 8 at 16:50
|
show 1 more comment
1
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
$endgroup$
– MarcoB
Mar 8 at 14:10
$begingroup$
Thank you for the solution.
$endgroup$
– lio
Mar 8 at 14:12
$begingroup$
You’re welcome. I’ve added an answer since this solution works for you
$endgroup$
– MarcoB
Mar 8 at 14:13
5
$begingroup$
I'm not at a computer right now, so please tryTotal[list]/Total[Unitize[list]]
.
$endgroup$
– J. M. is away♦
Mar 8 at 14:21
$begingroup$
@J.M. Well, that is clever! Cool trick :-)
$endgroup$
– MarcoB
Mar 8 at 16:50
1
1
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
$endgroup$
– MarcoB
Mar 8 at 14:10
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
$endgroup$
– MarcoB
Mar 8 at 14:10
$begingroup$
Thank you for the solution.
$endgroup$
– lio
Mar 8 at 14:12
$begingroup$
Thank you for the solution.
$endgroup$
– lio
Mar 8 at 14:12
$begingroup$
You’re welcome. I’ve added an answer since this solution works for you
$endgroup$
– MarcoB
Mar 8 at 14:13
$begingroup$
You’re welcome. I’ve added an answer since this solution works for you
$endgroup$
– MarcoB
Mar 8 at 14:13
5
5
$begingroup$
I'm not at a computer right now, so please try
Total[list]/Total[Unitize[list]]
.$endgroup$
– J. M. is away♦
Mar 8 at 14:21
$begingroup$
I'm not at a computer right now, so please try
Total[list]/Total[Unitize[list]]
.$endgroup$
– J. M. is away♦
Mar 8 at 14:21
$begingroup$
@J.M. Well, that is clever! Cool trick :-)
$endgroup$
– MarcoB
Mar 8 at 16:50
$begingroup$
@J.M. Well, that is clever! Cool trick :-)
$endgroup$
– MarcoB
Mar 8 at 16:50
|
show 1 more comment
3 Answers
3
active
oldest
votes
$begingroup$
I'm posting this as a CW answer, so J.M.'s very nice answer, made in a comment above, gets recorded as a real answer.
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/Total[Unitize[list]]
2, 3, 3, 4, 4, 3, 9
Update
As J.M. points out in a comment below, there is more robust formulation that handles the cases where one or mort columns contain all zeros.
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/(Total[Unitize[list]] /. 0 -> 1)
2, 3, 3, 4, 4, 3, 0
$endgroup$
1
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
3
$begingroup$
@lio, change the denominator to(Total[Unitize[list]] /. 0 -> 1)
.
$endgroup$
– J. M. is away♦
Mar 11 at 15:02
add a comment |
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
2,3,3,4,4,3,9
$endgroup$
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
@lio, It does not produce an error. It just returnsMean[]
in the case that all entries are zero. What result would you expect in that case?
$endgroup$
– MarcoB
Mar 11 at 16:09
1
$begingroup$
I think the OP expects2, 3, 3, 4, 4, 3, 0
in this case.
$endgroup$
– m_goldberg
Mar 11 at 18:20
add a comment |
$begingroup$
ClearAll[means]
means = Mean[#["NonzeroValues"] /. -> 0] & /@ SparseArray[Transpose[#]] &;
Examples:
list1 = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list1
2, 3, 3, 4, 4, 3, 9
list2 = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list2
2, 3, 3, 4, 4, 3, 0
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "387"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f192881%2faveraging-over-columns-while-ignoring-zero-entries%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
I'm posting this as a CW answer, so J.M.'s very nice answer, made in a comment above, gets recorded as a real answer.
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/Total[Unitize[list]]
2, 3, 3, 4, 4, 3, 9
Update
As J.M. points out in a comment below, there is more robust formulation that handles the cases where one or mort columns contain all zeros.
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/(Total[Unitize[list]] /. 0 -> 1)
2, 3, 3, 4, 4, 3, 0
$endgroup$
1
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
3
$begingroup$
@lio, change the denominator to(Total[Unitize[list]] /. 0 -> 1)
.
$endgroup$
– J. M. is away♦
Mar 11 at 15:02
add a comment |
$begingroup$
I'm posting this as a CW answer, so J.M.'s very nice answer, made in a comment above, gets recorded as a real answer.
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/Total[Unitize[list]]
2, 3, 3, 4, 4, 3, 9
Update
As J.M. points out in a comment below, there is more robust formulation that handles the cases where one or mort columns contain all zeros.
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/(Total[Unitize[list]] /. 0 -> 1)
2, 3, 3, 4, 4, 3, 0
$endgroup$
1
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
3
$begingroup$
@lio, change the denominator to(Total[Unitize[list]] /. 0 -> 1)
.
$endgroup$
– J. M. is away♦
Mar 11 at 15:02
add a comment |
$begingroup$
I'm posting this as a CW answer, so J.M.'s very nice answer, made in a comment above, gets recorded as a real answer.
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/Total[Unitize[list]]
2, 3, 3, 4, 4, 3, 9
Update
As J.M. points out in a comment below, there is more robust formulation that handles the cases where one or mort columns contain all zeros.
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/(Total[Unitize[list]] /. 0 -> 1)
2, 3, 3, 4, 4, 3, 0
$endgroup$
I'm posting this as a CW answer, so J.M.'s very nice answer, made in a comment above, gets recorded as a real answer.
list = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/Total[Unitize[list]]
2, 3, 3, 4, 4, 3, 9
Update
As J.M. points out in a comment below, there is more robust formulation that handles the cases where one or mort columns contain all zeros.
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
Total[list]/(Total[Unitize[list]] /. 0 -> 1)
2, 3, 3, 4, 4, 3, 0
edited Mar 11 at 18:24
community wiki
2 revs
m_goldberg
1
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
3
$begingroup$
@lio, change the denominator to(Total[Unitize[list]] /. 0 -> 1)
.
$endgroup$
– J. M. is away♦
Mar 11 at 15:02
add a comment |
1
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
3
$begingroup$
@lio, change the denominator to(Total[Unitize[list]] /. 0 -> 1)
.
$endgroup$
– J. M. is away♦
Mar 11 at 15:02
1
1
$begingroup$
This produces an error for:
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
This produces an error for:
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
3
3
$begingroup$
@lio, change the denominator to
(Total[Unitize[list]] /. 0 -> 1)
.$endgroup$
– J. M. is away♦
Mar 11 at 15:02
$begingroup$
@lio, change the denominator to
(Total[Unitize[list]] /. 0 -> 1)
.$endgroup$
– J. M. is away♦
Mar 11 at 15:02
add a comment |
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
2,3,3,4,4,3,9
$endgroup$
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
@lio, It does not produce an error. It just returnsMean[]
in the case that all entries are zero. What result would you expect in that case?
$endgroup$
– MarcoB
Mar 11 at 16:09
1
$begingroup$
I think the OP expects2, 3, 3, 4, 4, 3, 0
in this case.
$endgroup$
– m_goldberg
Mar 11 at 18:20
add a comment |
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
2,3,3,4,4,3,9
$endgroup$
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
@lio, It does not produce an error. It just returnsMean[]
in the case that all entries are zero. What result would you expect in that case?
$endgroup$
– MarcoB
Mar 11 at 16:09
1
$begingroup$
I think the OP expects2, 3, 3, 4, 4, 3, 0
in this case.
$endgroup$
– m_goldberg
Mar 11 at 18:20
add a comment |
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
2,3,3,4,4,3,9
$endgroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
2,3,3,4,4,3,9
answered Mar 8 at 14:12
MarcoBMarcoB
38.5k557115
38.5k557115
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
@lio, It does not produce an error. It just returnsMean[]
in the case that all entries are zero. What result would you expect in that case?
$endgroup$
– MarcoB
Mar 11 at 16:09
1
$begingroup$
I think the OP expects2, 3, 3, 4, 4, 3, 0
in this case.
$endgroup$
– m_goldberg
Mar 11 at 18:20
add a comment |
$begingroup$
This produces an error for:list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
@lio, It does not produce an error. It just returnsMean[]
in the case that all entries are zero. What result would you expect in that case?
$endgroup$
– MarcoB
Mar 11 at 16:09
1
$begingroup$
I think the OP expects2, 3, 3, 4, 4, 3, 0
in this case.
$endgroup$
– m_goldberg
Mar 11 at 18:20
$begingroup$
This produces an error for:
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
This produces an error for:
list = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0
$endgroup$
– lio
Mar 11 at 14:58
$begingroup$
@lio, It does not produce an error. It just returns
Mean[]
in the case that all entries are zero. What result would you expect in that case?$endgroup$
– MarcoB
Mar 11 at 16:09
$begingroup$
@lio, It does not produce an error. It just returns
Mean[]
in the case that all entries are zero. What result would you expect in that case?$endgroup$
– MarcoB
Mar 11 at 16:09
1
1
$begingroup$
I think the OP expects
2, 3, 3, 4, 4, 3, 0
in this case.$endgroup$
– m_goldberg
Mar 11 at 18:20
$begingroup$
I think the OP expects
2, 3, 3, 4, 4, 3, 0
in this case.$endgroup$
– m_goldberg
Mar 11 at 18:20
add a comment |
$begingroup$
ClearAll[means]
means = Mean[#["NonzeroValues"] /. -> 0] & /@ SparseArray[Transpose[#]] &;
Examples:
list1 = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list1
2, 3, 3, 4, 4, 3, 9
list2 = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list2
2, 3, 3, 4, 4, 3, 0
$endgroup$
add a comment |
$begingroup$
ClearAll[means]
means = Mean[#["NonzeroValues"] /. -> 0] & /@ SparseArray[Transpose[#]] &;
Examples:
list1 = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list1
2, 3, 3, 4, 4, 3, 9
list2 = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list2
2, 3, 3, 4, 4, 3, 0
$endgroup$
add a comment |
$begingroup$
ClearAll[means]
means = Mean[#["NonzeroValues"] /. -> 0] & /@ SparseArray[Transpose[#]] &;
Examples:
list1 = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list1
2, 3, 3, 4, 4, 3, 9
list2 = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list2
2, 3, 3, 4, 4, 3, 0
$endgroup$
ClearAll[means]
means = Mean[#["NonzeroValues"] /. -> 0] & /@ SparseArray[Transpose[#]] &;
Examples:
list1 = 1, 3, 4, 5, 6, 0, 9, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list1
2, 3, 3, 4, 4, 3, 9
list2 = 1, 3, 4, 5, 6, 0, 0, 4, 0, 3, 5, 0, 2, 0, 1, 0, 2, 2, 2, 4, 0;
means @ list2
2, 3, 3, 4, 4, 3, 0
answered Mar 11 at 20:54
kglrkglr
190k10206425
190k10206425
add a comment |
add a comment |
Thanks for contributing an answer to Mathematica Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f192881%2faveraging-over-columns-while-ignoring-zero-entries%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
$begingroup$
Mean /@ DeleteCases[Transpose@list, 0, All]
$endgroup$
– MarcoB
Mar 8 at 14:10
$begingroup$
Thank you for the solution.
$endgroup$
– lio
Mar 8 at 14:12
$begingroup$
You’re welcome. I’ve added an answer since this solution works for you
$endgroup$
– MarcoB
Mar 8 at 14:13
5
$begingroup$
I'm not at a computer right now, so please try
Total[list]/Total[Unitize[list]]
.$endgroup$
– J. M. is away♦
Mar 8 at 14:21
$begingroup$
@J.M. Well, that is clever! Cool trick :-)
$endgroup$
– MarcoB
Mar 8 at 16:50