Skip to content

Instantly share code, notes, and snippets.

@rustyrazorblade
Created March 8, 2016 22:33
Show Gist options
  • Save rustyrazorblade/60e8b625973ee802b2d4 to your computer and use it in GitHub Desktop.
Save rustyrazorblade/60e8b625973ee802b2d4 to your computer and use it in GitHub Desktop.
1|Toy Story (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0
2|GoldenEye (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?GoldenEye%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0
3|Four Rooms (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Four%20Rooms%20(1995)|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0
4|Get Shorty (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)|0|1|0|0|0|1|0|0|1|0|0|0|0|0|0|0|0|0|0
5|Copycat (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Copycat%20(1995)|0|0|0|0|0|0|1|0|1|0|0|0|0|0|0|0|1|0|0
6|Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)|01-Jan-1995||http://us.imdb.com/Title?Yao+a+yao+yao+dao+waipo+qiao+(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0
7|Twelve Monkeys (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|1|0|0|0
8|Babe (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Babe%20(1995)|0|0|0|0|1|1|0|0|1|0|0|0|0|0|0|0|0|0|0
9|Dead Man Walking (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|0
10|Richard III (1995)|22-Jan-1996||http://us.imdb.com/M/title-exact?Richard%20III%20(1995)|0|0|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|1|0
11|Seven (Se7en) (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Se7en%20(1995)|0|0|0|0|0|0|1|0|0|0|0|0|0|0|0|0|1|0|0
@rustyrazorblade
Copy link
Author

ipdb> movies.shape
(1682, 23)

@rustyrazorblade
Copy link
Author

ipdb> movies.head()
                 name release_date  video_release_date  \
id
1    Toy Story (1995)  01-Jan-1995                   0
2    GoldenEye (1995)  01-Jan-1995                   0
3   Four Rooms (1995)  01-Jan-1995                   0
4   Get Shorty (1995)  01-Jan-1995                   0
5      Copycat (1995)  01-Jan-1995                   0

                                                  url  unknown  Action  \
id
1   http://us.imdb.com/M/title-exact?Toy%20Story%2...        0       0
2   http://us.imdb.com/M/title-exact?GoldenEye%20(...        0       1
3   http://us.imdb.com/M/title-exact?Four%20Rooms%...        0       0
4   http://us.imdb.com/M/title-exact?Get%20Shorty%...        0       1
5   http://us.imdb.com/M/title-exact?Copycat%20(1995)        0       0

    Adventure  Animation  Children's  Comedy   ...     Fantasy  Film-Noir  \
id                                             ...
1           0          1           1       1   ...           0          0
2           1          0           0       0   ...           0          0
3           0          0           0       0   ...           0          0
4           0          0           0       1   ...           0          0
5           0          0           0       0   ...           0          0

    Horror  Musical  Mystery  Romance  Sci-Fi  Thriller  War  Western
id
1        0        0        0        0       0         0    0        0
2        0        0        0        0       0         1    0        0
3        0        0        0        0       0         1    0        0
4        0        0        0        0       0         0    0        0
5        0        0        0        0       0         1    0        0

[5 rows x 23 columns]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment