April 2020
Intermediate to advanced
330 pages
7h 44m
English
Before we build a model, we need to first explore the input data to understand what is available for user-item recommendations. In this section, we will prepare, process, and explore the data, which includes users, items (games), and interactions (hours of gameplay), using the following steps:
library(keras)library(tidyverse)library(knitr)
steamdata <- read_csv("data/steam-200k.csv", col_names=FALSE)
glimpse(steamdata)
This results in the following output:
colnames(steamdata) ...
Read now
Unlock full access