I'm working with 100k Movie Lens dataset, I need to print the entire Table of u.data
with NaN values and once again with predicted values. Pandas or Recsys are suitable, others too are welcomed though.
data = pd.read_csv('ml-100k/u.data', sep='\t')
print data
The above code doesn't provide the needful output, since it prints only first and last 30 records. Moreover, I need it foll. format
UserID <MovieID>1 <MovieID>2 <MovieID>3
1 <Rating>5 NaN 3
2 NaN 2 1
I've already been through