Viewing the MovieLens Data
Familiarize yourself with the ratings
dataset provided here. Would you consider the data to be implicit or explicit ratings?
Diese Übung ist Teil des Kurses
Building Recommendation Engines with PySpark
Anleitung zur Übung
- Look at the
.columns
of theratings
dataframe. - Look at the first few rows of
ratings
dataframe using the.show()
method.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Look at the column names
print(ratings.____)
# Look at the first few rows of data
print(ratings.____())