histlearn commited on
Commit
e65c802
·
verified ·
1 Parent(s): b7afc33

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +80 -76
app.py CHANGED
@@ -157,82 +157,86 @@ class ReportGenerator:
157
  return basic_stats
158
 
159
  def generate_graphs(self) -> List[plt.Figure]:
160
- plt.style.use('seaborn')
161
- graphs = []
162
-
163
- # 1. Distribuição por nível
164
- plt.figure(figsize=(12, 6))
165
- nivel_counts = self.data['Nível'].value_counts()
166
- colors = {'Avançado': '#2ecc71', 'Intermediário': '#f1c40f', 'Necessita Atenção': '#e74c3c'}
167
-
168
- bars = plt.bar(nivel_counts.index, nivel_counts.values)
169
- for i, bar in enumerate(bars):
170
- bar.set_color(colors[nivel_counts.index[i]])
171
- plt.text(bar.get_x() + bar.get_width()/2, bar.get_height(),
172
- str(nivel_counts.values[i]),
173
- ha='center', va='bottom')
174
-
175
- plt.title('Distribuição dos Alunos por Nível de Desempenho', pad=20, fontsize=12)
176
- plt.ylabel('Número de Alunos', labelpad=10)
177
- plt.grid(True, alpha=0.3)
178
- graphs.append(plt.gcf())
179
- plt.close()
180
-
181
- # 2. Top 10 alunos
182
- plt.figure(figsize=(12, 6))
183
- top_10 = self.data.head(10)
184
- bars = plt.barh(top_10['Nome do Aluno'], top_10['Acertos Absolutos'],
185
- color='#3498db')
186
-
187
- plt.title('Top 10 Alunos - Acertos Absolutos', pad=20, fontsize=12)
188
- plt.xlabel('Número de Acertos', labelpad=10)
189
-
190
- for i, bar in enumerate(bars):
191
- plt.text(bar.get_width(), bar.get_y() + bar.get_height()/2,
192
- f' {bar.get_width():.0f}',
193
- va='center')
194
-
195
- plt.grid(True, alpha=0.3)
196
- plt.tight_layout()
197
- graphs.append(plt.gcf())
198
- plt.close()
199
-
200
- # 3. Relação tempo x acertos
201
- plt.figure(figsize=(12, 6))
202
- for nivel in colors:
203
- mask = self.data['Nível'] == nivel
204
- tempo = pd.to_timedelta(self.data[mask]['Total Tempo']).dt.total_seconds() / 60
205
- plt.scatter(tempo, self.data[mask]['Acertos Absolutos'],
206
- c=colors[nivel], label=nivel, alpha=0.6, s=100)
207
-
208
- plt.title('Relação entre Tempo e Acertos por Nível', pad=20, fontsize=12)
209
- plt.xlabel('Tempo Total (minutos)', labelpad=10)
210
- plt.ylabel('Número de Acertos', labelpad=10)
211
- plt.legend()
212
- plt.grid(True, alpha=0.3)
213
- graphs.append(plt.gcf())
214
- plt.close()
215
-
216
- # 4. Relação Tarefas x Acertos com linha de tendência
217
- plt.figure(figsize=(12, 6))
218
- plt.scatter(self.data['Tarefas Completadas'], self.data['Acertos Absolutos'],
219
- color='#3498db', alpha=0.6, s=100)
220
-
221
- z = np.polyfit(self.data['Tarefas Completadas'], self.data['Acertos Absolutos'], 1)
222
- p = np.poly1d(z)
223
- x_range = np.linspace(self.data['Tarefas Completadas'].min(),
224
- self.data['Tarefas Completadas'].max(), 100)
225
- plt.plot(x_range, p(x_range), "r--", alpha=0.8, label='Tendência')
226
-
227
- plt.title('Relação entre Tarefas Completadas e Acertos', pad=20, fontsize=12)
228
- plt.xlabel('Número de Tarefas Completadas', labelpad=10)
229
- plt.ylabel('Número de Acertos', labelpad=10)
230
- plt.legend()
231
- plt.grid(True, alpha=0.3)
232
- graphs.append(plt.gcf())
233
- plt.close()
234
-
235
- return graphs
 
 
 
 
236
 
237
  def generate_pdf(self, output_path: str, graphs: List[plt.Figure]) -> None:
238
  """Gera relatório em PDF com análise detalhada."""
 
157
  return basic_stats
158
 
159
  def generate_graphs(self) -> List[plt.Figure]:
160
+ graphs = []
161
+
162
+ # Configurações globais de estilo
163
+ plt.rcParams['figure.figsize'] = [12, 6]
164
+ plt.rcParams['axes.grid'] = True
165
+ plt.rcParams['grid.alpha'] = 0.3
166
+ plt.rcParams['font.size'] = 10
167
+ plt.rcParams['axes.titlesize'] = 12
168
+ plt.rcParams['axes.titlepad'] = 20
169
+ plt.rcParams['axes.labelpad'] = 10
170
+
171
+ # 1. Distribuição por nível
172
+ plt.figure()
173
+ nivel_counts = self.data['Nível'].value_counts()
174
+ colors = {'Avançado': '#2ecc71', 'Intermediário': '#f1c40f', 'Necessita Atenção': '#e74c3c'}
175
+
176
+ bars = plt.bar(nivel_counts.index, nivel_counts.values)
177
+ for i, bar in enumerate(bars):
178
+ bar.set_color(colors[nivel_counts.index[i]])
179
+ plt.text(bar.get_x() + bar.get_width()/2, bar.get_height(),
180
+ str(nivel_counts.values[i]),
181
+ ha='center', va='bottom')
182
+
183
+ plt.title('Distribuição dos Alunos por Nível de Desempenho')
184
+ plt.ylabel('Número de Alunos')
185
+ graphs.append(plt.gcf())
186
+ plt.close()
187
+
188
+ # 2. Top 10 alunos
189
+ plt.figure()
190
+ top_10 = self.data.head(10)
191
+ bars = plt.barh(top_10['Nome do Aluno'], top_10['Acertos Absolutos'],
192
+ color='#3498db')
193
+
194
+ plt.title('Top 10 Alunos - Acertos Absolutos')
195
+ plt.xlabel('Número de Acertos')
196
+
197
+ for i, bar in enumerate(bars):
198
+ plt.text(bar.get_width(), bar.get_y() + bar.get_height()/2,
199
+ f' {bar.get_width():.0f}',
200
+ va='center')
201
+
202
+ plt.tight_layout()
203
+ graphs.append(plt.gcf())
204
+ plt.close()
205
+
206
+ # 3. Relação tempo x acertos
207
+ plt.figure()
208
+ for nivel in colors:
209
+ mask = self.data['Nível'] == nivel
210
+ tempo = pd.to_timedelta(self.data[mask]['Total Tempo']).dt.total_seconds() / 60
211
+ plt.scatter(tempo, self.data[mask]['Acertos Absolutos'],
212
+ c=colors[nivel], label=nivel, alpha=0.6, s=100)
213
+
214
+ plt.title('Relação entre Tempo e Acertos por Nível')
215
+ plt.xlabel('Tempo Total (minutos)')
216
+ plt.ylabel('Número de Acertos')
217
+ plt.legend()
218
+ graphs.append(plt.gcf())
219
+ plt.close()
220
+
221
+ # 4. Relação Tarefas x Acertos com linha de tendência
222
+ plt.figure()
223
+ plt.scatter(self.data['Tarefas Completadas'], self.data['Acertos Absolutos'],
224
+ color='#3498db', alpha=0.6, s=100)
225
+
226
+ z = np.polyfit(self.data['Tarefas Completadas'], self.data['Acertos Absolutos'], 1)
227
+ p = np.poly1d(z)
228
+ x_range = np.linspace(self.data['Tarefas Completadas'].min(),
229
+ self.data['Tarefas Completadas'].max(), 100)
230
+ plt.plot(x_range, p(x_range), "r--", alpha=0.8, label='Tendência')
231
+
232
+ plt.title('Relação entre Tarefas Completadas e Acertos')
233
+ plt.xlabel('Número de Tarefas Completadas')
234
+ plt.ylabel('Número de Acertos')
235
+ plt.legend()
236
+ graphs.append(plt.gcf())
237
+ plt.close()
238
+
239
+ return graphs
240
 
241
  def generate_pdf(self, output_path: str, graphs: List[plt.Figure]) -> None:
242
  """Gera relatório em PDF com análise detalhada."""