Calculates similarity among the given category items.
Each row of should represent one observation of any of category items. It should have following columns.
Category - A column with the category data that you want compare. Number data or logical data is treated as categorical data.
Measured By - A column that you want to group by the measure value you select at "Measure". Number data or logical data is treated as categorical data.
Measure - A numeric data column that you want to use to compare categories.
Number of Clusters - A number of clusters to group categories. It is used in "Similarity Map" view.
For example, suppose you have a product sales revenue data by countries and product types, and if you want to companre the similarity among the countries based on the revenue data by product types, you can assign columns like following.
country column to "Category"
product type column to "Measured By"
revenue column to "Measure".
This one gives you which countries have the simliar sales patterns/trends.
Method - Type of how to calculate distance. The default is "Euclidean".
Euclidean - The most common measurement of distance. sqrt(sum((x - y)^2))
Maximum - Maximum difference between elements of two vectors.
Manhattan - Sum of difference in each elements of two vectors.
Canberra - Manhattan distance weighted by the elements. sum(|x_i - y_i| / |x_i + y_i|)
Binary - non-zero elements are regarded as 1 and zero elements are regarded as 0. The distance is the number of elements only one is 1 divided by numbers of them at least one is 1.
Minkowski - This is generalized case of euclidean and manhattan. If p=2, it becomes euclidean and if p=1, it becomes manhattan. sum((x - y)^p)^(1/p)
Show Only Lower Triangle - Show only lower triangle of the matrix, avoiding showing distances for same pairs twice.
Show Diagonal Values - Show values on diagonal of the matrix, which should always have distance of 0.
Normalize Measures - Whether to normalize measures before calculating distances.
Number of Clusters - Number of clusters (by K-Means algorithm) used when clustring columns to display them on Similarity Map view.
Click Analytics View tab.
If necessary, click "+" button on the left of existing Analytics tabs, to create a new Analytics.
Select "Similarity" for Analytics Type.
Select Category column with "Category" column selector.
Select Measured By column with "Measured By" column selector.
Select Measure column with "Measure" column selector.
(Optional) Type in the number of clusters.
Click Run button to run the analytics.
Select view type (explained below) by clicking view type link to see each type of generated visualization.
It displays all the similarity combinations between categories by the heatmap. Lower values (closer to red color) are more similar. This example is with Color By. ​
It displays how categories are similar by plotting the categories on the 2-dimensional scatter view based on the similarity data. ​
It displays raw data of the similarities among countries used for "Similarty Matrix". ​
Following is the list of columns in the "Similar Pairs" view.
[category column name].x Category items for category pairs.
[category column name].y Category items for category pairs.
Distance - Distance between those 2 categories. The smaller, the similar.
The Similarity
uses dist
function from stats
R Package under the hood.
For details about stats
usage in Exploratory R Package, please refer to the github repository​