Хорошо, используя небольшой набор данных из https://grouplens.org/datasets/movielens/, который имеет размерность 9125x3
Загрузите данные (вам может понадобиться настроить mode
в download.file
, если вы используете Windows)
pth <- "http://files.grouplens.org/datasets/movielens/ml-latest-small.zip"
download.file(pth, destfile=temp<-tempfile())
#unzip(temp, list=TRUE) # see what files?
unzip(temp, exdir=td<-tempdir())
# read movies dataset
movies <- read.csv(file.path(td, "ml-latest-small/movies.csv"),
header=TRUE, stringsAsFactors = FALSE)
Загрузка некоторых библиотек
library(tm) # to form the binary matrix: best to keep things sparse
library(slam) # for the crossproduct of the simple_triplet_matrix returned by tm::DocumentTermMatrix
library(igraph)
Сформировать двоичную матрицу для фильмов по жанрам (пришлось использовать MrFlick предложение VCorpus в противном случае "(без жанров в списке)"и "фильм-нуар" были разделены на отдельные слова
# split the genres string and create binary matrix for presence of genre
corp <- VCorpus(VectorSource(movies$genres))
dtm <- DocumentTermMatrix(corp,
control = list(tokenize = function(x)
unlist(strsplit(as.character(x), "\\|"))))
Создать матрицу смежности
# this looks for agreement across the genres
# you could use tcrossprod for similarities on the films
adj <- crossprod_simple_triplet_matrix(dtm)
Создать график
g <- graph_from_adjacency_matrix(adj, mode="undirected", weighted=TRUE)