forked from unbytes/apc-endgame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
277 lines (241 loc) · 11.6 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
from dash import Dash, html, dcc, Input, Output
import plotly.express as px
import plotly.graph_objects as go
from box_office.graphic import box_office_graphic, asia_pacific, europe, middle_east_and_africa, north_america, south_america, asia_pacific_box_office
from mcu_comics.graphic import count90, label90, count10, label10, count20, label20, rating_counts, rating_labels
from movies_duration.graphic import movie_title_column, movie_duration_column, movies_duration, movies_name, phases_order, movie_phases
from dc_mcu.graphic import dc_wikia_dataframe, mcu_wikia_dataframe
from phases_budget.graphic import count_phase_one, count_phase_two, count_phase_three, count_phase_four
from phases_budget.graphic import phase_one_movies, phase_two_movies, phase_three_movies, phase_four_movies
from phases_budget.graphic import phase_one, phase_two, phase_three, phase_four
from utils.functions import get_column, unique_value_list
import sys
sys.path.append('./')
app = Dash(__name__)
server = app.server
app.layout = html.Main(children=[
html.Section(className='column-container', children=[
html.H1('Características dos personagens (Marvel e DC)'),
html.Div(className='column-container', children=[
html.H2('Cor do cabelo'),
html.Div(className='row-container', children=[
html.Label('Escolha o intervalo (Anos):'),
dcc.RangeSlider(min=1935, max=2013, marks=None, step=1, value=[1935, 2013],
id='HAIR-year', className='year-slider',
tooltip={"placement": "bottom", "always_visible": True})
]),
dcc.Graph(
id='HAIR-graph'
)
]),
html.Div(className='column-container', children=[
html.H2('Cor dos olhos'),
html.Div(className='row-container', children=[
html.Label('Escolha o intervalo (Anos):'),
dcc.RangeSlider(min=1935, max=2013, marks=None, step=1, value=[1935, 2013],
id='EYE-year', className='year-slider',
tooltip={"placement": "bottom", "always_visible": True})
]),
dcc.Graph(
id='EYE-graph'
)
])
]),
html.Section(className='column-container', children=[
html.H1(children='Fases do MCU'),
html.H2(children='Custos da Marvel por fase.'),
html.Div(className='row-container', children=[
html.Label(children='Escolha a fase da Marvel:'),
dcc.Dropdown(['Fase 1', 'Fase 2', 'Fase 3', 'Fase 4', 'Todas as Fases'],
'Todas as Fases', id='fases-ucm'),
]),
dcc.Graph(
id='movies-budget-graph'
)
]),
html.Section(className='column-container', children=[
html.H1(children='Classificação Etária das HQs'),
html.Div(className='row-container', children=[
html.Label(children='Escolha o período desejado:'),
dcc.Dropdown(['Todos os Anos', 'Anos 90', 'Anos 2000', 'Anos 2010'],
'Todos os Anos', id='classificacao-etaria'),
]),
dcc.Graph(
id='comics-rating-graph'
)
]),
html.Section(className='column-container', children=[
html.H1(children='Duração dos filmes da Marvel'),
html.Div(className='row-container', children=[
html.Label('Escolha o filtro de representatividade:'),
dcc.Dropdown(['Filmes', 'Por fases', 'Por Franquia'],
'Por Franquia ', id='movies-duration-dropdown'),
]),
dcc.Graph(
id="movies-duration-graph"
)
]),
html.Section(className='column-container', children=[
html.H1(children='Bilheteria dos filmes do MCU'),
html.H2(children='Esse gráfico indica a bilheteria de cada filme do MCU'),
dcc.Dropdown(['Ásia Pacífica', 'Europa', 'Oriente Médio e África', 'América do Norte', 'América do Sul', 'Todas as regiões do planeta'],
value='Todas as regiões do planeta', id='box-office-dropdown'),
dcc.Graph(
id='box-office-graphic',
)
])
])
YEAR_COLUMN_TITLE = 'YEAR'
def create_comparative_graphic_column_based(first_df, second_df, first_name, second_name, column_title):
"""Gera um gráfico comparativo entre uma coluna de dois DataFrames
Args:
first_df: Primeiro DataFrame a ser utilizado
second_df: Segundo DataFrame a ser utilizado
first_name: Nome do primeiro DataFrame
second_name: Nome do segundo DataFrame
column_title: Título da coluna em comum entre os DataFrames
Return:
Gráfico comparativo entre a coluna dos DataFrames
"""
values_first_column = get_column(first_df, column_title)
values_second_column = get_column(second_df, column_title)
years_first_column = get_column(first_df, YEAR_COLUMN_TITLE)
years_second_column = get_column(second_df, YEAR_COLUMN_TITLE)
first_values = unique_value_list(values_first_column)
second_values = unique_value_list(values_second_column)
values_in_common = list()
# Percorre uma das listas de valores
for value in first_values:
# Verifica se um valor está na outra lista e não está na values_in_common
if value in second_values and value not in values_in_common:
# Adiciona o valor em comum
values_in_common.append(value)
@app.callback(
Output(component_id=f'{column_title}-graph',
component_property='figure'),
Input(component_id=f'{column_title}-year', component_property='value')
)
def update_comparative_graphic(years_range):
first_count, second_count = list(), list()
year_min, year_max = years_range
iteration = [
[values_first_column, years_first_column, first_count],
[values_second_column, years_second_column, second_count]
]
for values_column, years_column, count_list in iteration:
for value in values_in_common:
value_count = 0
# Conta quantas vezes um valor aparece na coluna
for row_value, row_year in zip(values_column, years_column):
if row_value == value and year_max >= row_year >= year_min:
value_count += 1
# Adiciona contagem de um valor
count_list.append(value_count)
# Retorna uma lista com a contagem
graphic_figure = go.Figure([
go.Bar(name=first_name, x=values_in_common,
y=first_count, marker={'color': '#4C9B82'}),
go.Bar(name=second_name, x=values_in_common,
y=second_count, marker={'color': '#0F8BAE'})
])
graphic_figure.update_layout(template='plotly_dark', font={'size': 16})
return graphic_figure
HAIR_COLUMN_TITLE = 'HAIR'
EYE_COLUMN_TITLE = 'EYE'
create_comparative_graphic_column_based(
dc_wikia_dataframe, mcu_wikia_dataframe, 'DC', 'MCU', HAIR_COLUMN_TITLE)
create_comparative_graphic_column_based(
dc_wikia_dataframe, mcu_wikia_dataframe, 'DC', 'MCU', EYE_COLUMN_TITLE)
@app.callback(
Output('movies-budget-graph', 'figure'),
Input('fases-ucm', 'value')
)
def update_phases_graphic(value):
if value == "Todas as Fases":
fig = px.bar(x=["Fase 1", "Fase 2", "Fase 3", "Fase 4"], y=[count_phase_one, count_phase_two,
count_phase_three, count_phase_four], labels={'x': 'Fases do UCM', 'y': 'Custo em Bilhão'})
elif value == "Fase 1":
fig = px.bar(x=phase_one_movies, y=phase_one, labels={
'x': 'Filmes', 'y': 'Custo em Milhão'})
elif value == "Fase 2":
fig = px.bar(x=phase_two_movies, y=phase_two, labels={
'x': 'Filmes', 'y': 'Custo em Milhão'})
elif value == "Fase 3":
fig = px.bar(x=phase_three_movies, y=phase_three, labels={
'x': 'Filmes', 'y': 'Custo em Milhão'})
elif value == "Fase 4":
fig = px.bar(x=phase_four_movies, y=phase_four, labels={
'x': 'Filmes', 'y': 'Custo em Milhão'})
fig.update_traces(marker_color='#a408c7')
fig.update_layout(template='plotly_dark')
return fig
@app.callback(
Output('comics-rating-graph', 'figure'),
Input('classificacao-etaria', 'value')
)
def update_hq_rating_graphic(value):
if value == "Anos 90":
graphic = px.pie(values=count90, names=label90,
color_discrete_sequence=px.colors.sequential.Emrld)
ano = 'nos anos 90'
elif value == "Anos 2000":
graphic = px.pie(values=count10, names=label10,
color_discrete_sequence=px.colors.sequential.Emrld)
ano = 'nos anos 2000'
elif value == "Anos 2010":
graphic = px.pie(values=count20, names=label20,
color_discrete_sequence=px.colors.sequential.Emrld)
ano = 'nos anos 2010'
else:
graphic = px.pie(values=rating_counts, names=rating_labels,
color_discrete_sequence=px.colors.sequential.Emrld)
ano = ''
graphic.update_layout(
title_text=f'Porcetagem das classificações indicativas dos quadrinhos da Marvel {ano}', template='plotly_dark')
return graphic
@app.callback(
Output('movies-duration-graph', 'figure'),
Input('movies-duration-dropdown', 'value')
)
def update_movies_duration_graphic(value):
if value == 'Por fases':
graphic_figure = px.pie(names=phases_order, values=movie_phases,
color_discrete_sequence=px.colors.sequential.Emrld)
title = 'Representatividade de cada fase (min)'
elif value == 'Filmes':
graphic_figure = px.pie(names=movie_title_column, values=movie_duration_column,
color_discrete_sequence=px.colors.sequential.Emrld)
title = 'Representatividade dos filmes (min)'
else:
graphic_figure = px.pie(names=movies_name, values=movies_duration,
color_discrete_sequence=px.colors.sequential.Emrld)
title = 'Representatividade de cada franquia (min)'
graphic_figure.update_layout(title_text=title, template='plotly_dark')
return graphic_figure
@app.callback(
Output('box-office-graphic', 'figure'),
Input('box-office-dropdown', 'value')
)
def update_box_office_graphic(value):
if value == 'Todas as regiões do planeta':
fig = box_office_graphic
elif value == 'Ásia Pacífica':
fig = px.bar(x=asia_pacific_box_office.movie_title, y=asia_pacific, labels={
'x': 'Filmes do MCU', 'y': 'Bilheteria em milhão'})
elif value == 'Europa':
fig = px.bar(x=asia_pacific_box_office.movie_title, y=europe, labels={
'x': 'Filmes do MCU', 'y': 'Bilheteria em milhão'})
elif value == 'Oriente Médio e África':
fig = px.bar(x=asia_pacific_box_office.movie_title, y=middle_east_and_africa, labels={
'x': 'Filmes do MCU', 'y': 'Bilheteria em milhão'})
elif value == 'América do Norte':
fig = px.bar(x=asia_pacific_box_office.movie_title, y=north_america, labels={
'x': 'Filmes do MCU', 'y': 'Bilheteria em milhão'})
elif value == 'América do Sul':
fig = px.bar(x=asia_pacific_box_office.movie_title, y=south_america, labels={
'x': 'Filmes do MCU', 'y': 'Bilheteria em milhão'})
fig.update_traces(marker_color='#B11313', marker_opacity=0.9)
fig.update_layout(template='plotly_dark')
return fig
if __name__ == '__main__':
app.run_server(debug=True)