@cdc/core 4.25.11 → 4.26.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/qa-test-developer.md +126 -0
- package/CLAUDE.local.md +67 -0
- package/_stories/Gallery.Charts.stories.tsx +300 -0
- package/_stories/Gallery.DataBite.stories.tsx +79 -0
- package/_stories/Gallery.Maps.stories.tsx +239 -0
- package/_stories/Gallery.WaffleChart.stories.tsx +187 -0
- package/_stories/PageART.stories.tsx +193 -0
- package/_stories/PageBRFSS.stories.tsx +294 -0
- package/_stories/PageCancerRegistries.stories.tsx +199 -0
- package/_stories/PageEasternEquineEncephalitis.stories.tsx +216 -0
- package/_stories/PageExcessiveAlcoholUse.stories.tsx +201 -0
- package/_stories/PageMaternalMortality.stories.tsx +193 -0
- package/_stories/PageOralHealth.stories.tsx +201 -0
- package/_stories/PageRespiratory.stories.tsx +332 -0
- package/_stories/PageSmokingTobacco.stories.tsx +200 -0
- package/_stories/PageStateDiabetesProfiles.stories.tsx +201 -0
- package/_stories/PageWastewater.stories.tsx +477 -0
- package/_stories/VegaImport.stories.tsx +401 -0
- package/_stories/vega-fixtures/bars-with-line.json +444 -0
- package/_stories/vega-fixtures/bars.json +58 -0
- package/_stories/vega-fixtures/combo-bar-rolling-mean.json +88 -0
- package/_stories/vega-fixtures/combo.json +68 -0
- package/_stories/vega-fixtures/grouped-horizontal-bars.json +83 -0
- package/_stories/vega-fixtures/grouped-horizontal-bars2.json +231 -0
- package/_stories/vega-fixtures/horizontal-bar.json +427 -0
- package/_stories/vega-fixtures/horizontal-bars-with-bad-colors.json +197 -0
- package/_stories/vega-fixtures/horizontal-bars2.json +58 -0
- package/_stories/vega-fixtures/lines.json +227 -0
- package/_stories/vega-fixtures/measles-bars.json +348 -0
- package/_stories/vega-fixtures/measles-map.json +11101 -0
- package/_stories/vega-fixtures/measles-stacked-bars.json +2147 -0
- package/_stories/vega-fixtures/multi-dataset.json +255 -0
- package/_stories/vega-fixtures/no-data.json +14 -0
- package/_stories/vega-fixtures/pie-chart.json +94 -0
- package/_stories/vega-fixtures/repeat-spec.json +47 -0
- package/_stories/vega-fixtures/stacked-area.json +222 -0
- package/_stories/vega-fixtures/stacked-bar-with-rect.json +3412 -0
- package/_stories/vega-fixtures/stacked-bars-with-line.json +364 -0
- package/_stories/vega-fixtures/stacked-bars.json +212 -0
- package/_stories/vega-fixtures/stacked-horizontal-bars.json +140 -0
- package/_stories/vega-fixtures/warning-combo.json +59 -0
- package/_stories/vega-fixtures/warning-scatter-and-line.json +1182 -0
- package/assets/icon-chart-area.svg +1 -0
- package/assets/icon-chart-radar.svg +23 -0
- package/assets/icon-magnifying-glass.svg +5 -0
- package/assets/icon-warming-stripes.svg +13 -0
- package/assets/logo2.svg +31 -0
- package/components/AdvancedEditor/AdvancedEditor.tsx +4 -0
- package/components/AdvancedEditor/EmbedEditor.tsx +513 -0
- package/components/ComboBox/ComboBox.tsx +345 -0
- package/components/ComboBox/combobox.styles.css +185 -0
- package/components/ComboBox/index.ts +1 -0
- package/components/CustomColorsEditor/CustomColorsEditor.tsx +3 -10
- package/components/DataTable/DataTable.tsx +132 -58
- package/components/DataTable/data-table.css +216 -215
- package/components/DataTable/helpers/getSeriesName.ts +6 -0
- package/components/DataTable/helpers/mapCellMatrix.tsx +14 -6
- package/components/EditorPanel/ColumnsEditor.tsx +37 -19
- package/components/EditorPanel/DataTableEditor.tsx +51 -25
- package/components/EditorPanel/EditorPanel.styles.css +16 -0
- package/components/EditorPanel/EditorPanel.tsx +144 -0
- package/components/EditorPanel/EditorPanelDispatch.tsx +75 -0
- package/components/EditorPanel/FieldSetWrapper.tsx +66 -23
- package/components/EditorPanel/Inputs.tsx +33 -7
- package/components/EditorPanel/VizFilterEditor/NestedDropdownEditor.tsx +14 -6
- package/components/EditorPanel/VizFilterEditor/VizFilterEditor.tsx +240 -175
- package/components/EditorPanel/VizFilterEditor/components/FilterOrder.tsx +33 -29
- package/components/EditorPanel/sections/VisualSection.tsx +169 -0
- package/components/Filters/Filters.tsx +31 -5
- package/components/Filters/helpers/getNestedOptions.ts +2 -1
- package/components/Filters/helpers/handleSorting.ts +1 -1
- package/components/Layout/components/Sidebar/components/sidebar.styles.scss +84 -2
- package/components/Layout/components/Visualization/index.tsx +27 -1
- package/components/Layout/components/Visualization/visualizations.scss +7 -0
- package/components/Legend/Legend.Gradient.tsx +1 -1
- package/components/MediaControls.tsx +53 -28
- package/components/_stories/CustomColorsEditor.stories.tsx +37 -0
- package/components/_stories/DataTable.stories.tsx +1 -0
- package/components/ui/Icon.tsx +3 -1
- package/components/ui/Title/index.tsx +30 -2
- package/components/ui/Title/title.styles.css +42 -0
- package/data/colorPalettes.ts +18 -5
- package/data/mapColorPalettes.ts +10 -0
- package/devTemplate/dev.js +235 -0
- package/devTemplate/index.html +30 -0
- package/devTemplate/preview.html +1503 -0
- package/devTemplate/sidebar.css +151 -0
- package/dist/cove-main.css +2803 -4448
- package/dist/cove-main.css.map +1 -1
- package/generateViteConfig.js +118 -2
- package/helpers/DataTransform.ts +1 -5
- package/helpers/addValuesToFilters.ts +6 -1
- package/helpers/cove/date.ts +33 -1
- package/helpers/cove/string.ts +29 -0
- package/helpers/coveUpdateWorker.ts +21 -12
- package/helpers/embed/embedCodeGenerator.ts +80 -0
- package/helpers/embed/embedHelper.js +158 -0
- package/helpers/embed/filterUtils.ts +121 -0
- package/helpers/embed/index.ts +21 -0
- package/helpers/embed/urlValidation.ts +119 -0
- package/helpers/filterVizData.ts +6 -1
- package/helpers/getFileExtension.ts +0 -6
- package/helpers/getUniqueValues.ts +19 -0
- package/helpers/hashObj.ts +25 -0
- package/helpers/isRightAlignedTableValue.js +5 -0
- package/helpers/metrics/helpers.ts +1 -0
- package/helpers/metrics/types.ts +3 -0
- package/helpers/palettes/colorDistributions.ts +1 -1
- package/helpers/palettes/utils.ts +12 -12
- package/helpers/parseCsvWithQuotes.ts +15 -14
- package/helpers/pivotData.ts +2 -2
- package/helpers/prepareScreenshot.ts +288 -0
- package/helpers/queryStringUtils.ts +29 -0
- package/helpers/testing.ts +44 -0
- package/helpers/tests/DataTransform.test.ts +125 -0
- package/helpers/tests/date.test.ts +64 -0
- package/helpers/tests/prepareScreenshot.test.ts +414 -0
- package/helpers/tests/queryStringUtils.test.ts +381 -0
- package/helpers/tests/testStandaloneBuild.ts +23 -5
- package/helpers/useDataVizClasses.ts +0 -1
- package/helpers/vegaConfig.ts +1 -1
- package/helpers/vegaConfigImport.ts +160 -0
- package/helpers/ver/4.26.1.ts +80 -0
- package/helpers/ver/4.26.2.ts +84 -0
- package/helpers/ver/tests/4.26.1.test.ts +105 -0
- package/helpers/ver/tests/4.26.2.test.ts +298 -0
- package/helpers/viewports.ts +2 -0
- package/hooks/useDataColumns.ts +63 -0
- package/hooks/useFilterManagement.ts +94 -0
- package/hooks/useLegendSeparators.ts +26 -0
- package/hooks/useListManagement.ts +192 -0
- package/package.json +29 -33
- package/styles/_button-section.scss +0 -3
- package/styles/v2/components/editor.scss +9 -9
- package/styles/v2/utils/_grid.scss +8 -3
- package/types/Annotation.ts +10 -11
- package/types/Axis.ts +1 -0
- package/types/ForecastingSeriesKey.ts +1 -0
- package/types/General.ts +2 -0
- package/types/MarkupInclude.ts +1 -0
- package/types/Palette.ts +21 -0
- package/types/Series.ts +3 -0
- package/types/Table.ts +1 -0
- package/types/Visualization.ts +7 -0
- package/types/VizFilter.ts +1 -0
- package/LICENSE +0 -201
- package/_stories/StoryRenderingTests.stories.tsx +0 -164
|
@@ -0,0 +1,1182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://vega.github.io/schema/vega/v5.json",
|
|
3
|
+
"description": "A labeled scatter plot of films showing Rotten Tomatoes ratings versus IMDB ratings.",
|
|
4
|
+
"padding": 5,
|
|
5
|
+
"width": 800,
|
|
6
|
+
"height": 600,
|
|
7
|
+
"autosize": "pad",
|
|
8
|
+
|
|
9
|
+
"data": [
|
|
10
|
+
{
|
|
11
|
+
"name": "movies",
|
|
12
|
+
"values": [
|
|
13
|
+
{
|
|
14
|
+
"Title": "Bill & Ted's Excellent Adventure",
|
|
15
|
+
"US Gross": 39916091,
|
|
16
|
+
"Worldwide Gross": 39916091,
|
|
17
|
+
"US DVD Sales": null,
|
|
18
|
+
"Production Budget": 10000000,
|
|
19
|
+
"Release Date": "Feb 17 1989",
|
|
20
|
+
"MPAA Rating": null,
|
|
21
|
+
"Running Time min": null,
|
|
22
|
+
"Distributor": "Orion Pictures",
|
|
23
|
+
"Source": "Original Screenplay",
|
|
24
|
+
"Major Genre": "Comedy",
|
|
25
|
+
"Creative Type": "Science Fiction",
|
|
26
|
+
"Director": "Stephen Herek",
|
|
27
|
+
"Rotten Tomatoes Rating": 81,
|
|
28
|
+
"IMDB Rating": 6.7,
|
|
29
|
+
"IMDB Votes": 30341
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"Title": "A Bridge Too Far",
|
|
33
|
+
"US Gross": 50800000,
|
|
34
|
+
"Worldwide Gross": 50800000,
|
|
35
|
+
"US DVD Sales": null,
|
|
36
|
+
"Production Budget": 26000000,
|
|
37
|
+
"Release Date": "Jun 15 1977",
|
|
38
|
+
"MPAA Rating": null,
|
|
39
|
+
"Running Time min": null,
|
|
40
|
+
"Distributor": "MGM",
|
|
41
|
+
"Source": "Based on Book/Short Story",
|
|
42
|
+
"Major Genre": "Action",
|
|
43
|
+
"Creative Type": null,
|
|
44
|
+
"Director": "Sir Richard Attenborough",
|
|
45
|
+
"Rotten Tomatoes Rating": 67,
|
|
46
|
+
"IMDB Rating": 7.3,
|
|
47
|
+
"IMDB Votes": 16882
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"Title": "Beetle Juice",
|
|
51
|
+
"US Gross": 73326666,
|
|
52
|
+
"Worldwide Gross": 73326666,
|
|
53
|
+
"US DVD Sales": null,
|
|
54
|
+
"Production Budget": 15000000,
|
|
55
|
+
"Release Date": "Mar 30 1988",
|
|
56
|
+
"MPAA Rating": null,
|
|
57
|
+
"Running Time min": null,
|
|
58
|
+
"Distributor": "Warner Bros.",
|
|
59
|
+
"Source": "Original Screenplay",
|
|
60
|
+
"Major Genre": "Comedy",
|
|
61
|
+
"Creative Type": "Fantasy",
|
|
62
|
+
"Director": "Tim Burton",
|
|
63
|
+
"Rotten Tomatoes Rating": null,
|
|
64
|
+
"IMDB Rating": 7.3,
|
|
65
|
+
"IMDB Votes": 61197
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"Title": "Batman Returns",
|
|
69
|
+
"US Gross": 162831698,
|
|
70
|
+
"Worldwide Gross": 266822354,
|
|
71
|
+
"US DVD Sales": null,
|
|
72
|
+
"Production Budget": 80000000,
|
|
73
|
+
"Release Date": "Jun 18 1992",
|
|
74
|
+
"MPAA Rating": "PG-13",
|
|
75
|
+
"Running Time min": null,
|
|
76
|
+
"Distributor": "Warner Bros.",
|
|
77
|
+
"Source": "Original Screenplay",
|
|
78
|
+
"Major Genre": "Action",
|
|
79
|
+
"Creative Type": "Super Hero",
|
|
80
|
+
"Director": "Tim Burton",
|
|
81
|
+
"Rotten Tomatoes Rating": 78,
|
|
82
|
+
"IMDB Rating": 6.9,
|
|
83
|
+
"IMDB Votes": 78673
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"Title": "Batman Forever",
|
|
87
|
+
"US Gross": 184031112,
|
|
88
|
+
"Worldwide Gross": 336529144,
|
|
89
|
+
"US DVD Sales": null,
|
|
90
|
+
"Production Budget": 100000000,
|
|
91
|
+
"Release Date": "Jun 16 1995",
|
|
92
|
+
"MPAA Rating": "PG-13",
|
|
93
|
+
"Running Time min": null,
|
|
94
|
+
"Distributor": "Warner Bros.",
|
|
95
|
+
"Source": "Original Screenplay",
|
|
96
|
+
"Major Genre": "Action",
|
|
97
|
+
"Creative Type": "Super Hero",
|
|
98
|
+
"Director": "Joel Schumacher",
|
|
99
|
+
"Rotten Tomatoes Rating": 43,
|
|
100
|
+
"IMDB Rating": 5.4,
|
|
101
|
+
"IMDB Votes": 76218
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"Title": "Batman - The Movie",
|
|
105
|
+
"US Gross": 0,
|
|
106
|
+
"Worldwide Gross": 0,
|
|
107
|
+
"US DVD Sales": null,
|
|
108
|
+
"Production Budget": 1377800,
|
|
109
|
+
"Release Date": "Aug 21 2001",
|
|
110
|
+
"MPAA Rating": null,
|
|
111
|
+
"Running Time min": null,
|
|
112
|
+
"Distributor": null,
|
|
113
|
+
"Source": null,
|
|
114
|
+
"Major Genre": null,
|
|
115
|
+
"Creative Type": null,
|
|
116
|
+
"Director": null,
|
|
117
|
+
"Rotten Tomatoes Rating": null,
|
|
118
|
+
"IMDB Rating": null,
|
|
119
|
+
"IMDB Votes": null
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"Title": "Batman",
|
|
123
|
+
"US Gross": 251188924,
|
|
124
|
+
"Worldwide Gross": 411348924,
|
|
125
|
+
"US DVD Sales": null,
|
|
126
|
+
"Production Budget": 35000000,
|
|
127
|
+
"Release Date": "Jun 23 1989",
|
|
128
|
+
"MPAA Rating": "PG-13",
|
|
129
|
+
"Running Time min": null,
|
|
130
|
+
"Distributor": "Warner Bros.",
|
|
131
|
+
"Source": "Based on Comic/Graphic Novel",
|
|
132
|
+
"Major Genre": "Action",
|
|
133
|
+
"Creative Type": "Super Hero",
|
|
134
|
+
"Director": "Tim Burton",
|
|
135
|
+
"Rotten Tomatoes Rating": 71,
|
|
136
|
+
"IMDB Rating": 7.6,
|
|
137
|
+
"IMDB Votes": 111464
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"Title": "Buffy the Vampire Slayer",
|
|
141
|
+
"US Gross": 14231669,
|
|
142
|
+
"Worldwide Gross": 14231669,
|
|
143
|
+
"US DVD Sales": null,
|
|
144
|
+
"Production Budget": 7000000,
|
|
145
|
+
"Release Date": "Jul 31 1992",
|
|
146
|
+
"MPAA Rating": null,
|
|
147
|
+
"Running Time min": null,
|
|
148
|
+
"Distributor": "20th Century Fox",
|
|
149
|
+
"Source": "Original Screenplay",
|
|
150
|
+
"Major Genre": "Horror",
|
|
151
|
+
"Creative Type": "Fantasy",
|
|
152
|
+
"Director": null,
|
|
153
|
+
"Rotten Tomatoes Rating": 32,
|
|
154
|
+
"IMDB Rating": 5.3,
|
|
155
|
+
"IMDB Votes": 16056
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"Title": "Bienvenue chez les Ch'tis",
|
|
159
|
+
"US Gross": 1470856,
|
|
160
|
+
"Worldwide Gross": 243470856,
|
|
161
|
+
"US DVD Sales": null,
|
|
162
|
+
"Production Budget": 16000000,
|
|
163
|
+
"Release Date": "Jul 25 2008",
|
|
164
|
+
"MPAA Rating": "Not Rated",
|
|
165
|
+
"Running Time min": 109,
|
|
166
|
+
"Distributor": "Link Productions Ltd.",
|
|
167
|
+
"Source": "Original Screenplay",
|
|
168
|
+
"Major Genre": "Comedy",
|
|
169
|
+
"Creative Type": "Contemporary Fiction",
|
|
170
|
+
"Director": null,
|
|
171
|
+
"Rotten Tomatoes Rating": null,
|
|
172
|
+
"IMDB Rating": 7,
|
|
173
|
+
"IMDB Votes": 7129
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"Title": "Beyond the Valley of the Dolls",
|
|
177
|
+
"US Gross": 9000000,
|
|
178
|
+
"Worldwide Gross": 9000000,
|
|
179
|
+
"US DVD Sales": null,
|
|
180
|
+
"Production Budget": 1000000,
|
|
181
|
+
"Release Date": "Jan 01 1970",
|
|
182
|
+
"MPAA Rating": null,
|
|
183
|
+
"Running Time min": null,
|
|
184
|
+
"Distributor": "20th Century Fox",
|
|
185
|
+
"Source": "Original Screenplay",
|
|
186
|
+
"Major Genre": "Comedy",
|
|
187
|
+
"Creative Type": null,
|
|
188
|
+
"Director": null,
|
|
189
|
+
"Rotten Tomatoes Rating": 68,
|
|
190
|
+
"IMDB Rating": 5.7,
|
|
191
|
+
"IMDB Votes": 4626
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"Title": "Broken Vessels",
|
|
195
|
+
"US Gross": 15030,
|
|
196
|
+
"Worldwide Gross": 85343,
|
|
197
|
+
"US DVD Sales": null,
|
|
198
|
+
"Production Budget": 600000,
|
|
199
|
+
"Release Date": "Jul 02 1999",
|
|
200
|
+
"MPAA Rating": "R",
|
|
201
|
+
"Running Time min": null,
|
|
202
|
+
"Distributor": null,
|
|
203
|
+
"Source": "Original Screenplay",
|
|
204
|
+
"Major Genre": "Drama",
|
|
205
|
+
"Creative Type": null,
|
|
206
|
+
"Director": null,
|
|
207
|
+
"Rotten Tomatoes Rating": null,
|
|
208
|
+
"IMDB Rating": 6.4,
|
|
209
|
+
"IMDB Votes": 399
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"Title": "The Boys from Brazil",
|
|
213
|
+
"US Gross": 19000000,
|
|
214
|
+
"Worldwide Gross": 19000000,
|
|
215
|
+
"US DVD Sales": null,
|
|
216
|
+
"Production Budget": 12000000,
|
|
217
|
+
"Release Date": "Dec 31 1977",
|
|
218
|
+
"MPAA Rating": null,
|
|
219
|
+
"Running Time min": null,
|
|
220
|
+
"Distributor": "20th Century Fox",
|
|
221
|
+
"Source": "Based on Book/Short Story",
|
|
222
|
+
"Major Genre": "Thriller/Suspense",
|
|
223
|
+
"Creative Type": null,
|
|
224
|
+
"Director": "Franklin J. Schaffner",
|
|
225
|
+
"Rotten Tomatoes Rating": 65,
|
|
226
|
+
"IMDB Rating": 7,
|
|
227
|
+
"IMDB Votes": 8741
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"Title": "The Business of Fancy Dancing",
|
|
231
|
+
"US Gross": 174682,
|
|
232
|
+
"Worldwide Gross": 174682,
|
|
233
|
+
"US DVD Sales": null,
|
|
234
|
+
"Production Budget": 200000,
|
|
235
|
+
"Release Date": "May 10 2002",
|
|
236
|
+
"MPAA Rating": "Not Rated",
|
|
237
|
+
"Running Time min": null,
|
|
238
|
+
"Distributor": "Outrider Pictures",
|
|
239
|
+
"Source": "Original Screenplay",
|
|
240
|
+
"Major Genre": "Drama",
|
|
241
|
+
"Creative Type": "Contemporary Fiction",
|
|
242
|
+
"Director": null,
|
|
243
|
+
"Rotten Tomatoes Rating": null,
|
|
244
|
+
"IMDB Rating": 7,
|
|
245
|
+
"IMDB Votes": 355
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"Title": "Caddyshack",
|
|
249
|
+
"US Gross": 39846344,
|
|
250
|
+
"Worldwide Gross": 39846344,
|
|
251
|
+
"US DVD Sales": null,
|
|
252
|
+
"Production Budget": 6000000,
|
|
253
|
+
"Release Date": "Jul 25 1980",
|
|
254
|
+
"MPAA Rating": null,
|
|
255
|
+
"Running Time min": null,
|
|
256
|
+
"Distributor": "Warner Bros.",
|
|
257
|
+
"Source": "Original Screenplay",
|
|
258
|
+
"Major Genre": "Comedy",
|
|
259
|
+
"Creative Type": "Contemporary Fiction",
|
|
260
|
+
"Director": "Harold Ramis",
|
|
261
|
+
"Rotten Tomatoes Rating": 75,
|
|
262
|
+
"IMDB Rating": 7.3,
|
|
263
|
+
"IMDB Votes": 35436
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"Title": "Cape Fear",
|
|
267
|
+
"US Gross": 79091969,
|
|
268
|
+
"Worldwide Gross": 182291969,
|
|
269
|
+
"US DVD Sales": null,
|
|
270
|
+
"Production Budget": 35000000,
|
|
271
|
+
"Release Date": "Nov 15 1991",
|
|
272
|
+
"MPAA Rating": "R",
|
|
273
|
+
"Running Time min": null,
|
|
274
|
+
"Distributor": "Universal",
|
|
275
|
+
"Source": "Remake",
|
|
276
|
+
"Major Genre": "Thriller/Suspense",
|
|
277
|
+
"Creative Type": "Contemporary Fiction",
|
|
278
|
+
"Director": "Martin Scorsese",
|
|
279
|
+
"Rotten Tomatoes Rating": 76,
|
|
280
|
+
"IMDB Rating": 7.3,
|
|
281
|
+
"IMDB Votes": 47196
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"Title": "Clear and Present Danger",
|
|
285
|
+
"US Gross": 122012656,
|
|
286
|
+
"Worldwide Gross": 207500000,
|
|
287
|
+
"US DVD Sales": null,
|
|
288
|
+
"Production Budget": 62000000,
|
|
289
|
+
"Release Date": "Aug 03 1994",
|
|
290
|
+
"MPAA Rating": "PG-13",
|
|
291
|
+
"Running Time min": null,
|
|
292
|
+
"Distributor": "Paramount Pictures",
|
|
293
|
+
"Source": "Based on Book/Short Story",
|
|
294
|
+
"Major Genre": "Action",
|
|
295
|
+
"Creative Type": "Contemporary Fiction",
|
|
296
|
+
"Director": "Phillip Noyce",
|
|
297
|
+
"Rotten Tomatoes Rating": 78,
|
|
298
|
+
"IMDB Rating": 6.8,
|
|
299
|
+
"IMDB Votes": 29612
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"Title": "Carrie",
|
|
303
|
+
"US Gross": 25878153,
|
|
304
|
+
"Worldwide Gross": 25878153,
|
|
305
|
+
"US DVD Sales": null,
|
|
306
|
+
"Production Budget": 1800000,
|
|
307
|
+
"Release Date": "Nov 16 1976",
|
|
308
|
+
"MPAA Rating": null,
|
|
309
|
+
"Running Time min": null,
|
|
310
|
+
"Distributor": "MGM",
|
|
311
|
+
"Source": "Based on Book/Short Story",
|
|
312
|
+
"Major Genre": "Horror",
|
|
313
|
+
"Creative Type": "Contemporary Fiction",
|
|
314
|
+
"Director": "Brian De Palma",
|
|
315
|
+
"Rotten Tomatoes Rating": 90,
|
|
316
|
+
"IMDB Rating": 7.4,
|
|
317
|
+
"IMDB Votes": 38767
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"Title": "Casino Royale",
|
|
321
|
+
"US Gross": 22744718,
|
|
322
|
+
"Worldwide Gross": 41744718,
|
|
323
|
+
"US DVD Sales": null,
|
|
324
|
+
"Production Budget": 12000000,
|
|
325
|
+
"Release Date": "Apr 28 1967",
|
|
326
|
+
"MPAA Rating": null,
|
|
327
|
+
"Running Time min": null,
|
|
328
|
+
"Distributor": "Sony Pictures",
|
|
329
|
+
"Source": "Based on Book/Short Story",
|
|
330
|
+
"Major Genre": "Comedy",
|
|
331
|
+
"Creative Type": "Contemporary Fiction",
|
|
332
|
+
"Director": "John Huston",
|
|
333
|
+
"Rotten Tomatoes Rating": 30,
|
|
334
|
+
"IMDB Rating": 8,
|
|
335
|
+
"IMDB Votes": 172936
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"Title": "Camping Sauvage",
|
|
339
|
+
"US Gross": 3479302,
|
|
340
|
+
"Worldwide Gross": 3479302,
|
|
341
|
+
"US DVD Sales": null,
|
|
342
|
+
"Production Budget": 4600000,
|
|
343
|
+
"Release Date": "Jul 16 2004",
|
|
344
|
+
"MPAA Rating": "Not Rated",
|
|
345
|
+
"Running Time min": null,
|
|
346
|
+
"Distributor": "Alliance",
|
|
347
|
+
"Source": "Original Screenplay",
|
|
348
|
+
"Major Genre": "Comedy",
|
|
349
|
+
"Creative Type": "Contemporary Fiction",
|
|
350
|
+
"Director": null,
|
|
351
|
+
"Rotten Tomatoes Rating": null,
|
|
352
|
+
"IMDB Rating": 6,
|
|
353
|
+
"IMDB Votes": 378
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"Title": "The Cotton Club",
|
|
357
|
+
"US Gross": 25928721,
|
|
358
|
+
"Worldwide Gross": 25928721,
|
|
359
|
+
"US DVD Sales": null,
|
|
360
|
+
"Production Budget": 48000000,
|
|
361
|
+
"Release Date": "Dec 14 1984",
|
|
362
|
+
"MPAA Rating": null,
|
|
363
|
+
"Running Time min": null,
|
|
364
|
+
"Distributor": "Orion Pictures",
|
|
365
|
+
"Source": "Original Screenplay",
|
|
366
|
+
"Major Genre": "Drama",
|
|
367
|
+
"Creative Type": "Historical Fiction",
|
|
368
|
+
"Director": "Francis Ford Coppola",
|
|
369
|
+
"Rotten Tomatoes Rating": 74,
|
|
370
|
+
"IMDB Rating": 6.3,
|
|
371
|
+
"IMDB Votes": 6940
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"Title": "Crop Circles: Quest for Truth",
|
|
375
|
+
"US Gross": 0,
|
|
376
|
+
"Worldwide Gross": 0,
|
|
377
|
+
"US DVD Sales": null,
|
|
378
|
+
"Production Budget": 600000,
|
|
379
|
+
"Release Date": "Aug 23 2002",
|
|
380
|
+
"MPAA Rating": null,
|
|
381
|
+
"Running Time min": null,
|
|
382
|
+
"Distributor": null,
|
|
383
|
+
"Source": null,
|
|
384
|
+
"Major Genre": null,
|
|
385
|
+
"Creative Type": null,
|
|
386
|
+
"Director": null,
|
|
387
|
+
"Rotten Tomatoes Rating": 60,
|
|
388
|
+
"IMDB Rating": 7.1,
|
|
389
|
+
"IMDB Votes": 153
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"Title": "Close Encounters of the Third Kind",
|
|
393
|
+
"US Gross": 166000000,
|
|
394
|
+
"Worldwide Gross": 337700000,
|
|
395
|
+
"US DVD Sales": null,
|
|
396
|
+
"Production Budget": 20000000,
|
|
397
|
+
"Release Date": "Nov 16 1977",
|
|
398
|
+
"MPAA Rating": null,
|
|
399
|
+
"Running Time min": null,
|
|
400
|
+
"Distributor": "Sony Pictures",
|
|
401
|
+
"Source": "Original Screenplay",
|
|
402
|
+
"Major Genre": "Adventure",
|
|
403
|
+
"Creative Type": "Science Fiction",
|
|
404
|
+
"Director": "Steven Spielberg",
|
|
405
|
+
"Rotten Tomatoes Rating": 95,
|
|
406
|
+
"IMDB Rating": 7.8,
|
|
407
|
+
"IMDB Votes": 59049
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"Title": "The Cable Guy",
|
|
411
|
+
"US Gross": 60240295,
|
|
412
|
+
"Worldwide Gross": 102825796,
|
|
413
|
+
"US DVD Sales": null,
|
|
414
|
+
"Production Budget": 47000000,
|
|
415
|
+
"Release Date": "Jun 14 1996",
|
|
416
|
+
"MPAA Rating": "PG-13",
|
|
417
|
+
"Running Time min": 95,
|
|
418
|
+
"Distributor": "Sony Pictures",
|
|
419
|
+
"Source": "Original Screenplay",
|
|
420
|
+
"Major Genre": "Comedy",
|
|
421
|
+
"Creative Type": "Contemporary Fiction",
|
|
422
|
+
"Director": "Ben Stiller",
|
|
423
|
+
"Rotten Tomatoes Rating": 52,
|
|
424
|
+
"IMDB Rating": 5.8,
|
|
425
|
+
"IMDB Votes": 51109
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"Title": "Chocolate: Deep Dark Secrets",
|
|
429
|
+
"US Gross": 49000,
|
|
430
|
+
"Worldwide Gross": 1549000,
|
|
431
|
+
"US DVD Sales": null,
|
|
432
|
+
"Production Budget": 1000000,
|
|
433
|
+
"Release Date": "Sep 16 2005",
|
|
434
|
+
"MPAA Rating": "Not Rated",
|
|
435
|
+
"Running Time min": null,
|
|
436
|
+
"Distributor": "Eros Entertainment",
|
|
437
|
+
"Source": "Original Screenplay",
|
|
438
|
+
"Major Genre": "Thriller/Suspense",
|
|
439
|
+
"Creative Type": "Contemporary Fiction",
|
|
440
|
+
"Director": null,
|
|
441
|
+
"Rotten Tomatoes Rating": null,
|
|
442
|
+
"IMDB Rating": 4.6,
|
|
443
|
+
"IMDB Votes": 527
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"Title": "Child's Play",
|
|
447
|
+
"US Gross": 33244684,
|
|
448
|
+
"Worldwide Gross": 44196684,
|
|
449
|
+
"US DVD Sales": null,
|
|
450
|
+
"Production Budget": 9000000,
|
|
451
|
+
"Release Date": "Nov 09 1988",
|
|
452
|
+
"MPAA Rating": null,
|
|
453
|
+
"Running Time min": null,
|
|
454
|
+
"Distributor": "United Artists",
|
|
455
|
+
"Source": "Original Screenplay",
|
|
456
|
+
"Major Genre": "Horror",
|
|
457
|
+
"Creative Type": "Fantasy",
|
|
458
|
+
"Director": null,
|
|
459
|
+
"Rotten Tomatoes Rating": 70,
|
|
460
|
+
"IMDB Rating": 6.3,
|
|
461
|
+
"IMDB Votes": 16165
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"Title": "Child's Play 2",
|
|
465
|
+
"US Gross": 26904572,
|
|
466
|
+
"Worldwide Gross": 34166572,
|
|
467
|
+
"US DVD Sales": null,
|
|
468
|
+
"Production Budget": 13000000,
|
|
469
|
+
"Release Date": "Nov 09 1990",
|
|
470
|
+
"MPAA Rating": null,
|
|
471
|
+
"Running Time min": null,
|
|
472
|
+
"Distributor": "Universal",
|
|
473
|
+
"Source": "Original Screenplay",
|
|
474
|
+
"Major Genre": "Horror",
|
|
475
|
+
"Creative Type": "Fantasy",
|
|
476
|
+
"Director": null,
|
|
477
|
+
"Rotten Tomatoes Rating": 38,
|
|
478
|
+
"IMDB Rating": 5.1,
|
|
479
|
+
"IMDB Votes": 8666
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"Title": "Chain Reaction",
|
|
483
|
+
"US Gross": 21226204,
|
|
484
|
+
"Worldwide Gross": 60209334,
|
|
485
|
+
"US DVD Sales": null,
|
|
486
|
+
"Production Budget": 55000000,
|
|
487
|
+
"Release Date": "Aug 02 1996",
|
|
488
|
+
"MPAA Rating": "PG-13",
|
|
489
|
+
"Running Time min": 106,
|
|
490
|
+
"Distributor": "20th Century Fox",
|
|
491
|
+
"Source": "Original Screenplay",
|
|
492
|
+
"Major Genre": "Action",
|
|
493
|
+
"Creative Type": "Contemporary Fiction",
|
|
494
|
+
"Director": "Andrew Davis",
|
|
495
|
+
"Rotten Tomatoes Rating": 13,
|
|
496
|
+
"IMDB Rating": 5.2,
|
|
497
|
+
"IMDB Votes": 15817
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"Title": "Charly",
|
|
501
|
+
"US Gross": 814666,
|
|
502
|
+
"Worldwide Gross": 814666,
|
|
503
|
+
"US DVD Sales": null,
|
|
504
|
+
"Production Budget": 950000,
|
|
505
|
+
"Release Date": "Sep 27 2002",
|
|
506
|
+
"MPAA Rating": "PG",
|
|
507
|
+
"Running Time min": null,
|
|
508
|
+
"Distributor": "Excel Entertainment",
|
|
509
|
+
"Source": "Based on Book/Short Story",
|
|
510
|
+
"Major Genre": "Drama",
|
|
511
|
+
"Creative Type": "Contemporary Fiction",
|
|
512
|
+
"Director": null,
|
|
513
|
+
"Rotten Tomatoes Rating": null,
|
|
514
|
+
"IMDB Rating": 5.8,
|
|
515
|
+
"IMDB Votes": 60
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"Title": "Chariots of Fire",
|
|
519
|
+
"US Gross": 57159946,
|
|
520
|
+
"Worldwide Gross": 57159946,
|
|
521
|
+
"US DVD Sales": null,
|
|
522
|
+
"Production Budget": 5500000,
|
|
523
|
+
"Release Date": "Sep 25 1981",
|
|
524
|
+
"MPAA Rating": null,
|
|
525
|
+
"Running Time min": null,
|
|
526
|
+
"Distributor": "Sony Pictures",
|
|
527
|
+
"Source": "Based on Real Life Events",
|
|
528
|
+
"Major Genre": "Drama",
|
|
529
|
+
"Creative Type": "Dramatization",
|
|
530
|
+
"Director": "Hugh Hudson",
|
|
531
|
+
"Rotten Tomatoes Rating": 86,
|
|
532
|
+
"IMDB Rating": 7.3,
|
|
533
|
+
"IMDB Votes": 16138
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"Title": "A Christmas Story",
|
|
537
|
+
"US Gross": 19294144,
|
|
538
|
+
"Worldwide Gross": 19294144,
|
|
539
|
+
"US DVD Sales": null,
|
|
540
|
+
"Production Budget": 3250000,
|
|
541
|
+
"Release Date": "Nov 18 1983",
|
|
542
|
+
"MPAA Rating": "PG",
|
|
543
|
+
"Running Time min": null,
|
|
544
|
+
"Distributor": "MGM",
|
|
545
|
+
"Source": "Based on Book/Short Story",
|
|
546
|
+
"Major Genre": "Comedy",
|
|
547
|
+
"Creative Type": "Historical Fiction",
|
|
548
|
+
"Director": null,
|
|
549
|
+
"Rotten Tomatoes Rating": 88,
|
|
550
|
+
"IMDB Rating": 8,
|
|
551
|
+
"IMDB Votes": 51757
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"Title": "Cat on a Hot Tin Roof",
|
|
555
|
+
"US Gross": 17570324,
|
|
556
|
+
"Worldwide Gross": 17570324,
|
|
557
|
+
"US DVD Sales": null,
|
|
558
|
+
"Production Budget": 3000000,
|
|
559
|
+
"Release Date": "Sep 20 1958",
|
|
560
|
+
"MPAA Rating": null,
|
|
561
|
+
"Running Time min": null,
|
|
562
|
+
"Distributor": "MGM",
|
|
563
|
+
"Source": "Based on Play",
|
|
564
|
+
"Major Genre": "Drama",
|
|
565
|
+
"Creative Type": "Contemporary Fiction",
|
|
566
|
+
"Director": "Richard Brooks",
|
|
567
|
+
"Rotten Tomatoes Rating": 100,
|
|
568
|
+
"IMDB Rating": 8,
|
|
569
|
+
"IMDB Votes": 14540
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"Title": "C.H.U.D.",
|
|
573
|
+
"US Gross": 4700000,
|
|
574
|
+
"Worldwide Gross": 4700000,
|
|
575
|
+
"US DVD Sales": null,
|
|
576
|
+
"Production Budget": 1250000,
|
|
577
|
+
"Release Date": "Aug 31 1984",
|
|
578
|
+
"MPAA Rating": null,
|
|
579
|
+
"Running Time min": null,
|
|
580
|
+
"Distributor": "New World",
|
|
581
|
+
"Source": "Original Screenplay",
|
|
582
|
+
"Major Genre": "Horror",
|
|
583
|
+
"Creative Type": "Fantasy",
|
|
584
|
+
"Director": null,
|
|
585
|
+
"Rotten Tomatoes Rating": null,
|
|
586
|
+
"IMDB Rating": 5,
|
|
587
|
+
"IMDB Votes": 2806
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
"Title": "Charge of the Light Brigade, The",
|
|
591
|
+
"US Gross": 0,
|
|
592
|
+
"Worldwide Gross": 0,
|
|
593
|
+
"US DVD Sales": null,
|
|
594
|
+
"Production Budget": 1200000,
|
|
595
|
+
"Release Date": "Oct 20 2036",
|
|
596
|
+
"MPAA Rating": null,
|
|
597
|
+
"Running Time min": null,
|
|
598
|
+
"Distributor": "Warner Bros.",
|
|
599
|
+
"Source": "Based on Real Life Events",
|
|
600
|
+
"Major Genre": "Action",
|
|
601
|
+
"Creative Type": "Dramatization",
|
|
602
|
+
"Director": "Michael Curtiz",
|
|
603
|
+
"Rotten Tomatoes Rating": null,
|
|
604
|
+
"IMDB Rating": null,
|
|
605
|
+
"IMDB Votes": null
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"Title": "Crooklyn",
|
|
609
|
+
"US Gross": 13024170,
|
|
610
|
+
"Worldwide Gross": 13024170,
|
|
611
|
+
"US DVD Sales": null,
|
|
612
|
+
"Production Budget": 14000000,
|
|
613
|
+
"Release Date": "May 13 1994",
|
|
614
|
+
"MPAA Rating": "PG-13",
|
|
615
|
+
"Running Time min": null,
|
|
616
|
+
"Distributor": "Universal",
|
|
617
|
+
"Source": "Original Screenplay",
|
|
618
|
+
"Major Genre": "Comedy",
|
|
619
|
+
"Creative Type": "Historical Fiction",
|
|
620
|
+
"Director": "Spike Lee",
|
|
621
|
+
"Rotten Tomatoes Rating": 75,
|
|
622
|
+
"IMDB Rating": 6.5,
|
|
623
|
+
"IMDB Votes": 3137
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"Title": "Festen",
|
|
627
|
+
"US Gross": 1647780,
|
|
628
|
+
"Worldwide Gross": 1647780,
|
|
629
|
+
"US DVD Sales": null,
|
|
630
|
+
"Production Budget": 1300000,
|
|
631
|
+
"Release Date": "Oct 09 1998",
|
|
632
|
+
"MPAA Rating": "R",
|
|
633
|
+
"Running Time min": null,
|
|
634
|
+
"Distributor": "October Films",
|
|
635
|
+
"Source": "Original Screenplay",
|
|
636
|
+
"Major Genre": "Comedy",
|
|
637
|
+
"Creative Type": "Contemporary Fiction",
|
|
638
|
+
"Director": "Thomas Vinterberg",
|
|
639
|
+
"Rotten Tomatoes Rating": null,
|
|
640
|
+
"IMDB Rating": 8.1,
|
|
641
|
+
"IMDB Votes": 26607
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"Title": "Cleopatra",
|
|
645
|
+
"US Gross": 48000000,
|
|
646
|
+
"Worldwide Gross": 62000000,
|
|
647
|
+
"US DVD Sales": null,
|
|
648
|
+
"Production Budget": 36000000,
|
|
649
|
+
"Release Date": "Jun 12 1963",
|
|
650
|
+
"MPAA Rating": null,
|
|
651
|
+
"Running Time min": null,
|
|
652
|
+
"Distributor": "20th Century Fox",
|
|
653
|
+
"Source": "Based on Real Life Events",
|
|
654
|
+
"Major Genre": "Drama",
|
|
655
|
+
"Creative Type": "Dramatization",
|
|
656
|
+
"Director": null,
|
|
657
|
+
"Rotten Tomatoes Rating": 40,
|
|
658
|
+
"IMDB Rating": 6.8,
|
|
659
|
+
"IMDB Votes": 7870
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"Title": "Cliffhanger",
|
|
663
|
+
"US Gross": 84049211,
|
|
664
|
+
"Worldwide Gross": 255000000,
|
|
665
|
+
"US DVD Sales": null,
|
|
666
|
+
"Production Budget": 65000000,
|
|
667
|
+
"Release Date": "May 28 1993",
|
|
668
|
+
"MPAA Rating": null,
|
|
669
|
+
"Running Time min": null,
|
|
670
|
+
"Distributor": "Sony Pictures",
|
|
671
|
+
"Source": "Original Screenplay",
|
|
672
|
+
"Major Genre": "Action",
|
|
673
|
+
"Creative Type": "Contemporary Fiction",
|
|
674
|
+
"Director": "Renny Harlin",
|
|
675
|
+
"Rotten Tomatoes Rating": 82,
|
|
676
|
+
"IMDB Rating": 6.2,
|
|
677
|
+
"IMDB Votes": 34447
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"Title": "The Californians",
|
|
681
|
+
"US Gross": 4134,
|
|
682
|
+
"Worldwide Gross": 4134,
|
|
683
|
+
"US DVD Sales": null,
|
|
684
|
+
"Production Budget": 500000,
|
|
685
|
+
"Release Date": "Oct 21 2005",
|
|
686
|
+
"MPAA Rating": "PG",
|
|
687
|
+
"Running Time min": null,
|
|
688
|
+
"Distributor": "Fabrication Films",
|
|
689
|
+
"Source": "Original Screenplay",
|
|
690
|
+
"Major Genre": "Drama",
|
|
691
|
+
"Creative Type": "Contemporary Fiction",
|
|
692
|
+
"Director": null,
|
|
693
|
+
"Rotten Tomatoes Rating": null,
|
|
694
|
+
"IMDB Rating": 5.1,
|
|
695
|
+
"IMDB Votes": 226
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"Title": "The Client",
|
|
699
|
+
"US Gross": 92115211,
|
|
700
|
+
"Worldwide Gross": 117615211,
|
|
701
|
+
"US DVD Sales": null,
|
|
702
|
+
"Production Budget": 45000000,
|
|
703
|
+
"Release Date": "Jul 20 1994",
|
|
704
|
+
"MPAA Rating": "PG-13",
|
|
705
|
+
"Running Time min": null,
|
|
706
|
+
"Distributor": "Warner Bros.",
|
|
707
|
+
"Source": "Based on Book/Short Story",
|
|
708
|
+
"Major Genre": "Drama",
|
|
709
|
+
"Creative Type": "Contemporary Fiction",
|
|
710
|
+
"Director": "Joel Schumacher",
|
|
711
|
+
"Rotten Tomatoes Rating": 80,
|
|
712
|
+
"IMDB Rating": 6.5,
|
|
713
|
+
"IMDB Votes": 19299
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"Title": "The Calling",
|
|
717
|
+
"US Gross": 32092,
|
|
718
|
+
"Worldwide Gross": 32092,
|
|
719
|
+
"US DVD Sales": null,
|
|
720
|
+
"Production Budget": 160000,
|
|
721
|
+
"Release Date": "Mar 01 2002",
|
|
722
|
+
"MPAA Rating": "PG",
|
|
723
|
+
"Running Time min": null,
|
|
724
|
+
"Distributor": "Testimony Pictures",
|
|
725
|
+
"Source": "Original Screenplay",
|
|
726
|
+
"Major Genre": "Drama",
|
|
727
|
+
"Creative Type": "Contemporary Fiction",
|
|
728
|
+
"Director": "Michael C. Brown",
|
|
729
|
+
"Rotten Tomatoes Rating": null,
|
|
730
|
+
"IMDB Rating": 3.4,
|
|
731
|
+
"IMDB Votes": 1113
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"Title": "Clueless",
|
|
735
|
+
"US Gross": 56598476,
|
|
736
|
+
"Worldwide Gross": 56598476,
|
|
737
|
+
"US DVD Sales": null,
|
|
738
|
+
"Production Budget": 13700000,
|
|
739
|
+
"Release Date": "Jul 01 1995",
|
|
740
|
+
"MPAA Rating": "PG-13",
|
|
741
|
+
"Running Time min": null,
|
|
742
|
+
"Distributor": "Paramount Pictures",
|
|
743
|
+
"Source": "Based on Book/Short Story",
|
|
744
|
+
"Major Genre": "Comedy",
|
|
745
|
+
"Creative Type": "Contemporary Fiction",
|
|
746
|
+
"Director": "Amy Heckerling",
|
|
747
|
+
"Rotten Tomatoes Rating": 83,
|
|
748
|
+
"IMDB Rating": 6.7,
|
|
749
|
+
"IMDB Votes": 39055
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"Title": "The Color Purple",
|
|
753
|
+
"US Gross": 93589701,
|
|
754
|
+
"Worldwide Gross": 93589701,
|
|
755
|
+
"US DVD Sales": null,
|
|
756
|
+
"Production Budget": 15000000,
|
|
757
|
+
"Release Date": "Dec 18 1985",
|
|
758
|
+
"MPAA Rating": null,
|
|
759
|
+
"Running Time min": null,
|
|
760
|
+
"Distributor": "Warner Bros.",
|
|
761
|
+
"Source": "Based on Book/Short Story",
|
|
762
|
+
"Major Genre": "Drama",
|
|
763
|
+
"Creative Type": "Historical Fiction",
|
|
764
|
+
"Director": "Steven Spielberg",
|
|
765
|
+
"Rotten Tomatoes Rating": 88,
|
|
766
|
+
"IMDB Rating": 7.7,
|
|
767
|
+
"IMDB Votes": 26962
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"Title": "Clerks",
|
|
771
|
+
"US Gross": 3073428,
|
|
772
|
+
"Worldwide Gross": 3073428,
|
|
773
|
+
"US DVD Sales": null,
|
|
774
|
+
"Production Budget": 27000,
|
|
775
|
+
"Release Date": "Oct 19 1994",
|
|
776
|
+
"MPAA Rating": "R",
|
|
777
|
+
"Running Time min": null,
|
|
778
|
+
"Distributor": "Miramax",
|
|
779
|
+
"Source": "Original Screenplay",
|
|
780
|
+
"Major Genre": "Comedy",
|
|
781
|
+
"Creative Type": "Contemporary Fiction",
|
|
782
|
+
"Director": "Kevin Smith",
|
|
783
|
+
"Rotten Tomatoes Rating": 88,
|
|
784
|
+
"IMDB Rating": 7.9,
|
|
785
|
+
"IMDB Votes": 89991
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"Title": "Central do Brasil",
|
|
789
|
+
"US Gross": 5969553,
|
|
790
|
+
"Worldwide Gross": 17006158,
|
|
791
|
+
"US DVD Sales": null,
|
|
792
|
+
"Production Budget": 2900000,
|
|
793
|
+
"Release Date": "Nov 20 1998",
|
|
794
|
+
"MPAA Rating": "R",
|
|
795
|
+
"Running Time min": null,
|
|
796
|
+
"Distributor": "Sony Pictures Classics",
|
|
797
|
+
"Source": "Original Screenplay",
|
|
798
|
+
"Major Genre": "Drama",
|
|
799
|
+
"Creative Type": "Contemporary Fiction",
|
|
800
|
+
"Director": "Walter Salles",
|
|
801
|
+
"Rotten Tomatoes Rating": null,
|
|
802
|
+
"IMDB Rating": 8,
|
|
803
|
+
"IMDB Votes": 17343
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"Title": "Clash of the Titans",
|
|
807
|
+
"US Gross": 30000000,
|
|
808
|
+
"Worldwide Gross": 30000000,
|
|
809
|
+
"US DVD Sales": null,
|
|
810
|
+
"Production Budget": 15000000,
|
|
811
|
+
"Release Date": "Jun 12 1981",
|
|
812
|
+
"MPAA Rating": null,
|
|
813
|
+
"Running Time min": 108,
|
|
814
|
+
"Distributor": "MGM",
|
|
815
|
+
"Source": "Traditional/Legend/Fairytale",
|
|
816
|
+
"Major Genre": "Adventure",
|
|
817
|
+
"Creative Type": "Fantasy",
|
|
818
|
+
"Director": null,
|
|
819
|
+
"Rotten Tomatoes Rating": 65,
|
|
820
|
+
"IMDB Rating": 5.9,
|
|
821
|
+
"IMDB Votes": 45773
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"Title": "Clockwatchers",
|
|
825
|
+
"US Gross": 444354,
|
|
826
|
+
"Worldwide Gross": 444354,
|
|
827
|
+
"US DVD Sales": null,
|
|
828
|
+
"Production Budget": 2000000,
|
|
829
|
+
"Release Date": "May 15 1998",
|
|
830
|
+
"MPAA Rating": "PG-13",
|
|
831
|
+
"Running Time min": null,
|
|
832
|
+
"Distributor": "Artistic License",
|
|
833
|
+
"Source": null,
|
|
834
|
+
"Major Genre": null,
|
|
835
|
+
"Creative Type": null,
|
|
836
|
+
"Director": null,
|
|
837
|
+
"Rotten Tomatoes Rating": null,
|
|
838
|
+
"IMDB Rating": 5.9,
|
|
839
|
+
"IMDB Votes": 3171
|
|
840
|
+
},
|
|
841
|
+
{
|
|
842
|
+
"Title": "Commando",
|
|
843
|
+
"US Gross": 35073978,
|
|
844
|
+
"Worldwide Gross": 35073978,
|
|
845
|
+
"US DVD Sales": null,
|
|
846
|
+
"Production Budget": 10000000,
|
|
847
|
+
"Release Date": "Oct 04 1985",
|
|
848
|
+
"MPAA Rating": null,
|
|
849
|
+
"Running Time min": null,
|
|
850
|
+
"Distributor": "20th Century Fox",
|
|
851
|
+
"Source": "Original Screenplay",
|
|
852
|
+
"Major Genre": "Action",
|
|
853
|
+
"Creative Type": "Contemporary Fiction",
|
|
854
|
+
"Director": null,
|
|
855
|
+
"Rotten Tomatoes Rating": 71,
|
|
856
|
+
"IMDB Rating": 4.5,
|
|
857
|
+
"IMDB Votes": 49
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"Title": "The Color of Money",
|
|
861
|
+
"US Gross": 52293000,
|
|
862
|
+
"Worldwide Gross": 52293000,
|
|
863
|
+
"US DVD Sales": null,
|
|
864
|
+
"Production Budget": 10000000,
|
|
865
|
+
"Release Date": "Oct 17 1986",
|
|
866
|
+
"MPAA Rating": null,
|
|
867
|
+
"Running Time min": null,
|
|
868
|
+
"Distributor": "Walt Disney Pictures",
|
|
869
|
+
"Source": null,
|
|
870
|
+
"Major Genre": "Drama",
|
|
871
|
+
"Creative Type": "Contemporary Fiction",
|
|
872
|
+
"Director": "Martin Scorsese",
|
|
873
|
+
"Rotten Tomatoes Rating": 91,
|
|
874
|
+
"IMDB Rating": 6.9,
|
|
875
|
+
"IMDB Votes": 25824
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"Title": "Yu-Gi-Oh",
|
|
879
|
+
"US Gross": 19762690,
|
|
880
|
+
"Worldwide Gross": 28762690,
|
|
881
|
+
"US DVD Sales": null,
|
|
882
|
+
"Production Budget": 20000000,
|
|
883
|
+
"Release Date": "Aug 13 2004",
|
|
884
|
+
"MPAA Rating": "PG",
|
|
885
|
+
"Running Time min": null,
|
|
886
|
+
"Distributor": "Warner Bros.",
|
|
887
|
+
"Source": "Based on TV",
|
|
888
|
+
"Major Genre": "Adventure",
|
|
889
|
+
"Creative Type": "Kids Fiction",
|
|
890
|
+
"Director": null,
|
|
891
|
+
"Rotten Tomatoes Rating": null,
|
|
892
|
+
"IMDB Rating": null,
|
|
893
|
+
"IMDB Votes": null
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"Title": "The Young Unknowns",
|
|
897
|
+
"US Gross": 58163,
|
|
898
|
+
"Worldwide Gross": 58163,
|
|
899
|
+
"US DVD Sales": null,
|
|
900
|
+
"Production Budget": 800000,
|
|
901
|
+
"Release Date": "Apr 11 2003",
|
|
902
|
+
"MPAA Rating": "R",
|
|
903
|
+
"Running Time min": null,
|
|
904
|
+
"Distributor": "Indican Pictures",
|
|
905
|
+
"Source": null,
|
|
906
|
+
"Major Genre": null,
|
|
907
|
+
"Creative Type": null,
|
|
908
|
+
"Director": null,
|
|
909
|
+
"Rotten Tomatoes Rating": null,
|
|
910
|
+
"IMDB Rating": 4.5,
|
|
911
|
+
"IMDB Votes": 98
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"Title": "The Young Victoria",
|
|
915
|
+
"US Gross": 11001272,
|
|
916
|
+
"Worldwide Gross": 11001272,
|
|
917
|
+
"US DVD Sales": 3273039,
|
|
918
|
+
"Production Budget": 35000000,
|
|
919
|
+
"Release Date": "Dec 18 2009",
|
|
920
|
+
"MPAA Rating": "PG",
|
|
921
|
+
"Running Time min": null,
|
|
922
|
+
"Distributor": "Apparition",
|
|
923
|
+
"Source": "Based on Real Life Events",
|
|
924
|
+
"Major Genre": "Drama",
|
|
925
|
+
"Creative Type": "Dramatization",
|
|
926
|
+
"Director": null,
|
|
927
|
+
"Rotten Tomatoes Rating": 76,
|
|
928
|
+
"IMDB Rating": 7.2,
|
|
929
|
+
"IMDB Votes": 8408
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"Title": "Zathura",
|
|
933
|
+
"US Gross": 28045540,
|
|
934
|
+
"Worldwide Gross": 58545540,
|
|
935
|
+
"US DVD Sales": 22025352,
|
|
936
|
+
"Production Budget": 65000000,
|
|
937
|
+
"Release Date": "Nov 11 2005",
|
|
938
|
+
"MPAA Rating": "PG",
|
|
939
|
+
"Running Time min": 113,
|
|
940
|
+
"Distributor": "Sony Pictures",
|
|
941
|
+
"Source": "Based on Book/Short Story",
|
|
942
|
+
"Major Genre": "Adventure",
|
|
943
|
+
"Creative Type": "Fantasy",
|
|
944
|
+
"Director": "Jon Favreau",
|
|
945
|
+
"Rotten Tomatoes Rating": 75,
|
|
946
|
+
"IMDB Rating": null,
|
|
947
|
+
"IMDB Votes": null
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"Title": "Zero Effect",
|
|
951
|
+
"US Gross": 2080693,
|
|
952
|
+
"Worldwide Gross": 2080693,
|
|
953
|
+
"US DVD Sales": null,
|
|
954
|
+
"Production Budget": 5000000,
|
|
955
|
+
"Release Date": "Jan 30 1998",
|
|
956
|
+
"MPAA Rating": "R",
|
|
957
|
+
"Running Time min": null,
|
|
958
|
+
"Distributor": "Sony Pictures",
|
|
959
|
+
"Source": "Original Screenplay",
|
|
960
|
+
"Major Genre": "Comedy",
|
|
961
|
+
"Creative Type": "Contemporary Fiction",
|
|
962
|
+
"Director": null,
|
|
963
|
+
"Rotten Tomatoes Rating": 66,
|
|
964
|
+
"IMDB Rating": 6.8,
|
|
965
|
+
"IMDB Votes": 8489
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"Title": "Zoolander",
|
|
969
|
+
"US Gross": 45172250,
|
|
970
|
+
"Worldwide Gross": 60780981,
|
|
971
|
+
"US DVD Sales": null,
|
|
972
|
+
"Production Budget": 28000000,
|
|
973
|
+
"Release Date": "Sep 28 2001",
|
|
974
|
+
"MPAA Rating": "PG-13",
|
|
975
|
+
"Running Time min": 89,
|
|
976
|
+
"Distributor": "Paramount Pictures",
|
|
977
|
+
"Source": "Original Screenplay",
|
|
978
|
+
"Major Genre": "Comedy",
|
|
979
|
+
"Creative Type": "Contemporary Fiction",
|
|
980
|
+
"Director": "Ben Stiller",
|
|
981
|
+
"Rotten Tomatoes Rating": 62,
|
|
982
|
+
"IMDB Rating": 6.4,
|
|
983
|
+
"IMDB Votes": 69296
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"Title": "Zombieland",
|
|
987
|
+
"US Gross": 75590286,
|
|
988
|
+
"Worldwide Gross": 98690286,
|
|
989
|
+
"US DVD Sales": 28281155,
|
|
990
|
+
"Production Budget": 23600000,
|
|
991
|
+
"Release Date": "Oct 02 2009",
|
|
992
|
+
"MPAA Rating": "R",
|
|
993
|
+
"Running Time min": 87,
|
|
994
|
+
"Distributor": "Sony Pictures",
|
|
995
|
+
"Source": "Original Screenplay",
|
|
996
|
+
"Major Genre": "Comedy",
|
|
997
|
+
"Creative Type": "Fantasy",
|
|
998
|
+
"Director": "Ruben Fleischer",
|
|
999
|
+
"Rotten Tomatoes Rating": 89,
|
|
1000
|
+
"IMDB Rating": 7.8,
|
|
1001
|
+
"IMDB Votes": 81629
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"Title": "Zack and Miri Make a Porno",
|
|
1005
|
+
"US Gross": 31452765,
|
|
1006
|
+
"Worldwide Gross": 36851125,
|
|
1007
|
+
"US DVD Sales": 21240321,
|
|
1008
|
+
"Production Budget": 24000000,
|
|
1009
|
+
"Release Date": "Oct 31 2008",
|
|
1010
|
+
"MPAA Rating": "R",
|
|
1011
|
+
"Running Time min": 101,
|
|
1012
|
+
"Distributor": "Weinstein Co.",
|
|
1013
|
+
"Source": "Original Screenplay",
|
|
1014
|
+
"Major Genre": "Comedy",
|
|
1015
|
+
"Creative Type": "Contemporary Fiction",
|
|
1016
|
+
"Director": "Kevin Smith",
|
|
1017
|
+
"Rotten Tomatoes Rating": 65,
|
|
1018
|
+
"IMDB Rating": 7,
|
|
1019
|
+
"IMDB Votes": 55687
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"Title": "Zodiac",
|
|
1023
|
+
"US Gross": 33080084,
|
|
1024
|
+
"Worldwide Gross": 83080084,
|
|
1025
|
+
"US DVD Sales": 20983030,
|
|
1026
|
+
"Production Budget": 85000000,
|
|
1027
|
+
"Release Date": "Mar 02 2007",
|
|
1028
|
+
"MPAA Rating": "R",
|
|
1029
|
+
"Running Time min": 157,
|
|
1030
|
+
"Distributor": "Paramount Pictures",
|
|
1031
|
+
"Source": "Based on Book/Short Story",
|
|
1032
|
+
"Major Genre": "Thriller/Suspense",
|
|
1033
|
+
"Creative Type": "Dramatization",
|
|
1034
|
+
"Director": "David Fincher",
|
|
1035
|
+
"Rotten Tomatoes Rating": 89,
|
|
1036
|
+
"IMDB Rating": null,
|
|
1037
|
+
"IMDB Votes": null
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"Title": "Zoom",
|
|
1041
|
+
"US Gross": 11989328,
|
|
1042
|
+
"Worldwide Gross": 12506188,
|
|
1043
|
+
"US DVD Sales": 6679409,
|
|
1044
|
+
"Production Budget": 35000000,
|
|
1045
|
+
"Release Date": "Aug 11 2006",
|
|
1046
|
+
"MPAA Rating": "PG",
|
|
1047
|
+
"Running Time min": null,
|
|
1048
|
+
"Distributor": "Sony Pictures",
|
|
1049
|
+
"Source": "Based on Comic/Graphic Novel",
|
|
1050
|
+
"Major Genre": "Adventure",
|
|
1051
|
+
"Creative Type": "Super Hero",
|
|
1052
|
+
"Director": "Peter Hewitt",
|
|
1053
|
+
"Rotten Tomatoes Rating": 3,
|
|
1054
|
+
"IMDB Rating": 3.4,
|
|
1055
|
+
"IMDB Votes": 7424
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"Title": "The Legend of Zorro",
|
|
1059
|
+
"US Gross": 45575336,
|
|
1060
|
+
"Worldwide Gross": 141475336,
|
|
1061
|
+
"US DVD Sales": null,
|
|
1062
|
+
"Production Budget": 80000000,
|
|
1063
|
+
"Release Date": "Oct 28 2005",
|
|
1064
|
+
"MPAA Rating": "PG",
|
|
1065
|
+
"Running Time min": 129,
|
|
1066
|
+
"Distributor": "Sony Pictures",
|
|
1067
|
+
"Source": "Remake",
|
|
1068
|
+
"Major Genre": "Adventure",
|
|
1069
|
+
"Creative Type": "Historical Fiction",
|
|
1070
|
+
"Director": "Martin Campbell",
|
|
1071
|
+
"Rotten Tomatoes Rating": 26,
|
|
1072
|
+
"IMDB Rating": 5.7,
|
|
1073
|
+
"IMDB Votes": 21161
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"Title": "The Mask of Zorro",
|
|
1077
|
+
"US Gross": 93828745,
|
|
1078
|
+
"Worldwide Gross": 233700000,
|
|
1079
|
+
"US DVD Sales": null,
|
|
1080
|
+
"Production Budget": 65000000,
|
|
1081
|
+
"Release Date": "Jul 17 1998",
|
|
1082
|
+
"MPAA Rating": "PG-13",
|
|
1083
|
+
"Running Time min": 136,
|
|
1084
|
+
"Distributor": "Sony Pictures",
|
|
1085
|
+
"Source": "Remake",
|
|
1086
|
+
"Major Genre": "Adventure",
|
|
1087
|
+
"Creative Type": "Historical Fiction",
|
|
1088
|
+
"Director": "Martin Campbell",
|
|
1089
|
+
"Rotten Tomatoes Rating": 82,
|
|
1090
|
+
"IMDB Rating": 6.7,
|
|
1091
|
+
"IMDB Votes": 4789
|
|
1092
|
+
}
|
|
1093
|
+
],
|
|
1094
|
+
"transform": [
|
|
1095
|
+
{
|
|
1096
|
+
"type": "filter",
|
|
1097
|
+
"expr": "datum['Rotten Tomatoes Rating'] != null && datum['IMDB Rating'] != null"
|
|
1098
|
+
}
|
|
1099
|
+
]
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"name": "fit",
|
|
1103
|
+
"source": "movies",
|
|
1104
|
+
"transform": [
|
|
1105
|
+
{
|
|
1106
|
+
"type": "regression",
|
|
1107
|
+
"method": "quad",
|
|
1108
|
+
"x": "Rotten Tomatoes Rating",
|
|
1109
|
+
"y": "IMDB Rating",
|
|
1110
|
+
"as": ["u", "v"]
|
|
1111
|
+
}
|
|
1112
|
+
]
|
|
1113
|
+
}
|
|
1114
|
+
],
|
|
1115
|
+
|
|
1116
|
+
"scales": [
|
|
1117
|
+
{
|
|
1118
|
+
"name": "x",
|
|
1119
|
+
"type": "linear",
|
|
1120
|
+
"domain": { "data": "movies", "field": "Rotten Tomatoes Rating" },
|
|
1121
|
+
"range": "width"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"name": "y",
|
|
1125
|
+
"type": "linear",
|
|
1126
|
+
"domain": { "data": "movies", "field": "IMDB Rating" },
|
|
1127
|
+
"range": "height"
|
|
1128
|
+
}
|
|
1129
|
+
],
|
|
1130
|
+
|
|
1131
|
+
"axes": [
|
|
1132
|
+
{ "orient": "left", "scale": "y", "title": "IMDB Rating" },
|
|
1133
|
+
{ "orient": "bottom", "scale": "x", "title": "Rotten Tomatoes Rating" }
|
|
1134
|
+
],
|
|
1135
|
+
|
|
1136
|
+
"marks": [
|
|
1137
|
+
{
|
|
1138
|
+
"name": "points",
|
|
1139
|
+
"type": "symbol",
|
|
1140
|
+
"from": { "data": "movies" },
|
|
1141
|
+
"encode": {
|
|
1142
|
+
"enter": {
|
|
1143
|
+
"x": { "scale": "x", "field": "Rotten Tomatoes Rating" },
|
|
1144
|
+
"y": { "scale": "y", "field": "IMDB Rating" },
|
|
1145
|
+
"size": { "value": 25 },
|
|
1146
|
+
"fillOpacity": { "value": 0.5 }
|
|
1147
|
+
}
|
|
1148
|
+
}
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"name": "trend",
|
|
1152
|
+
"type": "line",
|
|
1153
|
+
"from": { "data": "fit" },
|
|
1154
|
+
"encode": {
|
|
1155
|
+
"enter": {
|
|
1156
|
+
"x": { "scale": "x", "field": "u" },
|
|
1157
|
+
"y": { "scale": "y", "field": "v" },
|
|
1158
|
+
"stroke": { "value": "firebrick" }
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"type": "text",
|
|
1164
|
+
"from": { "data": "points" },
|
|
1165
|
+
"encode": {
|
|
1166
|
+
"enter": {
|
|
1167
|
+
"text": { "field": "datum.Title" },
|
|
1168
|
+
"fontSize": { "value": 8 }
|
|
1169
|
+
}
|
|
1170
|
+
},
|
|
1171
|
+
"transform": [
|
|
1172
|
+
{
|
|
1173
|
+
"type": "label",
|
|
1174
|
+
"avoidMarks": ["trend"],
|
|
1175
|
+
"anchor": ["top", "bottom", "right", "left"],
|
|
1176
|
+
"offset": [1],
|
|
1177
|
+
"size": { "signal": "[width + 60, height]" }
|
|
1178
|
+
}
|
|
1179
|
+
]
|
|
1180
|
+
}
|
|
1181
|
+
]
|
|
1182
|
+
}
|