Skip to content

Commit 0dd0d15

Browse files
committed
Documentation: fix broken links
1 parent a95a5a2 commit 0dd0d15

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

Orange/widgets/evaluate/owtestlearners.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class State(enum.Enum):
125125

126126

127127
class OWTestLearners(OWWidget):
128-
name = "Test & Score"
128+
name = "Test and Score"
129129
description = "Cross-validation accuracy estimation."
130130
icon = "icons/TestLearners1.svg"
131131
priority = 100

doc/visual-programming/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Data
4848
widgets/data/mergedata
4949
widgets/data/outliers
5050
widgets/data/preprocess
51-
widgets/data/transform
51+
widgets/data/applydomain
5252
widgets/data/purgedomain
5353
widgets/data/rank
5454
widgets/data/correlations
@@ -120,7 +120,7 @@ Unsupervised
120120
widgets/unsupervised/distancefile
121121
widgets/unsupervised/savedistancematrix
122122
widgets/unsupervised/hierarchicalclustering
123-
widgets/unsupervised/kmeansclustering
123+
widgets/unsupervised/kmeans
124124
widgets/unsupervised/louvainclustering
125125
widgets/unsupervised/mds
126126
widgets/unsupervised/tsne

doc/visual-programming/source/widgets/data/transform.md renamed to doc/visual-programming/source/widgets/data/applydomain.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Transform
2-
=========
1+
Apply Domain
2+
============
33

44
Given dataset and preprocessor transforms the dataset.
55

@@ -12,9 +12,9 @@ Given dataset and preprocessor transforms the dataset.
1212

1313
- Transformed Data: transformed dataset
1414

15-
**Transform** maps new data into a transformed space. For example, if we transform some data with PCA and wish to observe new data in the same space, we can use transform to map the new data into the PCA space created from the original data.
15+
**Apply Domain** maps new data into a transformed space. For example, if we transform some data with PCA and wish to observe new data in the same space, we can use transform to map the new data into the PCA space created from the original data.
1616

17-
![](images/Transform.png)
17+
![](images/ApplyDomain.png)
1818

1919
Widget accepts new data on the input and a preprocessor that was used to transform the old data.
2020

@@ -23,10 +23,10 @@ Example
2323

2424
We will use iris data from the [File](../data/file.md) widget for this example. To create two separate data sets, we will use [Select Rows](../data/selectrows.md) and set the condition to *iris is one of iris-setosa, iris-versicolor*. This will output a data set with a 100 rows, half of them belonging to iris-setosa class and the other half to iris-versicolor.
2525

26-
We will transform the data with [PCA](../unsupervised/PCA.md) and select the first two components, which explain 96% of variance. Now, we would like to apply the same preprocessing on the 'new' data, that is the remaining 50 iris virginicas. Send the unused data from **Select Rows** to **Transform**. Make sure to use the *Unmatched Data* output from **Select Rows** widget. Then add the *Preprocessor* output from **PCA**.
26+
We will transform the data with [PCA](../unsupervised/PCA.md) and select the first two components, which explain 96% of variance. Now, we would like to apply the same preprocessing on the 'new' data, that is the remaining 50 iris virginicas. Send the unused data from **Select Rows** to **Apply Domain**. Make sure to use the *Unmatched Data* output from **Select Rows** widget. Then add the *Preprocessor* output from **PCA**.
2727

28-
**Transform** will apply the preprocessor to the new data and output it. To add the new data to the old data, use [Concatenate](../data/concatenate.md). Use *Transformed Data* output from **PCA** as *Primary Data* and *Transformed Data* from **Transform** as *Additional Data*.
28+
**Apply Domain** will apply the preprocessor to the new data and output it. To add the new data to the old data, use [Concatenate](../data/concatenate.md). Use *Transformed Data* output from **PCA** as *Primary Data* and *Transformed Data* from **Apply Domain** as *Additional Data*.
2929

3030
Observe the results in a [Data Table](../data/datatable.md) or in a [Scatter Plot](../visualize/scatterplot.md) to see the new data in relation to the old one.
3131

32-
![](images/Transform-Example.png)
32+
![](images/ApplyDomain-Example.png)

doc/visual-programming/source/widgets/data/images/Transform-Example.png renamed to doc/visual-programming/source/widgets/data/images/ApplyDomain-Example.png

File renamed without changes.

doc/visual-programming/source/widgets/data/images/Transform.png renamed to doc/visual-programming/source/widgets/data/images/ApplyDomain.png

File renamed without changes.

doc/visual-programming/source/widgets/data/paintdata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ The widget supports the creation of a new dataset by visually placing data point
2121
Example
2222
-------
2323

24-
In the example below, we have painted a dataset with 4 classes. Such dataset is great for demonstrating k-means and hierarchical clustering methods. In the screenshot, we see that [k-Means](../unsupervised/kmeansclustering.md), overall, recognizes clusters better than [Hierarchical Clustering](../unsupervised/hierarchicalclustering.md). It returns a score rank, where the best score (the one with the highest value) means the most likely number of clusters. Hierarchical clustering, however, doesn’t group the right classes together. This is a great tool for learning and exploring statistical concepts.
24+
In the example below, we have painted a dataset with 4 classes. Such dataset is great for demonstrating k-means and hierarchical clustering methods. In the screenshot, we see that [k-Means](../unsupervised/kmeans.md), overall, recognizes clusters better than [Hierarchical Clustering](../unsupervised/hierarchicalclustering.md). It returns a score rank, where the best score (the one with the highest value) means the most likely number of clusters. Hierarchical clustering, however, doesn’t group the right classes together. This is a great tool for learning and exploring statistical concepts.
2525

2626
![](images/PaintData-Example.png)

doc/visual-programming/source/widgets/evaluation/confusionmatrix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Predictions
2-
===========
1+
Confusion Matrix
2+
================
33

44
Shows proportions between the predicted and actual class.
55

doc/visual-programming/source/widgets/unsupervised/kmeansclustering.md renamed to doc/visual-programming/source/widgets/unsupervised/kmeans.md

File renamed without changes.

0 commit comments

Comments
 (0)