Skip to content

Commit

Permalink
Typo in normalization_type and HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
hosseinmoein committed Nov 3, 2023
1 parent 3d8fe69 commit cdcf373
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions docs/HTML/NormalizeVisitor.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,11 @@
simple = 1, // <div class="frac"> <span>V</span> <span class="symbol">/</span> <span class="bottom">&sum; x<sub>i</sub></span> </div>
euclidean = 2, // <div class="frac"> <span>V</span> <span class="symbol">/</span> <span class="bottom"><span>&radic;<span style="text-decoration:overline;">&sum; x<sub>i</sub><sup>2</sup></span></span> </div>
maxi = 3, // <div class="frac"> <span>V</span> <span class="symbol">/</span> <span class="bottom">MAX(x<sub>i</sub>)</span> </div>
min_max = 4, // <div class="frac"> <span>V - μ(V)</span> <span class="symbol">/</span> <span class="bottom">σ(V)</span> </div>
decimal_scaling = 5, // <div class="frac"> <span>V</span> <span class="symbol">/</span> <span class="bottom">10<sup>MAX(x<sub>i</sub>)</sup></span> </div>
log_transform = 6, // Ln(V)
root_transform = 7, // &radic;<span style="text-decoration:overline;">V</span>
z_score = 4, // <div class="frac"> <span>V - μ(V)</span> <span class="symbol">/</span> <span class="bottom">σ(V)</span> </div>
min_max = 5, // <div class="frac"> <span>V - MIN(V)</span> <span class="symbol">/</span> <span class="bottom">MAX(V) - MIN(V)</span> </div>
decimal_scaling = 6, // <div class="frac"> <span>V</span> <span class="symbol">/</span> <span class="bottom">10<sup>MAX(x<sub>i</sub>)</sup></span> </div>
log_transform = 7, // Ln(V)
root_transform = 8, // &radic;<span style="text-decoration:overline;">V</span>
};
</font></B></PRE>
</td>
Expand Down
9 changes: 5 additions & 4 deletions include/DataFrame/DataFrameTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -471,10 +471,11 @@ enum class normalization_type : unsigned char {
simple = 1, // V / sum(xi)
euclidean = 2, // V / sqrt(sum(xi^2))
maxi = 3, // V / max(xi)
min_max = 4, // (V - μ(V)) / σ(V)
decimal_scaling = 5, // V / 10^max(xi) order
log_transform = 6, // ln(xi)
root_transform = 7, // sqrt(xi)
z_score = 4, // (V - μ(V)) / σ(V)
min_max = 5, // (V - min(V)) / (max(V) - min(V))
decimal_scaling = 6, // V / 10^max(xi) order
log_transform = 7, // ln(xi)
root_transform = 8, // sqrt(xi)
};

// ----------------------------------------------------------------------------
Expand Down

0 comments on commit cdcf373

Please sign in to comment.