We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bea5fe commit 0d4de81Copy full SHA for 0d4de81
src/simple-stats.js
@@ -19,7 +19,7 @@ export function SimpleStats(flightLog) {
19
20
const getMinMaxMean = (fieldName) => {
21
const index = _.findIndex(fields, (f) => f === fieldName);
22
- if (index === -1 || !frames.length || !(index in frames[0])) {
+ if (index === -1 || !frames.length || !(index in frames[0]) || !frames[index][index]) {
23
return undefined;
24
}
25
const result = _.mapValues({
0 commit comments