@@ -14,7 +14,7 @@ Visualizing Movie Details
1414
1515.. |dataset| replace:: ``test.movieDetails``
1616
17- *Total Estimated Time to Complete: 20-30  minutes*
17+ *Total Estimated Time to Complete: 15-20  minutes*
1818
1919Introduction
2020------------
@@ -25,6 +25,138 @@ a :doc:`data source </data-sources>` containing the ``Mflix``
2525This sample data contains information on movies such as release year,
2626cast, and reviews.
2727
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+ 
28160With this tutorial, you will learn how to use filters to refine a large
29161result set down to an easily understandable chart, and use multi-series
30162charts to gain further insight into the data.
@@ -50,19 +182,17 @@ chart and a scatter chart.
50182Table of Contents
51183-----------------
52184
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`
58189
59190To get started, move ahead to the
60- :doc:`/tutorial/movie-details/prereqs-and-import-data ` page.
191+ :doc:`/tutorial/movie-details/create-dashboard ` page.
61192
62193.. toctree::
63194   :titlesonly:
64195
65-    /tutorial/movie-details/prereqs-and-import-data
66196   /tutorial/movie-details/create-dashboard
67197   /tutorial/movie-details/column-chart-director-awards
68198   /tutorial/movie-details/scatter-chart-movies-ratings
0 commit comments