diff --git a/Group 3/.ipynb_checkpoints/Solutions - Tutorial & Active Learning Notebook -checkpoint.ipynb b/Group 3/.ipynb_checkpoints/Solutions - Tutorial & Active Learning Notebook -checkpoint.ipynb new file mode 100644 index 0000000..0debde9 --- /dev/null +++ b/Group 3/.ipynb_checkpoints/Solutions - Tutorial & Active Learning Notebook -checkpoint.ipynb @@ -0,0 +1,3902 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "293c97c7", + "metadata": {}, + "source": [ + "# Solutions to Tutorial & Active Learning Notebook with the dataset\n", + "## \"Film Noir: They Shot Dark Pictures, Didn't They?\" (https://www.kaggle.com/datasets/kabhishm/film-noir-they-shot-dark-pictures-didnt-they)\n", + "\n", + "\n", + "These solutions are meant to accompany the Tutorial Active Learning Notebook with the dataset\n", + "\"Film Noir: They Shot Dark Pictures, Didn't They?\" (https://www.kaggle.com/datasets/kabhishm/film-noir-they-shot-dark-pictures-didnt-they)" + ] + }, + { + "cell_type": "markdown", + "id": "33c03398", + "metadata": {}, + "source": [ + "### The following was part of the tutorial, which will be repeated here for the purpose of consistency" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "be7d63fd", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "3f37f7ce", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1353 | \n", + "Who'll Stop the Rain | \n", + "Action, Crime, Drama | \n", + "1978 | \n", + "126 min | \n", + "6.7 | \n", + "A Vietnam veteran gets conned into helping an ... | \n", + "3003 | \n", + "NaN | \n", + "NaN | \n", + "
| 1354 | \n", + "The Wings of the Dove | \n", + "Drama, Romance | \n", + "1997 | \n", + "102 min | \n", + "7.1 | \n", + "An impoverished woman who has been forced to c... | \n", + "12580 | \n", + "NaN | \n", + "NaN | \n", + "
| 1355 | \n", + "Witness | \n", + "Drama, Romance, Thriller | \n", + "1985 | \n", + "112 min | \n", + "7.4 | \n", + "When a young Amish boy is sole witness to a mu... | \n", + "97031 | \n", + "NaN | \n", + "NaN | \n", + "
| 1356 | \n", + "The Zodiac | \n", + "Crime, Drama, Horror | \n", + "2005 | \n", + "158 min | \n", + "5.3 | \n", + "An elusive serial killer known as the Zodiac t... | \n", + "7333 | \n", + "NaN | \n", + "NaN | \n", + "
| 1357 | \n", + "Zodiac | \n", + "Crime, Drama, Mystery | \n", + "2007 | \n", + "157 min | \n", + "7.7 | \n", + "Between 1968 and 1983, a San Francisco cartoon... | \n", + "546602 | \n", + "NaN | \n", + "NaN | \n", + "
1358 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1246 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| 5 | \n", + "They Drive by Night | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.2 | \n", + "When one of two truck-driving brothers loses a... | \n", + "8,201 | \n", + "Raoul Walsh | \n", + "George Raft | \n", + "
| 6 | \n", + "Among the Living | \n", + "Drama, Film-Noir, Mystery | \n", + "1941 | \n", + "67 min | \n", + "6.4 | \n", + "A mentally-unstable man who has been kept in i... | \n", + "716 | \n", + "Stuart Heisler | \n", + "Albert Dekker | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1199 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 46 | \n", + "The Curse of the Cat People | \n", + "Drama, Horror, Mystery | \n", + "1944 | \n", + "70 min | \n", + "6.7 | \n", + "The young, friendless daughter of Oliver and A... | \n", + "30,005 | \n", + "George Cukor | \n", + "Charles Boyer | \n", + "
| 49 | \n", + "Double Indemnity | \n", + "Crime, Drama, Film-Noir | \n", + "1944 | \n", + "107 min | \n", + "8.3 | \n", + "A Los Angeles insurance representative lets an... | \n", + "3,655 | \n", + "John Brahm | \n", + "Laird Cregar | \n", + "
| 1217 | \n", + "Charley Varrick | \n", + "Crime, Drama, Thriller | \n", + "1973 | \n", + "111 min | \n", + "7.5 | \n", + "A man, his wife and their friend stage a blood... | \n", + "18,602 | \n", + "Roger Donaldson | \n", + "Alec Baldwin | \n", + "
| 973 | \n", + "The Long Wait | \n", + "Adventure, Crime, Drama | \n", + "1954 | \n", + "94 min | \n", + "6.5 | \n", + "An amnesiac finally learns his true identity..... | \n", + "1,696 | \n", + "Hugo Fregonese | \n", + "Jack Palance | \n", + "
| 665 | \n", + "The Steel Jungle | \n", + "Crime, Drama, Film-Noir | \n", + "1956 | \n", + "86 min | \n", + "5.7 | \n", + "A power struggle emerges among convicts condem... | \n", + "4,862 | \n", + "Robert Wise | \n", + "Harry Belafonte | \n", + "
| 1206 | \n", + "The Black Dahlia | \n", + "Crime, Drama, Mystery | \n", + "2006 | \n", + "121 min | \n", + "5.6 | \n", + "Two policemen see their personal and professio... | \n", + "8,574 | \n", + "Dick Richards | \n", + "Robert Mitchum | \n", + "
| 54 | \n", + "Laura | \n", + "Drama, Film-Noir, Mystery | \n", + "1944 | \n", + "88 min | \n", + "7.9 | \n", + "A police detective falls in love with the woma... | \n", + "5,136 | \n", + "Robert Siodmak | \n", + "Franchot Tone | \n", + "
| 894 | \n", + "He Ran All the Way | \n", + "Crime, Drama, Film-Noir | \n", + "1951 | \n", + "77 min | \n", + "7.0 | \n", + "Nick and his partner Al stage a payroll holdup... | \n", + "748 | \n", + "Nathan Juran | \n", + "Richard Conte | \n", + "
| 645 | \n", + "Death of a Scoundrel | \n", + "Crime, Drama, Film-Noir | \n", + "1956 | \n", + "119 min | \n", + "6.9 | \n", + "The New York police investigates the murder of... | \n", + "159 | \n", + "Joseph Kane | \n", + "Rod Cameron | \n", + "
| 31 | \n", + "Moontide | \n", + "Crime, Drama, Film-Noir | \n", + "1942 | \n", + "94 min | \n", + "6.8 | \n", + "In California, Bobo and his mooching 'pal' Tin... | \n", + "545 | \n", + "Jack Hively | \n", + "Burgess Meredith | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| count | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199.000000 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "
| unique | \n", + "846 | \n", + "107 | \n", + "68 | \n", + "84 | \n", + "NaN | \n", + "860 | \n", + "793 | \n", + "394 | \n", + "446 | \n", + "
| top | \n", + "Fear | \n", + "Crime, Drama, Film-Noir | \n", + "1947 | \n", + "82 min | \n", + "NaN | \n", + "Jim Fletcher, waking up from a coma, finds he ... | \n", + "296 | \n", + "Anthony Mann | \n", + "Humphrey Bogart | \n", + "
| freq | \n", + "3 | \n", + "549 | \n", + "123 | \n", + "43 | \n", + "NaN | \n", + "2 | \n", + "4 | \n", + "27 | \n", + "27 | \n", + "
| mean | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.728023 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| std | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.634760 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| min | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "3.600000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 25% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.300000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 50% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.700000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 75% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "7.200000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| max | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "8.800000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| \n", + " | Genre | \n", + "Count | \n", + "
|---|---|---|
| 36 | \n", + "Crime, Drama, Film-Noir | \n", + "549 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "
| 62 | \n", + "Drama, Film-Noir | \n", + "38 | \n", + "
| 67 | \n", + "Drama, Film-Noir, Thriller | \n", + "37 | \n", + "
| 40 | \n", + "Crime, Drama, Mystery | \n", + "36 | \n", + "
| 42 | \n", + "Crime, Drama, Thriller | \n", + "36 | \n", + "
| 64 | \n", + "Drama, Film-Noir, Mystery | \n", + "35 | \n", + "
| 45 | \n", + "Crime, Film-Noir, Mystery | \n", + "32 | \n", + "
| 34 | \n", + "Crime, Drama | \n", + "28 | \n", + "
| 48 | \n", + "Crime, Film-Noir, Thriller | \n", + "27 | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "index | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13469.0 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "102364.4 | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138097.0 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "1118585.7 | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4268.0 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "29022.4 | \n", + "
| 5 | \n", + "They Drive by Night | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.2 | \n", + "When one of two truck-driving brothers loses a... | \n", + "8201.0 | \n", + "Raoul Walsh | \n", + "George Raft | \n", + "59047.2 | \n", + "
| 6 | \n", + "Among the Living | \n", + "Drama, Film-Noir, Mystery | \n", + "1941 | \n", + "67 min | \n", + "6.4 | \n", + "A mentally-unstable man who has been kept in i... | \n", + "716.0 | \n", + "Stuart Heisler | \n", + "Albert Dekker | \n", + "4582.4 | \n", + "
| \n", + " | Genre | \n", + "Score | \n", + "
|---|---|---|
| 0 | \n", + "Action, Adventure, Comedy | \n", + "20358.4 | \n", + "
| 1 | \n", + "Action, Adventure, Crime | \n", + "10211307.9 | \n", + "
| 2 | \n", + "Action, Adventure, Drama | \n", + "67133.0 | \n", + "
| 3 | \n", + "Action, Comedy, Crime | \n", + "1253.7 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "21943607.2 | \n", + "
| 5 | \n", + "Action, Crime, Film-Noir | \n", + "66562.9 | \n", + "
| 6 | \n", + "Action, Crime, Thriller | \n", + "928085.3 | \n", + "
| 7 | \n", + "Action, Drama, Film-Noir | \n", + "86388.4 | \n", + "
| 8 | \n", + "Action, Drama, Romance | \n", + "202316.9 | \n", + "
| 9 | \n", + "Action, Drama, Sci-Fi | \n", + "30893.4 | \n", + "
| \n", + " | Genre | \n", + "Count | \n", + "
|---|---|---|
| 36 | \n", + "Crime, Drama, Film-Noir | \n", + "549 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "
| 62 | \n", + "Drama, Film-Noir | \n", + "38 | \n", + "
| 67 | \n", + "Drama, Film-Noir, Thriller | \n", + "37 | \n", + "
| 40 | \n", + "Crime, Drama, Mystery | \n", + "36 | \n", + "
| 42 | \n", + "Crime, Drama, Thriller | \n", + "36 | \n", + "
| 64 | \n", + "Drama, Film-Noir, Mystery | \n", + "35 | \n", + "
| 45 | \n", + "Crime, Film-Noir, Mystery | \n", + "32 | \n", + "
| 34 | \n", + "Crime, Drama | \n", + "28 | \n", + "
| 48 | \n", + "Crime, Film-Noir, Thriller | \n", + "27 | \n", + "
| \n", + " | Genre | \n", + "Count | \n", + "Score | \n", + "Popularity_Index | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Action, Adventure, Comedy | \n", + "1 | \n", + "20358.4 | \n", + "20358.40 | \n", + "
| 1 | \n", + "Action, Adventure, Crime | \n", + "9 | \n", + "10211307.9 | \n", + "1134589.77 | \n", + "
| 2 | \n", + "Action, Adventure, Drama | \n", + "4 | \n", + "67133.0 | \n", + "16783.25 | \n", + "
| 3 | \n", + "Action, Comedy, Crime | \n", + "1 | \n", + "1253.7 | \n", + "1253.70 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "21943607.2 | \n", + "577463.35 | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 102 | \n", + "Mystery, Romance, Thriller | \n", + "1 | \n", + "49102.8 | \n", + "49102.80 | \n", + "
| 103 | \n", + "Mystery, Thriller | \n", + "9 | \n", + "649929.3 | \n", + "72214.37 | \n", + "
| 104 | \n", + "Romance, Thriller | \n", + "1 | \n", + "99097.8 | \n", + "99097.80 | \n", + "
| 105 | \n", + "Romance, Western | \n", + "6 | \n", + "286896.9 | \n", + "47816.15 | \n", + "
| 106 | \n", + "Western | \n", + "9 | \n", + "62988.3 | \n", + "6998.70 | \n", + "
107 rows × 4 columns
\n", + "| \n", + " | Genre | \n", + "Count | \n", + "Score | \n", + "Popularity_Index | \n", + "
|---|---|---|---|---|
| 52 | \n", + "Crime, Mystery, Romance | \n", + "1 | \n", + "8427737.0 | \n", + "8427737.00 | \n", + "
| 82 | \n", + "Drama, Sci-Fi, Thriller | \n", + "1 | \n", + "4552758.6 | \n", + "4552758.60 | \n", + "
| 88 | \n", + "Fantasy, Mystery, Sci-Fi | \n", + "1 | \n", + "1828742.4 | \n", + "1828742.40 | \n", + "
| 55 | \n", + "Crime, Thriller | \n", + "4 | \n", + "5072501.4 | \n", + "1268125.35 | \n", + "
| 1 | \n", + "Action, Adventure, Crime | \n", + "9 | \n", + "10211307.9 | \n", + "1134589.77 | \n", + "
| 42 | \n", + "Crime, Drama, Thriller | \n", + "36 | \n", + "30435650.0 | \n", + "845434.72 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "21943607.2 | \n", + "577463.35 | \n", + "
| 49 | \n", + "Crime, Horror, Mystery | \n", + "2 | \n", + "1150192.9 | \n", + "575096.45 | \n", + "
| 50 | \n", + "Crime, Horror, Thriller | \n", + "2 | \n", + "963051.1 | \n", + "481525.55 | \n", + "
| 40 | \n", + "Crime, Drama, Mystery | \n", + "36 | \n", + "16859983.7 | \n", + "468332.88 | \n", + "
| 41 | \n", + "Crime, Drama, Romance | \n", + "14 | \n", + "5922509.5 | \n", + "423036.39 | \n", + "
| 34 | \n", + "Crime, Drama | \n", + "28 | \n", + "8400263.8 | \n", + "300009.42 | \n", + "
| 56 | \n", + "Drama | \n", + "14 | \n", + "3745969.2 | \n", + "267569.23 | \n", + "
| 90 | \n", + "Film-Noir, Horror, Thriller | \n", + "2 | \n", + "469127.6 | \n", + "234563.80 | \n", + "
| 67 | \n", + "Drama, Film-Noir, Thriller | \n", + "37 | \n", + "8005838.7 | \n", + "216374.02 | \n", + "
| 97 | \n", + "Horror, Mystery | \n", + "1 | \n", + "213011.5 | \n", + "213011.50 | \n", + "
| 8 | \n", + "Action, Drama, Romance | \n", + "1 | \n", + "202316.9 | \n", + "202316.90 | \n", + "
| 6 | \n", + "Action, Crime, Thriller | \n", + "5 | \n", + "928085.3 | \n", + "185617.06 | \n", + "
| 35 | \n", + "Crime, Drama, Fantasy | \n", + "5 | \n", + "835020.9 | \n", + "167004.18 | \n", + "
| 95 | \n", + "Film-Noir, Thriller | \n", + "10 | \n", + "1616739.0 | \n", + "161673.90 | \n", + "
| \n", + " | Director | \n", + "
|---|---|
| Anthony Mann | \n", + "27 | \n", + "
| Fritz Lang | \n", + "25 | \n", + "
| Robert Siodmak | \n", + "20 | \n", + "
| Alfred Hitchcock | \n", + "19 | \n", + "
| Don Siegel | \n", + "18 | \n", + "
| Robert Wise | \n", + "16 | \n", + "
| Joseph H. Lewis | \n", + "15 | \n", + "
| Phil Karlson | \n", + "14 | \n", + "
| Otto Preminger | \n", + "14 | \n", + "
| Henry Hathaway | \n", + "13 | \n", + "
| \n", + " | Rating | \n", + "Votes | \n", + "index | \n", + "
|---|---|---|---|
| Director | \n", + "\n", + " | \n", + " | \n", + " |
| Anthony Mann | \n", + "180.0 | \n", + "116606.0 | \n", + "754324.9 | \n", + "
| Fritz Lang | \n", + "165.2 | \n", + "225367.0 | \n", + "1517324.7 | \n", + "
| Robert Siodmak | \n", + "135.4 | \n", + "121965.0 | \n", + "846361.2 | \n", + "
| Alfred Hitchcock | \n", + "130.8 | \n", + "2331819.0 | \n", + "15703724.4 | \n", + "
| Don Siegel | \n", + "124.9 | \n", + "158977.0 | \n", + "1095342.1 | \n", + "
| Robert Wise | \n", + "105.4 | \n", + "153326.0 | \n", + "1087370.6 | \n", + "
| Joseph H. Lewis | \n", + "100.7 | \n", + "53984.0 | \n", + "354194.5 | \n", + "
| Phil Karlson | \n", + "93.7 | \n", + "40347.0 | \n", + "272411.8 | \n", + "
| Otto Preminger | \n", + "93.1 | \n", + "166436.0 | \n", + "1115311.7 | \n", + "
| Henry Hathaway | \n", + "89.5 | \n", + "96051.0 | \n", + "678194.5 | \n", + "
| \n", + " | Rating | \n", + "Votes | \n", + "index | \n", + "
|---|---|---|---|
| Stars | \n", + "\n", + " | \n", + " | \n", + " |
| Humphrey Bogart | \n", + "181.9 | \n", + "1502272.0 | \n", + "10366051.2 | \n", + "
| Edward G. Robinson | \n", + "125.7 | \n", + "97388.0 | \n", + "645711.1 | \n", + "
| Robert Mitchum | \n", + "122.6 | \n", + "318835.0 | \n", + "2122339.3 | \n", + "
| Joan Crawford | \n", + "122.5 | \n", + "140740.0 | \n", + "1009009.9 | \n", + "
| Barbara Stanwyck | \n", + "119.3 | \n", + "86870.0 | \n", + "578627.4 | \n", + "
| Ida Lupino | \n", + "111.8 | \n", + "57265.0 | \n", + "418859.2 | \n", + "
| Glenn Ford | \n", + "93.0 | \n", + "83316.0 | \n", + "581342.6 | \n", + "
| George Raft | \n", + "91.3 | \n", + "20982.0 | \n", + "149333.0 | \n", + "
| Alan Ladd | \n", + "89.4 | \n", + "55487.0 | \n", + "385819.5 | \n", + "
| John Payne | \n", + "89.0 | \n", + "27650.0 | \n", + "192780.6 | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1353 | \n", + "Who'll Stop the Rain | \n", + "Action, Crime, Drama | \n", + "1978 | \n", + "126 min | \n", + "6.7 | \n", + "A Vietnam veteran gets conned into helping an ... | \n", + "3003 | \n", + "NaN | \n", + "NaN | \n", + "
| 1354 | \n", + "The Wings of the Dove | \n", + "Drama, Romance | \n", + "1997 | \n", + "102 min | \n", + "7.1 | \n", + "An impoverished woman who has been forced to c... | \n", + "12580 | \n", + "NaN | \n", + "NaN | \n", + "
| 1355 | \n", + "Witness | \n", + "Drama, Romance, Thriller | \n", + "1985 | \n", + "112 min | \n", + "7.4 | \n", + "When a young Amish boy is sole witness to a mu... | \n", + "97031 | \n", + "NaN | \n", + "NaN | \n", + "
| 1356 | \n", + "The Zodiac | \n", + "Crime, Drama, Horror | \n", + "2005 | \n", + "158 min | \n", + "5.3 | \n", + "An elusive serial killer known as the Zodiac t... | \n", + "7333 | \n", + "NaN | \n", + "NaN | \n", + "
| 1357 | \n", + "Zodiac | \n", + "Crime, Drama, Mystery | \n", + "2007 | \n", + "157 min | \n", + "7.7 | \n", + "Between 1968 and 1983, a San Francisco cartoon... | \n", + "546602 | \n", + "NaN | \n", + "NaN | \n", + "
1358 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1246 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| 5 | \n", + "They Drive by Night | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.2 | \n", + "When one of two truck-driving brothers loses a... | \n", + "8,201 | \n", + "Raoul Walsh | \n", + "George Raft | \n", + "
| 6 | \n", + "Among the Living | \n", + "Drama, Film-Noir, Mystery | \n", + "1941 | \n", + "67 min | \n", + "6.4 | \n", + "A mentally-unstable man who has been kept in i... | \n", + "716 | \n", + "Stuart Heisler | \n", + "Albert Dekker | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1199 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 347 | \n", + "Take One False Step | \n", + "Crime, Drama, Mystery | \n", + "1949 | \n", + "94 min | \n", + "6.4 | \n", + "During a conference-trip to L.A., an academic ... | \n", + "3,649 | \n", + "Fritz Lang | \n", + "Louis Hayward | \n", + "
| 783 | \n", + "Bluebeard | \n", + "Crime, Horror, Thriller | \n", + "1944 | \n", + "72 min | \n", + "5.9 | \n", + "In Paris, an artist hires portrait models, and... | \n", + "5,026 | \n", + "Robert Rossen | \n", + "John Garfield | \n", + "
| 134 | \n", + "Nobody Lives Forever | \n", + "Crime, Drama, Film-Noir | \n", + "1946 | \n", + "100 min | \n", + "7.0 | \n", + "Ex-GI Nick Blake gets involved in a scheme to ... | \n", + "597 | \n", + "Jules Dassin | \n", + "Lucille Ball | \n", + "
| 78 | \n", + "Detour | \n", + "Crime, Drama, Film-Noir | \n", + "1945 | \n", + "68 min | \n", + "7.3 | \n", + "Chance events trap hitchhiking nightclub piani... | \n", + "1,191 | \n", + "Edwin L. Marin | \n", + "George Raft | \n", + "
| 1273 | \n", + "Kill Me Again | \n", + "Action, Crime, Drama | \n", + "1989 | \n", + "94 min | \n", + "6.3 | \n", + "A young detective becomes involved with a beau... | \n", + "41,235 | \n", + "Roger Donaldson | \n", + "Kevin Costner | \n", + "
| 592 | \n", + "The Big Knife | \n", + "Crime, Drama, Film-Noir | \n", + "1955 | \n", + "111 min | \n", + "6.8 | \n", + "Hollywood actor Charles Castle is pressured by... | \n", + "1,120 | \n", + "Allan Dwan | \n", + "John Payne | \n", + "
| 855 | \n", + "Detour | \n", + "Crime, Drama, Film-Noir | \n", + "1945 | \n", + "68 min | \n", + "7.3 | \n", + "Chance events trap hitchhiking nightclub piani... | \n", + "3,576 | \n", + "George Cukor | \n", + "Ronald Colman | \n", + "
| 23 | \n", + "Crossroads | \n", + "Crime, Drama, Film-Noir | \n", + "1942 | \n", + "83 min | \n", + "6.7 | \n", + "An amnesiac French diplomat is blackmailed for... | \n", + "332 | \n", + "Robert Siodmak | \n", + "Nancy Kelly | \n", + "
| 271 | \n", + "Pitfall | \n", + "Crime, Film-Noir, Thriller | \n", + "1948 | \n", + "86 min | \n", + "7.1 | \n", + "Married insurance adjuster John Forbes falls f... | \n", + "693 | \n", + "Ted Tetzlaff | \n", + "George Raft | \n", + "
| 186 | \n", + "The Gangster | \n", + "Crime, Drama, Film-Noir | \n", + "1947 | \n", + "84 min | \n", + "6.5 | \n", + "Shubunka (Barry Sulivan) is a cynical gangster... | \n", + "5,586 | \n", + "Curtis Bernhardt | \n", + "Joan Crawford | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| count | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199.000000 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "
| unique | \n", + "846 | \n", + "107 | \n", + "68 | \n", + "84 | \n", + "NaN | \n", + "860 | \n", + "793 | \n", + "394 | \n", + "446 | \n", + "
| top | \n", + "Fear | \n", + "Crime, Drama, Film-Noir | \n", + "1947 | \n", + "82 min | \n", + "NaN | \n", + "Jim Fletcher, waking up from a coma, finds he ... | \n", + "296 | \n", + "Anthony Mann | \n", + "Humphrey Bogart | \n", + "
| freq | \n", + "3 | \n", + "549 | \n", + "123 | \n", + "43 | \n", + "NaN | \n", + "2 | \n", + "4 | \n", + "27 | \n", + "27 | \n", + "
| mean | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.728023 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| std | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.634760 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| min | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "3.600000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 25% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.300000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 50% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.700000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 75% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "7.200000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| max | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "8.800000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1353 | \n", + "Who'll Stop the Rain | \n", + "Action, Crime, Drama | \n", + "1978 | \n", + "126 min | \n", + "6.7 | \n", + "A Vietnam veteran gets conned into helping an ... | \n", + "3003 | \n", + "NaN | \n", + "NaN | \n", + "
| 1354 | \n", + "The Wings of the Dove | \n", + "Drama, Romance | \n", + "1997 | \n", + "102 min | \n", + "7.1 | \n", + "An impoverished woman who has been forced to c... | \n", + "12580 | \n", + "NaN | \n", + "NaN | \n", + "
| 1355 | \n", + "Witness | \n", + "Drama, Romance, Thriller | \n", + "1985 | \n", + "112 min | \n", + "7.4 | \n", + "When a young Amish boy is sole witness to a mu... | \n", + "97031 | \n", + "NaN | \n", + "NaN | \n", + "
| 1356 | \n", + "The Zodiac | \n", + "Crime, Drama, Horror | \n", + "2005 | \n", + "158 min | \n", + "5.3 | \n", + "An elusive serial killer known as the Zodiac t... | \n", + "7333 | \n", + "NaN | \n", + "NaN | \n", + "
| 1357 | \n", + "Zodiac | \n", + "Crime, Drama, Mystery | \n", + "2007 | \n", + "157 min | \n", + "7.7 | \n", + "Between 1968 and 1983, a San Francisco cartoon... | \n", + "546602 | \n", + "NaN | \n", + "NaN | \n", + "
1358 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1246 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| 5 | \n", + "They Drive by Night | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.2 | \n", + "When one of two truck-driving brothers loses a... | \n", + "8,201 | \n", + "Raoul Walsh | \n", + "George Raft | \n", + "
| 6 | \n", + "Among the Living | \n", + "Drama, Film-Noir, Mystery | \n", + "1941 | \n", + "67 min | \n", + "6.4 | \n", + "A mentally-unstable man who has been kept in i... | \n", + "716 | \n", + "Stuart Heisler | \n", + "Albert Dekker | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1199 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 46 | \n", + "The Curse of the Cat People | \n", + "Drama, Horror, Mystery | \n", + "1944 | \n", + "70 min | \n", + "6.7 | \n", + "The young, friendless daughter of Oliver and A... | \n", + "30,005 | \n", + "George Cukor | \n", + "Charles Boyer | \n", + "
| 49 | \n", + "Double Indemnity | \n", + "Crime, Drama, Film-Noir | \n", + "1944 | \n", + "107 min | \n", + "8.3 | \n", + "A Los Angeles insurance representative lets an... | \n", + "3,655 | \n", + "John Brahm | \n", + "Laird Cregar | \n", + "
| 1217 | \n", + "Charley Varrick | \n", + "Crime, Drama, Thriller | \n", + "1973 | \n", + "111 min | \n", + "7.5 | \n", + "A man, his wife and their friend stage a blood... | \n", + "18,602 | \n", + "Roger Donaldson | \n", + "Alec Baldwin | \n", + "
| 973 | \n", + "The Long Wait | \n", + "Adventure, Crime, Drama | \n", + "1954 | \n", + "94 min | \n", + "6.5 | \n", + "An amnesiac finally learns his true identity..... | \n", + "1,696 | \n", + "Hugo Fregonese | \n", + "Jack Palance | \n", + "
| 665 | \n", + "The Steel Jungle | \n", + "Crime, Drama, Film-Noir | \n", + "1956 | \n", + "86 min | \n", + "5.7 | \n", + "A power struggle emerges among convicts condem... | \n", + "4,862 | \n", + "Robert Wise | \n", + "Harry Belafonte | \n", + "
| 1206 | \n", + "The Black Dahlia | \n", + "Crime, Drama, Mystery | \n", + "2006 | \n", + "121 min | \n", + "5.6 | \n", + "Two policemen see their personal and professio... | \n", + "8,574 | \n", + "Dick Richards | \n", + "Robert Mitchum | \n", + "
| 54 | \n", + "Laura | \n", + "Drama, Film-Noir, Mystery | \n", + "1944 | \n", + "88 min | \n", + "7.9 | \n", + "A police detective falls in love with the woma... | \n", + "5,136 | \n", + "Robert Siodmak | \n", + "Franchot Tone | \n", + "
| 894 | \n", + "He Ran All the Way | \n", + "Crime, Drama, Film-Noir | \n", + "1951 | \n", + "77 min | \n", + "7.0 | \n", + "Nick and his partner Al stage a payroll holdup... | \n", + "748 | \n", + "Nathan Juran | \n", + "Richard Conte | \n", + "
| 645 | \n", + "Death of a Scoundrel | \n", + "Crime, Drama, Film-Noir | \n", + "1956 | \n", + "119 min | \n", + "6.9 | \n", + "The New York police investigates the murder of... | \n", + "159 | \n", + "Joseph Kane | \n", + "Rod Cameron | \n", + "
| 31 | \n", + "Moontide | \n", + "Crime, Drama, Film-Noir | \n", + "1942 | \n", + "94 min | \n", + "6.8 | \n", + "In California, Bobo and his mooching 'pal' Tin... | \n", + "545 | \n", + "Jack Hively | \n", + "Burgess Meredith | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| count | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199.000000 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "
| unique | \n", + "846 | \n", + "107 | \n", + "68 | \n", + "84 | \n", + "NaN | \n", + "860 | \n", + "793 | \n", + "394 | \n", + "446 | \n", + "
| top | \n", + "Fear | \n", + "Crime, Drama, Film-Noir | \n", + "1947 | \n", + "82 min | \n", + "NaN | \n", + "Jim Fletcher, waking up from a coma, finds he ... | \n", + "296 | \n", + "Anthony Mann | \n", + "Humphrey Bogart | \n", + "
| freq | \n", + "3 | \n", + "549 | \n", + "123 | \n", + "43 | \n", + "NaN | \n", + "2 | \n", + "4 | \n", + "27 | \n", + "27 | \n", + "
| mean | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.728023 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| std | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.634760 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| min | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "3.600000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 25% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.300000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 50% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.700000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 75% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "7.200000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| max | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "8.800000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| \n", + " | Genre | \n", + "Count | \n", + "
|---|---|---|
| 36 | \n", + "Crime, Drama, Film-Noir | \n", + "549 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "
| 62 | \n", + "Drama, Film-Noir | \n", + "38 | \n", + "
| 67 | \n", + "Drama, Film-Noir, Thriller | \n", + "37 | \n", + "
| 40 | \n", + "Crime, Drama, Mystery | \n", + "36 | \n", + "
| 42 | \n", + "Crime, Drama, Thriller | \n", + "36 | \n", + "
| 64 | \n", + "Drama, Film-Noir, Mystery | \n", + "35 | \n", + "
| 45 | \n", + "Crime, Film-Noir, Mystery | \n", + "32 | \n", + "
| 34 | \n", + "Crime, Drama | \n", + "28 | \n", + "
| 48 | \n", + "Crime, Film-Noir, Thriller | \n", + "27 | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "index | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13469.0 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "102364.4 | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138097.0 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "1118585.7 | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4268.0 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "29022.4 | \n", + "
| 5 | \n", + "They Drive by Night | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.2 | \n", + "When one of two truck-driving brothers loses a... | \n", + "8201.0 | \n", + "Raoul Walsh | \n", + "George Raft | \n", + "59047.2 | \n", + "
| 6 | \n", + "Among the Living | \n", + "Drama, Film-Noir, Mystery | \n", + "1941 | \n", + "67 min | \n", + "6.4 | \n", + "A mentally-unstable man who has been kept in i... | \n", + "716.0 | \n", + "Stuart Heisler | \n", + "Albert Dekker | \n", + "4582.4 | \n", + "
| \n", + " | Genre | \n", + "Score | \n", + "
|---|---|---|
| 0 | \n", + "Action, Adventure, Comedy | \n", + "20358.4 | \n", + "
| 1 | \n", + "Action, Adventure, Crime | \n", + "10211307.9 | \n", + "
| 2 | \n", + "Action, Adventure, Drama | \n", + "67133.0 | \n", + "
| 3 | \n", + "Action, Comedy, Crime | \n", + "1253.7 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "21943607.2 | \n", + "
| 5 | \n", + "Action, Crime, Film-Noir | \n", + "66562.9 | \n", + "
| 6 | \n", + "Action, Crime, Thriller | \n", + "928085.3 | \n", + "
| 7 | \n", + "Action, Drama, Film-Noir | \n", + "86388.4 | \n", + "
| 8 | \n", + "Action, Drama, Romance | \n", + "202316.9 | \n", + "
| 9 | \n", + "Action, Drama, Sci-Fi | \n", + "30893.4 | \n", + "
| \n", + " | Genre | \n", + "Count | \n", + "
|---|---|---|
| 36 | \n", + "Crime, Drama, Film-Noir | \n", + "549 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "
| 62 | \n", + "Drama, Film-Noir | \n", + "38 | \n", + "
| 67 | \n", + "Drama, Film-Noir, Thriller | \n", + "37 | \n", + "
| 40 | \n", + "Crime, Drama, Mystery | \n", + "36 | \n", + "
| 42 | \n", + "Crime, Drama, Thriller | \n", + "36 | \n", + "
| 64 | \n", + "Drama, Film-Noir, Mystery | \n", + "35 | \n", + "
| 45 | \n", + "Crime, Film-Noir, Mystery | \n", + "32 | \n", + "
| 34 | \n", + "Crime, Drama | \n", + "28 | \n", + "
| 48 | \n", + "Crime, Film-Noir, Thriller | \n", + "27 | \n", + "
| \n", + " | Genre | \n", + "Count | \n", + "Score | \n", + "Popularity_Index | \n", + "
|---|---|---|---|---|
| 0 | \n", + "Action, Adventure, Comedy | \n", + "1 | \n", + "20358.4 | \n", + "20358.40 | \n", + "
| 1 | \n", + "Action, Adventure, Crime | \n", + "9 | \n", + "10211307.9 | \n", + "1134589.77 | \n", + "
| 2 | \n", + "Action, Adventure, Drama | \n", + "4 | \n", + "67133.0 | \n", + "16783.25 | \n", + "
| 3 | \n", + "Action, Comedy, Crime | \n", + "1 | \n", + "1253.7 | \n", + "1253.70 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "21943607.2 | \n", + "577463.35 | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 102 | \n", + "Mystery, Romance, Thriller | \n", + "1 | \n", + "49102.8 | \n", + "49102.80 | \n", + "
| 103 | \n", + "Mystery, Thriller | \n", + "9 | \n", + "649929.3 | \n", + "72214.37 | \n", + "
| 104 | \n", + "Romance, Thriller | \n", + "1 | \n", + "99097.8 | \n", + "99097.80 | \n", + "
| 105 | \n", + "Romance, Western | \n", + "6 | \n", + "286896.9 | \n", + "47816.15 | \n", + "
| 106 | \n", + "Western | \n", + "9 | \n", + "62988.3 | \n", + "6998.70 | \n", + "
107 rows × 4 columns
\n", + "| \n", + " | Genre | \n", + "Count | \n", + "Score | \n", + "Popularity_Index | \n", + "
|---|---|---|---|---|
| 52 | \n", + "Crime, Mystery, Romance | \n", + "1 | \n", + "8427737.0 | \n", + "8427737.00 | \n", + "
| 82 | \n", + "Drama, Sci-Fi, Thriller | \n", + "1 | \n", + "4552758.6 | \n", + "4552758.60 | \n", + "
| 88 | \n", + "Fantasy, Mystery, Sci-Fi | \n", + "1 | \n", + "1828742.4 | \n", + "1828742.40 | \n", + "
| 55 | \n", + "Crime, Thriller | \n", + "4 | \n", + "5072501.4 | \n", + "1268125.35 | \n", + "
| 1 | \n", + "Action, Adventure, Crime | \n", + "9 | \n", + "10211307.9 | \n", + "1134589.77 | \n", + "
| 42 | \n", + "Crime, Drama, Thriller | \n", + "36 | \n", + "30435650.0 | \n", + "845434.72 | \n", + "
| 4 | \n", + "Action, Crime, Drama | \n", + "38 | \n", + "21943607.2 | \n", + "577463.35 | \n", + "
| 49 | \n", + "Crime, Horror, Mystery | \n", + "2 | \n", + "1150192.9 | \n", + "575096.45 | \n", + "
| 50 | \n", + "Crime, Horror, Thriller | \n", + "2 | \n", + "963051.1 | \n", + "481525.55 | \n", + "
| 40 | \n", + "Crime, Drama, Mystery | \n", + "36 | \n", + "16859983.7 | \n", + "468332.88 | \n", + "
| 41 | \n", + "Crime, Drama, Romance | \n", + "14 | \n", + "5922509.5 | \n", + "423036.39 | \n", + "
| 34 | \n", + "Crime, Drama | \n", + "28 | \n", + "8400263.8 | \n", + "300009.42 | \n", + "
| 56 | \n", + "Drama | \n", + "14 | \n", + "3745969.2 | \n", + "267569.23 | \n", + "
| 90 | \n", + "Film-Noir, Horror, Thriller | \n", + "2 | \n", + "469127.6 | \n", + "234563.80 | \n", + "
| 67 | \n", + "Drama, Film-Noir, Thriller | \n", + "37 | \n", + "8005838.7 | \n", + "216374.02 | \n", + "
| 97 | \n", + "Horror, Mystery | \n", + "1 | \n", + "213011.5 | \n", + "213011.50 | \n", + "
| 8 | \n", + "Action, Drama, Romance | \n", + "1 | \n", + "202316.9 | \n", + "202316.90 | \n", + "
| 6 | \n", + "Action, Crime, Thriller | \n", + "5 | \n", + "928085.3 | \n", + "185617.06 | \n", + "
| 35 | \n", + "Crime, Drama, Fantasy | \n", + "5 | \n", + "835020.9 | \n", + "167004.18 | \n", + "
| 95 | \n", + "Film-Noir, Thriller | \n", + "10 | \n", + "1616739.0 | \n", + "161673.90 | \n", + "
| \n", + " | Director | \n", + "
|---|---|
| Anthony Mann | \n", + "27 | \n", + "
| Fritz Lang | \n", + "25 | \n", + "
| Robert Siodmak | \n", + "20 | \n", + "
| Alfred Hitchcock | \n", + "19 | \n", + "
| Don Siegel | \n", + "18 | \n", + "
| Robert Wise | \n", + "16 | \n", + "
| Joseph H. Lewis | \n", + "15 | \n", + "
| Phil Karlson | \n", + "14 | \n", + "
| Otto Preminger | \n", + "14 | \n", + "
| Henry Hathaway | \n", + "13 | \n", + "
| \n", + " | Rating | \n", + "Votes | \n", + "index | \n", + "
|---|---|---|---|
| Director | \n", + "\n", + " | \n", + " | \n", + " |
| Anthony Mann | \n", + "180.0 | \n", + "116606.0 | \n", + "754324.9 | \n", + "
| Fritz Lang | \n", + "165.2 | \n", + "225367.0 | \n", + "1517324.7 | \n", + "
| Robert Siodmak | \n", + "135.4 | \n", + "121965.0 | \n", + "846361.2 | \n", + "
| Alfred Hitchcock | \n", + "130.8 | \n", + "2331819.0 | \n", + "15703724.4 | \n", + "
| Don Siegel | \n", + "124.9 | \n", + "158977.0 | \n", + "1095342.1 | \n", + "
| Robert Wise | \n", + "105.4 | \n", + "153326.0 | \n", + "1087370.6 | \n", + "
| Joseph H. Lewis | \n", + "100.7 | \n", + "53984.0 | \n", + "354194.5 | \n", + "
| Phil Karlson | \n", + "93.7 | \n", + "40347.0 | \n", + "272411.8 | \n", + "
| Otto Preminger | \n", + "93.1 | \n", + "166436.0 | \n", + "1115311.7 | \n", + "
| Henry Hathaway | \n", + "89.5 | \n", + "96051.0 | \n", + "678194.5 | \n", + "
| \n", + " | Rating | \n", + "Votes | \n", + "index | \n", + "
|---|---|---|---|
| Stars | \n", + "\n", + " | \n", + " | \n", + " |
| Humphrey Bogart | \n", + "181.9 | \n", + "1502272.0 | \n", + "10366051.2 | \n", + "
| Edward G. Robinson | \n", + "125.7 | \n", + "97388.0 | \n", + "645711.1 | \n", + "
| Robert Mitchum | \n", + "122.6 | \n", + "318835.0 | \n", + "2122339.3 | \n", + "
| Joan Crawford | \n", + "122.5 | \n", + "140740.0 | \n", + "1009009.9 | \n", + "
| Barbara Stanwyck | \n", + "119.3 | \n", + "86870.0 | \n", + "578627.4 | \n", + "
| Ida Lupino | \n", + "111.8 | \n", + "57265.0 | \n", + "418859.2 | \n", + "
| Glenn Ford | \n", + "93.0 | \n", + "83316.0 | \n", + "581342.6 | \n", + "
| George Raft | \n", + "91.3 | \n", + "20982.0 | \n", + "149333.0 | \n", + "
| Alan Ladd | \n", + "89.4 | \n", + "55487.0 | \n", + "385819.5 | \n", + "
| John Payne | \n", + "89.0 | \n", + "27650.0 | \n", + "192780.6 | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1353 | \n", + "Who'll Stop the Rain | \n", + "Action, Crime, Drama | \n", + "1978 | \n", + "126 min | \n", + "6.7 | \n", + "A Vietnam veteran gets conned into helping an ... | \n", + "3003 | \n", + "NaN | \n", + "NaN | \n", + "
| 1354 | \n", + "The Wings of the Dove | \n", + "Drama, Romance | \n", + "1997 | \n", + "102 min | \n", + "7.1 | \n", + "An impoverished woman who has been forced to c... | \n", + "12580 | \n", + "NaN | \n", + "NaN | \n", + "
| 1355 | \n", + "Witness | \n", + "Drama, Romance, Thriller | \n", + "1985 | \n", + "112 min | \n", + "7.4 | \n", + "When a young Amish boy is sole witness to a mu... | \n", + "97031 | \n", + "NaN | \n", + "NaN | \n", + "
| 1356 | \n", + "The Zodiac | \n", + "Crime, Drama, Horror | \n", + "2005 | \n", + "158 min | \n", + "5.3 | \n", + "An elusive serial killer known as the Zodiac t... | \n", + "7333 | \n", + "NaN | \n", + "NaN | \n", + "
| 1357 | \n", + "Zodiac | \n", + "Crime, Drama, Mystery | \n", + "2007 | \n", + "157 min | \n", + "7.7 | \n", + "Between 1968 and 1983, a San Francisco cartoon... | \n", + "546602 | \n", + "NaN | \n", + "NaN | \n", + "
1358 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "Angels Over Broadway | \n", + "Adventure, Comedy, Crime | \n", + "1940 | \n", + "79 min | \n", + "6.5 | \n", + "A cuckolded embezzler on the verge of suicide ... | \n", + "1,228 | \n", + "Ben Hecht | \n", + "| | \n", + "
| 1 | \n", + "City for Conquest | \n", + "Drama, Music, Sport | \n", + "1940 | \n", + "104 min | \n", + "7.2 | \n", + "Danny is a content truck driver, but his girl ... | \n", + "2,430 | \n", + "Anatole Litvak | \n", + "| | \n", + "
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1246 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 2 | \n", + "The Letter | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.6 | \n", + "The wife of a rubber plantation administrator ... | \n", + "13,469 | \n", + "William Wyler | \n", + "Bette Davis | \n", + "
| 3 | \n", + "Rebecca | \n", + "Drama, Film-Noir, Mystery | \n", + "1940 | \n", + "130 min | \n", + "8.1 | \n", + "A self-conscious woman juggles adjusting to he... | \n", + "138,097 | \n", + "Alfred Hitchcock | \n", + "Laurence Olivier | \n", + "
| 4 | \n", + "Stranger on the Third Floor | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "64 min | \n", + "6.8 | \n", + "An aspiring reporter is the key witness at the... | \n", + "4,268 | \n", + "Boris Ingster | \n", + "Peter Lorre | \n", + "
| 5 | \n", + "They Drive by Night | \n", + "Crime, Drama, Film-Noir | \n", + "1940 | \n", + "95 min | \n", + "7.2 | \n", + "When one of two truck-driving brothers loses a... | \n", + "8,201 | \n", + "Raoul Walsh | \n", + "George Raft | \n", + "
| 6 | \n", + "Among the Living | \n", + "Drama, Film-Noir, Mystery | \n", + "1941 | \n", + "67 min | \n", + "6.4 | \n", + "A mentally-unstable man who has been kept in i... | \n", + "716 | \n", + "Stuart Heisler | \n", + "Albert Dekker | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 1317 | \n", + "Point Blank | \n", + "Crime, Drama, Thriller | \n", + "1967 | \n", + "92 min | \n", + "7.3 | \n", + "After being double-crossed and left for dead, ... | \n", + "2,981 | \n", + "Karel Reisz | \n", + "Nick Nolte | \n", + "
| 1318 | \n", + "Point of No Return | \n", + "Action, Crime, Drama | \n", + "1993 | \n", + "109 min | \n", + "6.1 | \n", + "A government fakes the death of a criminal to ... | \n", + "12,545 | \n", + "Iain Softley | \n", + "Helena Bonham Carter | \n", + "
| 1319 | \n", + "The Postman Always Rings Twice | \n", + "Crime, Drama, Romance | \n", + "1981 | \n", + "122 min | \n", + "6.6 | \n", + "The sensuous wife of a lunch wagon proprietor ... | \n", + "96,420 | \n", + "Peter Weir | \n", + "Harrison Ford | \n", + "
| 1320 | \n", + "Pretty Poison | \n", + "Comedy, Crime, Romance | \n", + "1968 | \n", + "89 min | \n", + "7.0 | \n", + "When a mentally disturbed young man tells a pr... | \n", + "7,327 | \n", + "Alexander Bulkley | \n", + "Justin Chambers | \n", + "
| 1321 | \n", + "The Public Eye | \n", + "Crime, Drama, Romance | \n", + "1992 | \n", + "99 min | \n", + "6.5 | \n", + "In the early 1940s, an infamous New York papar... | \n", + "542,608 | \n", + "David Fincher | \n", + "Jake Gyllenhaal | \n", + "
1199 rows × 9 columns
\n", + "| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| 284 | \n", + "Station West | \n", + "Western | \n", + "1948 | \n", + "97 min | \n", + "6.6 | \n", + "After two U.S. cavalrymen transporting a gold ... | \n", + "905 | \n", + "Michael Gordon | \n", + "Barbara Stanwyck | \n", + "
| 1087 | \n", + "711 Ocean Drive | \n", + "Action, Crime, Drama | \n", + "1950 | \n", + "102 min | \n", + "6.8 | \n", + "An electronics expert creates a huge bookie br... | \n", + "10,345 | \n", + "Robert Siodmak | \n", + "Dorothy McGuire | \n", + "
| 920 | \n", + "I Died a Thousand Times | \n", + "Crime, Drama, Film-Noir | \n", + "1955 | \n", + "109 min | \n", + "6.4 | \n", + "After aging criminal Roy Earle is released fro... | \n", + "4,081 | \n", + "Arthur Lubin | \n", + "Brian Donlevy | \n", + "
| 818 | \n", + "Convicted | \n", + "Action, Crime, Drama | \n", + "1950 | \n", + "91 min | \n", + "6.8 | \n", + "A D.A. becomes the prison warden where he trie... | \n", + "419 | \n", + "Lewis Gilbert | \n", + "James Kenney | \n", + "
| 427 | \n", + "Unmasked | \n", + "Action, Crime, Drama | \n", + "1950 | \n", + "60 min | \n", + "5.9 | \n", + "Roger Lewis, publisher of a vicious scandal sh... | \n", + "156 | \n", + "W. Lee Wilder | \n", + "Lloyd Bridges | \n", + "
| 1126 | \n", + "Sudden Fear | \n", + "Film-Noir, Thriller | \n", + "1952 | \n", + "110 min | \n", + "7.5 | \n", + "After an ambitious actor insinuates himself in... | \n", + "1,714 | \n", + "Cy Endfield | \n", + "Frank Lovejoy | \n", + "
| 1315 | \n", + "Payback | \n", + "Action, Crime, Drama | \n", + "I 1999 | \n", + "100 min | \n", + "7.1 | \n", + "After a successful heist, Porter is left for d... | \n", + "1,083,657 | \n", + "Bryan Singer | \n", + "Kevin Spacey | \n", + "
| 319 | \n", + "House of Strangers | \n", + "Crime, Drama, Film-Noir | \n", + "1949 | \n", + "101 min | \n", + "7.4 | \n", + "After years in prison, Max promises revenge on... | \n", + "981 | \n", + "Michael Gordon | \n", + "Ida Lupino | \n", + "
| 191 | \n", + "I Love Trouble | \n", + "Crime, Film-Noir, Mystery | \n", + "1948 | \n", + "93 min | \n", + "6.7 | \n", + "A wealthy man hires a detective to investigate... | \n", + "1,413 | \n", + "Alfred L. Werker | \n", + "Louis Hayward | \n", + "
| 805 | \n", + "Cash on Demand | \n", + "Crime, Drama, Mystery | \n", + "1961 | \n", + "89 min | \n", + "7.4 | \n", + "A charming but ruthless criminal holds the fam... | \n", + "2,371 | \n", + "Tay Garnett | \n", + "Loretta Young | \n", + "
| \n", + " | Title | \n", + "Genre | \n", + "Year | \n", + "Runtime | \n", + "Rating | \n", + "desc | \n", + "Votes | \n", + "Director | \n", + "Stars | \n", + "
|---|---|---|---|---|---|---|---|---|---|
| count | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199.000000 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "1199 | \n", + "
| unique | \n", + "846 | \n", + "107 | \n", + "68 | \n", + "84 | \n", + "NaN | \n", + "860 | \n", + "793 | \n", + "394 | \n", + "446 | \n", + "
| top | \n", + "Fear | \n", + "Crime, Drama, Film-Noir | \n", + "1947 | \n", + "82 min | \n", + "NaN | \n", + "Jim Fletcher, waking up from a coma, finds he ... | \n", + "296 | \n", + "Anthony Mann | \n", + "Humphrey Bogart | \n", + "
| freq | \n", + "3 | \n", + "549 | \n", + "123 | \n", + "43 | \n", + "NaN | \n", + "2 | \n", + "4 | \n", + "27 | \n", + "27 | \n", + "
| mean | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.728023 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| std | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "0.634760 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| min | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "3.600000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 25% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.300000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 50% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "6.700000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| 75% | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "7.200000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
| max | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "8.800000 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "
|
+
+ Film noir is a cinematic term used primarily to describe stylish Hollywood crime dramas, particularly those that emphasize cynical attitudes and motivations. The 1940s and 1950s are generally regarded as the "classic period" of American film noir. Film noir of this era is associated with a low-key, black-and-white visual style that has roots in German Expressionist cinematography. Many of the prototypical stories and much of the attitude of classic noir derive from the hardboiled school of crime fiction that emerged in the United States during the Great Depression.
+ The term film noir, French for 'black film' (literal) or 'dark film' (closer meaning), was first applied to Hollywood films by French critic Nino Frank in 1946, but was unrecognized by most American film industry professionals of that era. Frank is believed to have been inspired by the French literary publishing imprint Série noire, founded in 1945.
+
+ + + + + + Project description+Data description+ ‘Film noir’ is a term you’ve probably heard hundreds of times, and has long been regarded as one of cinema’s most intriguing styles that defined post-war American cinematography. The genre developed iconic cinematic motifs and tropes that inspire filmmakers today. For this reason, our group decided to focus our research project on the topic of Film- Noir movies, and thereby we searched online for a suitable dataset. We will use the dataset “Film Noir: They Shot Dark Pictures, Didn’t They?” (https://www.kaggle.com/datasets/kabhishm/film-noir-they-shot-dark-pictures-didnt-they). This dataset has been recently updated and it contains over 1000 film-noir movies along with the following information: +
Goals of the research+ In this research project, we have several goals in mind. At first glance, the information provided by the dataset would allow us to discover what sort of genres were popular throughout the Film Noir age, by correlating the rating of the movie with the actual votes from viewers. + Also, an important aspect would be the dominating presence of several directors and how they monopolized the genre, and if the viewers actually enjoy the movies produced by those specific directors. What is more, we will look into what movie stars had the most success during their Film Noir career. ++ A short description of the plot is provided for each movie in the dataset, and we would be interested to determine what the most frequent words are used to describe the movies, if there was a particular inclination for a certain type of character or plot. In addition to that, the dataset also provides movies from the Neo-Noir period, so an interesting analysis could consist of looking at different statistical changes from the initial release of this kind of movies and the revival of the genre later on in time. + To actually perform the desired analysis, we want to make use of a few specific methodological approaches, pointedly exploratory data analysis and data visualization, using features provided by the Pandas library, Matplotlib library, and Numpy library. + + + We will navigate through the analysis using some of the tutorials provided by the Cultural Analytics Open Science Guide . We want to guide the user through how they will create their own Pandas DataFrame and use that in order to do some explanatory analysis and data visualization. + For the active learning exercises, we transformed our goals into questions, in order for it to be as engaging as possible, and provide a Jupyter Notebook with the solutions there as a learning experience. Of course, the users are free to come up with their own questions based on the dataset, which are clearly marked as free-style questions. + + Description of output+ Thinking of the structure of our project, our output has been transformed into a GitHub repository, where all the data and additional Jupyter Notebooks will be stored, so that all the changes and improvements could be visible. + Additionally, a Data Management Plan (DMP), in which it has been explicitly stated what data we are using, how we handled and stored it, and how the data is supposed to be managed once the project is completed. + As you probably noticed by now, we put together a website, because we think it is important for users to visualize and interact with the data and the outputs of the research project. + + + +Contributor roles+Person - what they contributed+ Catalina Cruceanu - Conceptualization, Formal analysis, Investigation, Methodology, Software, Visualization, Writing (DMP - original draft), Writing (review & editing), Exercise 5 ++ Ece Demirtaş - Conceptualization, Formal analysis, Investigation, Methodology, Software, Visualization, Writing (original draft - review & editing), Exercise 3, Webdesign. + + Ziyi Wang - Conceptualization, Formal analysis,Investigation, Methodology, Software, Visualization, Writing (original draft), Exercise 2 + + Shannon Wietsma - Conceptualization, Formal analysis, Investigation, Methodology, Project administration, Software, Supervision, Visualization, Writing (original draft - review & editing), Exercise 1 & 4 + + +
+ + |
+
+
+
+ |
+
Catalina Cruceanu -
+Ece Demirtaş -
+Ziyi Wang -
+Shannon Wietsma -
+ ++ "After all, crime is only… a left-handed form of human endeavor." +
+