We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b161f9 commit b0b6de1Copy full SHA for b0b6de1
src/core/operations/Entropy.mjs
@@ -383,7 +383,7 @@ class Entropy extends Operation {
383
run(input, args) {
384
const visualizationType = args[0];
385
386
- if (visualizationType === 'Shannon') {
+ if (visualizationType === "Shannon") {
387
return this.createShannonEntropyVisualization(this.calculateShannonEntropy(input));
388
} else if (visualizationType === "Histogram (Bar)") {
389
return this.createByteFrequencyBarHistogram(this.calculateByteFrequency(input));
0 commit comments