-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13c63b6
commit 8a8e723
Showing
59 changed files
with
638 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Statistics: ConfusionMatrixChart</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous"> | ||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script> | ||
<script type="text/javascript" async | ||
src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML"> | ||
</script> | ||
<style> | ||
var { | ||
font-style: italics; | ||
font-weight: bold; | ||
} | ||
td { | ||
vertical-align: top; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="bg-dark"> | ||
<div class="container-xl"> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href=index.html> | ||
<img src="assets/statistics.png" alt="statistics" class="d-inline-block align-top" width="25" height="25"> | ||
Statistics | ||
</a> | ||
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="index.html#Clustering"> | ||
<i class="fas fa-list-alt"></i> | ||
Clustering | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="https://gnu-octave.github.io/packages/"> | ||
<img src="assets/octave-logo.svg" alt="GNU Octave logo" class="d-inline-block align-top" width="25" height="25"> | ||
Octave Packages | ||
</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="https://www.octave.org"> | ||
<i class="fas fa-home"></i> | ||
GNU Octave website | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</div> | ||
</div> | ||
<div class="container-xl my-4"> | ||
<div class="card rounded"> | ||
<div class="card-header card-header-mod"> | ||
<div class="row d-flex flex-wrap align-items-center"> | ||
<div class="col-sm-3 col-md-5 mb-2 mb-sm-0"> | ||
<h3 class="d-inline-block mr-2"> | ||
Function Reference: <b><code>ConfusionMatrixChart</code></b> | ||
</h3> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card-body"> | ||
<dl> | ||
<dt><u>statistics:</u> <var>p</var> = <b>ConfusionMatrixChart</b><i> ()</i></dt> | ||
</dl> | ||
<p> Create object <var>p</var>, a Confusion Matrix Chart object. | ||
</p> | ||
<div class="ms-5"> | ||
<dl compact="compact"> | ||
<dt> <code>"DiagonalColor"</code></dt> | ||
</dl> | ||
<p> The color of the patches on the diagonal, default is [0.0, 0.4471, 0.7412]. | ||
</p> | ||
</dd> | ||
<dt> <code>"OffDiagonalColor"</code></dt> | ||
</dl> | ||
<p> The color of the patches off the diagonal, default is [0.851, 0.3255, 0.098]. | ||
</p> | ||
</dd> | ||
<dt> <code>"GridVisible"</code></dt> | ||
</dl> | ||
<p> Available values: <code>on</code> (default), <code>off</code>. | ||
</p> | ||
</dd> | ||
<dt> <code>"Normalization"</code></dt> | ||
</dl> | ||
<p> Available values: <code>absolute</code> (default), <code>column-normalized</code>, | ||
<code>row-normalized</code>, <code>total-normalized</code>. | ||
</p> | ||
</dd> | ||
<dt> <code>"ColumnSummary"</code></dt> | ||
</dl> | ||
<p> Available values: <code>off</code> (default), <code>absolute</code>, | ||
<code>column-normalized</code>,<code>total-normalized</code>. | ||
</p> | ||
</dd> | ||
<dt> <code>"RowSummary"</code></dt> | ||
</dl> | ||
<p> Available values: <code>off</code> (default), <code>absolute</code>, | ||
<code>row-normalized</code>, <code>total-normalized</code>. | ||
</p></dd> | ||
</dl> | ||
|
||
<p> MATLAB compatibility – the not implemented properties are: FontColor, | ||
PositionConstraint, InnerPosition, Layout. | ||
</p> | ||
<p> <strong>See also: </strong> | ||
<a href="confusionchart.html">confusionchart</a> | ||
</p> | ||
<p><strong>Source Code: </strong> | ||
<a href="https://github.com/gnu-octave/statistics/tree/main/inst/ConfusionMatrixChart.m">ConfusionMatrixChart</a> | ||
</div> | ||
<div class="container-xl my-4"> | ||
<div class="card rounded"> | ||
<div class="card-header card-header-mod"> | ||
<div class="row d-flex flex-wrap align-items-center"> | ||
<div class="col-sm-3 col-md-5 mb-2 mb-sm-0"> | ||
<h3 class="d-inline-block mr-2"> | ||
Example: 1 | ||
</h3> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="card-body"> | ||
<div class="container bg-light"> | ||
<div class="row"> | ||
<table><tbody><tr> | ||
<td> </td> | ||
<td><pre class="example"> | ||
|
||
## Create a simple ConfusionMatrixChart Object | ||
|
||
cm = ConfusionMatrixChart (gca, [1 2; 1 2], {"A","B"},{"XLabel","LABEL A"}) | ||
NormalizedValues = cm.NormalizedValues | ||
ClassLabels = cm.ClassLabels | ||
|
||
cm = | ||
|
||
ConfusionMatrixChart with properties: | ||
|
||
NormalizedValues: [ 2x2 double ] | ||
ClassLabels: { 1x2 cell } | ||
|
||
|
||
NormalizedValues = | ||
|
||
1 2 | ||
1 2 | ||
|
||
ClassLabels = | ||
{ | ||
[1,1] = A | ||
[1,2] = B | ||
} | ||
|
||
</pre></td></tr></tbody> | ||
</table> | ||
<div class="text-center"> | ||
<img src="assets/ConfusionMatrixChart_101.png" class="rounded img-thumbnail" alt="plotted figure"> | ||
</div><p></p> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.