outlier_hierarchy | R Documentation |
This function detects the outlying elements of a HierarchicalSet object and creates a new clustering of the sets only based on these elements. The returned HierarchicalSet object will only contain the outlying elements, thus reducing the universe size. This operation is somewhat similar to principal component analysis, in that the derived clustering is based on the structure not captured by the first clustering, thus modeling the second most dominant feature of the data.
outlier_hierarchy(set, intersectLimit = 1)
set |
A HierarchicalSet object |
intersectLimit |
The proportion of sets an element must be present in to be considered part of the intersect. Standard intersects require it to be present in all sets (intersectLimit = 1), which is also the default |
An object of class HierarchicalSet, based on the outliying elements
of set
outlying_elements()
for extracting outlying element
information from a HierarchicalSet object
data('twitter')
twitSet <- create_hierarchy(twitter)
twitSetOut <- outlier_hierarchy(twitSet)
twitSetOut
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.