You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
This is a basic example of data mining on a dataset of nominal data. For this we will need the package arules, and we'll load a database with several variables for adults.
```{r,echo=T,warning=F,cache=F}
require(arules)
data("Groceries")
inspect(head(Groceries, 1))
```
We can take a look at how items are similar to each other and plot that in a hierarchical cluster fashion:
```{r,echo=T,warning=F}
d_jaccard <- dissimilarity(Groceries[,itemFrequency(Groceries)>0.05], which = "items")