@@ -14,7 +14,7 @@ Visualizing Movie Details
14
14
15
15
.. |dataset| replace:: ``test.movieDetails``
16
16
17
- *Total Estimated Time to Complete: 20-30 minutes*
17
+ *Total Estimated Time to Complete: 15-20 minutes*
18
18
19
19
Introduction
20
20
------------
@@ -25,6 +25,138 @@ a :doc:`data source </data-sources>` containing the ``Mflix``
25
25
This sample data contains information on movies such as release year,
26
26
cast, and reviews.
27
27
28
+ The following is a sample document from the dataset:
29
+
30
+ .. code-block:: json
31
+
32
+ {
33
+ "_id": {
34
+ "$oid": "573a1391f29313caabcd9637"
35
+ },
36
+ "plot": "The ancient vampire Count Dracula arrives in
37
+ England and begins to prey upon the virtuous young Mina.",
38
+ "genres": [
39
+ "Horror"
40
+ ],
41
+ "runtime": {
42
+ "$numberInt": "85"
43
+ },
44
+ "rated": "APPROVED",
45
+ "cast": [
46
+ "Bela Lugosi",
47
+ "Helen Chandler",
48
+ "David Manners",
49
+ "Dwight Frye"
50
+ ],
51
+ "num_mflix_comments": {
52
+ "$numberInt": "1"
53
+ },
54
+ "poster": "https://m.media-amazon.com/images/M/MV5BZDY2ODZhZWQtNDk0ZS00OGE4LWE4NjAtZjE5MTJhMjExMTRjXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_SY1000_SX677_AL_.jpg",
55
+ "title": "Dracula",
56
+ "fullplot": "After a harrowing ride through the Carpathian mountains in eastern Europe,
57
+ Renfield enters castle Dracula to finalize the transferral of Carfax Abbey in London to
58
+ Count Dracula, who is in actuality a vampire. Renfield is drugged by the eerily hypnotic
59
+ count, and turned into one of his thralls, protecting him during his sea voyage to London.
60
+ After sucking the blood and turning the young Lucy Weston into a vampire, Dracula turns his
61
+ attention to her friend Mina Seward, daughter of Dr. Seward who then calls in a specialist,
62
+ Dr. Van Helsing, to diagnose the sudden deterioration of Mina's health. Van Helsing,
63
+ realizing that Dracula is indeed a vampire, tries to prepare Mina's fiance, John Harker,
64
+ and Dr. Seward for what is to come and the measures that will have to be taken to prevent
65
+ Mina from becoming one of the undead.",
66
+ "languages": [
67
+ "English",
68
+ "Hungarian",
69
+ "Latin"
70
+ ],
71
+ "released": {
72
+ "$date": {
73
+ "$numberLong": "-1226966400000"
74
+ }
75
+ },
76
+ "directors": [
77
+ "Tod Browning"
78
+ ],
79
+ "writers": [
80
+ "Bram Stoker (by)",
81
+ "Hamilton Deane (from the play adapted by)",
82
+ "John L. Balderston (from the play adapted by)",
83
+ "Garrett Fort (play)"
84
+ ],
85
+ "awards": {
86
+ "wins": {
87
+ "$numberInt": "2"
88
+ },
89
+ "nominations": {
90
+ "$numberInt": "1"
91
+ },
92
+ "text": {
93
+ "2 wins & 1 nomination."
94
+ }
95
+ },
96
+ "lastupdated": "2015-08-28 00:30:04.660000000",
97
+ "year": {
98
+ "$numberInt": "1931"
99
+ },
100
+ "imdb": {
101
+ "rating": {
102
+ "$numberDouble": "7.6"
103
+ },
104
+ "votes": {
105
+ "$numberInt": "30184"
106
+ },
107
+ "id": {
108
+ "$numberInt": "21814"
109
+ }
110
+ },
111
+ "countries": [
112
+ "USA"
113
+ ],
114
+ "type": "movie",
115
+ "tomatoes": {
116
+ "viewer": {
117
+ "rating": {
118
+ "$numberDouble": "3.7"
119
+ },
120
+ "numReviews": {
121
+ "$numberInt": "44035"
122
+ },
123
+ "meter": {
124
+ "$numberInt": "82"
125
+ }
126
+ },
127
+ "dvd": {
128
+ "$date": {
129
+ "$numberLong": "998956800000"
130
+ }
131
+ },
132
+ "critic": {
133
+ "rating": {
134
+ "$numberDouble": "7.9"
135
+ },
136
+ "numReviews": {
137
+ "$numberInt": "45"
138
+ },
139
+ "meter": {
140
+ "$numberInt": "91"
141
+ }
142
+ },
143
+ "lastUpdated": {
144
+ "$date": {
145
+ "$numberLong": "1442516384000"
146
+ }
147
+ },
148
+ "consensus": "Bela Lugosi's timeless portrayal of Dracula in this creepy and
149
+ atmospheric 1931 film has set the standard for major vampiric roles since.",
150
+ "rotten": {
151
+ "$numberInt": "4"
152
+ },
153
+ "production": "Universal Pictures",
154
+ "fresh": {
155
+ "$numberInt": "41"
156
+ }
157
+ }
158
+ }
159
+
28
160
With this tutorial, you will learn how to use filters to refine a large
29
161
result set down to an easily understandable chart, and use multi-series
30
162
charts to gain further insight into the data.
@@ -50,19 +182,17 @@ chart and a scatter chart.
50
182
Table of Contents
51
183
-----------------
52
184
53
- - Step 1: :doc:`/tutorial/movie-details/prereqs-and-import-data`
54
- - Step 2: :doc:`/tutorial/movie-details/create-dashboard`
55
- - Step 3: :doc:`/tutorial/movie-details/column-chart-director-awards`
56
- - Step 4: :doc:`/tutorial/movie-details/scatter-chart-movies-ratings`
57
- - Step 5: :doc:`/tutorial/movie-details/arrange-charts`
185
+ - Step 1: :doc:`/tutorial/movie-details/create-dashboard`
186
+ - Step 2: :doc:`/tutorial/movie-details/column-chart-director-awards`
187
+ - Step 3: :doc:`/tutorial/movie-details/scatter-chart-movies-ratings`
188
+ - Step 4: :doc:`/tutorial/movie-details/arrange-charts`
58
189
59
190
To get started, move ahead to the
60
- :doc:`/tutorial/movie-details/prereqs-and-import-data ` page.
191
+ :doc:`/tutorial/movie-details/create-dashboard ` page.
61
192
62
193
.. toctree::
63
194
:titlesonly:
64
195
65
- /tutorial/movie-details/prereqs-and-import-data
66
196
/tutorial/movie-details/create-dashboard
67
197
/tutorial/movie-details/column-chart-director-awards
68
198
/tutorial/movie-details/scatter-chart-movies-ratings
0 commit comments