-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
577 lines (530 loc) · 31.2 KB
/
index.html
File metadata and controls
577 lines (530 loc) · 31.2 KB
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StatSim Pro - Simulador y Analizador Estadístico</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container">
<div class="header-content">
<div class="logo-group">
<h1 class="logo">StatSim<span class="accent">Pro</span></h1>
<span class="author-signature">por Joel Pasapera</span>
</div>
<nav class="nav">
<a href="#simulador" class="nav-link active">Simulador</a>
<a href="#analizador" class="nav-link">Analizador</a>
<a href="#ayuda" class="nav-link">Ayuda</a>
<a href="#contacto" class="nav-link">Contacto</a>
</nav>
</div>
</div>
</header>
<!-- Main Container -->
<main class="main">
<!-- Sección Simulador -->
<section id="simulador" class="section active">
<div class="container">
<div class="section-header">
<h2 class="section-title">Generador de Base de Datos</h2>
<p class="section-subtitle">Simula datos estadísticos controlados para tu investigación</p>
</div>
<!-- Configuración General -->
<div class="card">
<h3 class="card-title">Configuración General</h3>
<div class="form-group">
<label for="tamanoMuestra">Tamaño Muestral (N)</label>
<input type="number" id="tamanoMuestra" class="input" min="2" value="100" placeholder="Ej: 100">
<span class="help-text">Número de participantes/unidades de análisis</span>
</div>
</div>
<!-- Tabla I: Pruebas Aplicadas -->
<div class="card">
<div class="card-header">
<h3 class="card-title">I. Pruebas Aplicadas</h3>
<div style="display: flex; gap: 10px;">
<button id="btnImportarPruebas" class="btn btn-outline"
title="Importar configuración desde CSV">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M8 12V3M8 3L5 6M8 3L11 6M3 13H13" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" />
</svg>
Importar CSV
</button>
<button id="btnExportarPruebas" class="btn btn-outline"
title="Exportar configuración a CSV">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M8 3V12M8 12L5 9M8 12L11 9M3 13H13" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" />
</svg>
Exportar CSV
</button>
<button id="btnAgregarPrueba" class="btn btn-secondary">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M8 3V13M3 8H13" stroke="currentColor" stroke-width="2"
stroke-linecap="round" />
</svg>
Agregar Prueba
</button>
</div>
</div>
<div class="table-container">
<table class="table" id="tablaPruebas">
<thead>
<tr>
<th>Nombre de la Prueba</th>
<th>N° de Ítems</th>
<th>Media (M)</th>
<th>Desviación Estándar (DE)</th>
<th>Mín por Ítem</th>
<th>Máx por Ítem</th>
<th>Acciones</th>
</tr>
</thead>
<tbody id="bodyPruebas">
<!-- Fila inicial -->
<tr class="fila-prueba">
<td>
<input type="text" class="input input-sm" placeholder="Ej: WAIS-IV"
maxlength="100">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 60" min="1">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 100" step="0.01">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 15" step="0.01"
min="0.01">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 0" step="1">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 5" step="1">
</td>
<td>
<button class="btn-icon btn-delete" title="Eliminar">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path
d="M3 4H13M5 4V3C5 2.44772 5.44772 2 6 2H10C10.5523 2 11 2.44772 11 3V4M6 7V11M10 7V11M4 4H12L11.5 13C11.5 13.5523 11.0523 14 10.5 14H5.5C4.94772 14 4.5 13.5523 4.5 13L4 4Z"
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
</svg>
</button>
</td>
</tr>
</tbody>
</table>
</div>
<p class="help-text" style="margin-top: 0.5rem;">
<strong>Mín/Máx por Ítem:</strong> Define el rango de valores posibles para cada ítem individual
(Ej: escala Likert 0-5, 1-7, etc.). Si se deja vacío, se estimará automáticamente.
</p>
</div>
<!-- Tabla II: Datos Sociodemográficos -->
<div class="card">
<div class="card-header">
<h3 class="card-title">II. Datos Sociodemográficos</h3>
<div style="display: flex; gap: 10px;">
<button id="btnImportarSocio" class="btn btn-outline"
title="Importar configuración desde CSV">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M8 12V3M8 3L5 6M8 3L11 6M3 13H13" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" />
</svg>
Importar CSV
</button>
<button id="btnExportarSocio" class="btn btn-outline" title="Exportar configuración a CSV">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M8 3V12M8 12L5 9M8 12L11 9M3 13H13" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" />
</svg>
Exportar CSV
</button>
<button id="btnAgregarSocio" class="btn btn-secondary">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path d="M8 3V13M3 8H13" stroke="currentColor" stroke-width="2"
stroke-linecap="round" />
</svg>
Agregar Variable
</button>
</div>
</div>
<div class="table-container">
<table class="table" id="tablaSocio">
<thead>
<tr>
<th>Categoría</th>
<th>Promedio</th>
<th>Desviación Estándar</th>
<th>Mínimo</th>
<th>Máximo</th>
<th>N° Decimales</th>
<th>Acciones</th>
</tr>
</thead>
<tbody id="bodySocio">
<!-- Fila inicial -->
<tr class="fila-socio">
<td>
<input type="text" class="input input-sm" placeholder="Ej: Edad">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 20" step="0.01">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 2.5" step="0.01"
min="0.01">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 15" step="0.01">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 25" step="0.01">
</td>
<td>
<input type="number" class="input input-sm" placeholder="Ej: 2" min="0" max="4"
value="2">
</td>
<td>
<button class="btn-icon btn-delete" title="Eliminar">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<path
d="M3 4H13M5 4V3C5 2.44772 5.44772 2 6 2H10C10.5523 2 11 2.44772 11 3V4M6 7V11M10 7V11M4 4H12L11.5 13C11.5 13.5523 11.0523 14 10.5 14H5.5C4.94772 14 4.5 13.5523 4.5 13L4 4Z"
stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />
</svg>
</button>
</td>
</tr>
</tbody>
</table>
</div>
<p class="help-text" style="margin-top: 0.5rem;">
<strong>Mín/Máx:</strong> Rango de valores posibles. <strong>Decimales:</strong> Precisión del
valor (0-4 decimales). Si se deja vacío Mín/Máx, no se aplicarán límites.
</p>
</div>
<!-- Botones de Acción -->
<div class="actions-bar">
<button id="btnGenerar" class="btn btn-primary btn-lg">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
<path d="M10 3V17M10 17L6 13M10 17L14 13" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" />
</svg>
Generar Base de Datos
</button>
<button id="btnDescargarCSV" class="btn btn-outline" disabled>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
<path
d="M3 13L3 14C3 15.6569 4.34315 17 6 17L14 17C15.6569 17 17 15.6569 17 14L17 13M10 3L10 13M10 13L7 10M10 13L13 10"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
Descargar CSV
</button>
</div>
<!-- Preview de Datos Generados -->
<div id="previewContainer" class="card" style="display: none;">
<h3 class="card-title">Vista Previa de Datos Generados</h3>
<div class="stats-grid">
<div class="stat-card">
<span class="stat-label">Participantes</span>
<span class="stat-value" id="statParticipantes">0</span>
</div>
<div class="stat-card">
<span class="stat-label">Variables</span>
<span class="stat-value" id="statVariables">0</span>
</div>
<div class="stat-card">
<span class="stat-label">Pruebas</span>
<span class="stat-value" id="statPruebas">0</span>
</div>
</div>
<div class="table-scroll">
<table class="table table-preview" id="tablaPreview">
<thead id="previewHead"></thead>
<tbody id="previewBody"></tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Sección Analizador -->
<section id="analizador" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Analizador Estadístico</h2>
<p class="section-subtitle">Análisis de normalidad y correlación al estilo SPSS</p>
</div>
<!-- Cargar Datos -->
<div class="card">
<h3 class="card-title">Cargar Datos</h3>
<div class="upload-area">
<div class="upload-options">
<button id="btnUsarGenerados" class="btn btn-outline" disabled>
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
<path
d="M9 3H6C4.89543 3 4 3.89543 4 5V15C4 16.1046 4.89543 17 6 17H14C15.1046 17 16 16.1046 16 15V8M9 3L16 10M9 3V8C9 9.10457 9.89543 10 11 10H16"
stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
Usar Datos Generados
</button>
<span class="divider-text">o</span>
<label for="fileInput" class="btn btn-primary">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
<path
d="M10 13V3M10 3L7 6M10 3L13 6M3 13V14C3 15.6569 4.34315 17 6 17H14C15.6569 17 17 15.6569 17 14V13"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" />
</svg>
Subir Archivo CSV
</label>
<input type="file" id="fileInput" accept=".csv" style="display: none;">
</div>
</div>
</div>
<!-- Configuración de Investigación -->
<div class="card">
<h3 class="card-title">1. Configuración de la Investigación</h3>
<div class="form-row">
<div class="form-group">
<label for="unidadAnalisis">Unidad de Análisis</label>
<input type="text" id="unidadAnalisis" class="input"
placeholder="Ej: adolescentes, estudiantes, adultos">
<span class="help-text">Población o grupo de estudio</span>
</div>
<div class="form-group">
<label for="lugarContexto">Lugar/Contexto</label>
<input type="text" id="lugarContexto" class="input"
placeholder="Ej: Lima Metropolitana, Región Cusco">
<span class="help-text">Ubicación geográfica o contexto del estudio</span>
</div>
</div>
</div>
<!-- Configuración de Dimensiones -->
<div class="card">
<h3 class="card-title">2. Configuración de Dimensiones (Opcional)</h3>
<p class="help-text" style="margin-bottom: 1rem;">
<strong>Formato:</strong>
<code>NombreDimensión:Item1,Item2,Item3;OtraDimensión:Item4,Item5</code><br>
<strong>Ejemplo:</strong> <code>Atención:W1,W2,W3;Memoria:W4,W5,W6</code>
</p>
<div class="form-row">
<div class="form-group">
<label for="dimensionesVar1">Dimensiones Variable 1</label>
<input type="text" id="dimensionesVar1" class="input"
placeholder="Ej: Dim1:Item1,Item2;Dim2:Item3,Item4">
</div>
<div class="form-group">
<label for="dimensionesVar2">Dimensiones Variable 2</label>
<input type="text" id="dimensionesVar2" class="input"
placeholder="Ej: Dim1:Item1,Item2;Dim2:Item3,Item4">
</div>
</div>
</div>
<!-- Datos Cargados -->
<div id="datosContainer" class="card" style="display: none;">
<h3 class="card-title">Datos Cargados</h3>
<div class="stats-grid">
<div class="stat-card">
<span class="stat-label">N</span>
<span class="stat-value" id="analisisN">0</span>
</div>
<div class="stat-card">
<span class="stat-label">Variables</span>
<span class="stat-value" id="analisisVars">0</span>
</div>
</div>
<div class="table-scroll">
<table class="table table-preview" id="tablaDatosAnalisis">
<thead id="analisisHead"></thead>
<tbody id="analisisBody"></tbody>
</table>
</div>
<p class="help-text" style="margin-top: 0.5rem;">
<strong>Aclaración:</strong> Verifique que todos los ítems inversos hayan sido recodificados a
puntaje directo. Para aclarar, un ítem directo es aquel cuyo puntaje más elevado contribuye a
una mayor presencia o nivel de la variable. Por el contrario, un ítem inverso es aquel cuyo
puntaje más alto contribuye a una menor presencia o nivel de la variable. La inclusión de ítems
inversos es una estrategia de diseño deliberada para controlar sesgos de respuesta
</p>
</div>
<!-- Selección de Variables -->
<div id="seleccionContainer" class="card" style="display: none;">
<h3 class="card-title">Análisis de Correlación</h3>
<div class="form-row">
<div class="form-group">
<label for="variable1">Variable 1</label>
<select id="variable1" class="input">
<option value="">Seleccionar variable...</option>
</select>
</div>
<div class="form-group">
<label for="variable2">Variable 2</label>
<select id="variable2" class="input">
<option value="">Seleccionar variable...</option>
</select>
</div>
</div>
<div class="form-group">
<label>Tipo de Prueba</label>
<div class="radio-group">
<label class="radio-label">
<input type="radio" name="tipoPrueba" value="bilateral" checked>
<span>Bilateral (2 colas)</span>
</label>
<label class="radio-label">
<input type="radio" name="tipoPrueba" value="unilateral">
<span>Unilateral (1 cola)</span>
</label>
</div>
</div>
<button id="btnAnalizar" class="btn btn-primary btn-lg">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
<circle cx="8" cy="8" r="5" stroke="currentColor" stroke-width="2" />
<path d="M12 12L17 17" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
</svg>
Ejecutar Análisis
</button>
</div>
<!-- Contenedores vacíos - el JS llenará todo -->
<!-- Marco Metodológico -->
<div id="marcoMetodologicoContainer" style="display: none;"></div>
<!-- Pruebas de normalidad -->
<div id="pruebasNormalidadContainer" style="display: none;"></div>
<!-- Resultados de análisis -->
<div id="resultadosCorrelacion" style="display: none;"></div>
<div id="resultadosDecision" style="display: none;"></div>
<div id="resultadosDiscusion" style="display: none;"></div>
<!-- Botón Descargar Resultados -->
<button id="btnDescargarResultados" class="btn btn-outline">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
<path
d="M3 13L3 14C3 15.6569 4.34315 17 6 17L14 17C15.6569 17 17 15.6569 17 14L17 13M10 3L10 13M10 13L7 10M10 13L13 10"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
Descargar Resultados
</button>
<!-- Sección de referencias bibliográficas: citar a sampieri por ejemplo -->
<div id="resultadosContainer" class="card" style="display: none;">
<h3 class="card-title">Referencias bibliográficas</h3>
</div>
</div>
</section>
<!-- Sección Ayuda -->
<section id="ayuda" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Ayuda y Documentación</h2>
<p class="section-subtitle">Guía de uso de StatSim Pro</p>
</div>
<div class="help-grid">
<div class="help-card">
<h3>Simulador de Datos</h3>
<p>Genera bases de datos estadísticos controlados siguiendo parámetros de media y desviación
estándar.</p>
</div>
<div class="help-card">
<h3>Análisis Estadístico</h3>
<p>Realiza pruebas de normalidad y correlación automáticamente siguiendo las reglas estadísticas
apropiadas.</p>
</div>
<div class="help-card">
<h3>Exportación</h3>
<p>Descarga tus datos en formato CSV y resultados en formato de texto para usar en tu
investigación.</p>
</div>
</div>
</div>
</section>
</main>
<!-- Sección Contacto -->
<section id="contacto" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Contacto y Redes Sociales</h2>
<p class="section-subtitle">Conéctate conmigo y sigue mi trabajo</p>
</div>
<div class="contact-grid">
<a href="https://www.facebook.com/joel.pasaperapinto.1" target="_blank" class="contact-card">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="icon">
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>
</svg>
<h3>Facebook</h3>
<p>Sígueme para novedades y artículos.</p>
</a>
<a href="https://www.instagram.com/joel.pasapera/" target="_blank" class="contact-card">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="icon">
<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect>
<path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path>
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>
</svg>
<h3>Instagram</h3>
<p>Contenido diario y un vistazo a mi vida profesional.</p>
</a>
<a href="https://www.youtube.com/@JoelPasapera" target="_blank" class="contact-card">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="icon">
<path
d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2A54.48 54.48 0 0 0 12 5a54.48 54.48 0 0 0-8.6.42 2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 2 12a29 29 0 0 0 .5 5.58 2.78 2.78 0 0 0 1.94 2 54.48 54.48 0 0 0 8.6.42 54.48 54.48 0 0 0 8.6-.42 2.78 2.78 0 0 0 1.94-2A29 29 0 0 0 22 12a29 29 0 0 0-.46-5.58z">
</path>
<polygon points="10 15 15 12 10 9 10 15"></polygon>
</svg>
<h3>YouTube</h3>
<p>Tutoriales de programación y análisis de datos en video.</p>
</a>
<a href="https://github.com/JoelPasapera" target="_blank" class="contact-card">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="icon">
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 3 5.07 5.07 0 0 0 18 3.5c-1.8 0-3.37 1.25-4.13 3.19A10.86 10.86 0 0 0 12 7c-4.37 0-6.15-2.23-7-3.19A5.07 5.07 0 0 0 3 3.5c-.77 0-1.55.51-1.74 1.27A5.44 5.44 0 0 0 2 10c0 4.41 3.3 5.61 6.44 7a3.37 3.37 0 0 0-.94 2.61V22">
</path>
</svg>
<h3>GitHub</h3>
<p>Revisa mis proyectos y contribuciones de código abierto.</p>
</a>
<a href="https://www.tiktok.com/@joelpasapera101" target="_blank" class="contact-card">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="icon">
<path d="M21 21h-3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"></path>
<path d="M10 21h-3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"></path>
<path d="M15 13H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1z"></path>
<path
d="M12 21v-4a1 1 0 0 0-1-1H7a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1z">
</path>
</svg>
<h3>TikTok</h3>
<p>Tips rápidos de tecnología y ciencia de datos.</p>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2025 StatSim Pro. Herramienta para simulación y análisis estadístico.</p>
</div>
</footer>
<!-- Toast para notificaciones -->
<div id="toast" class="toast"></div>
<!-- Inputs ocultos para importar CSV -->
<input type="file" id="importPruebasInput" accept=".csv" style="display: none;">
<input type="file" id="importSocioInput" accept=".csv" style="display: none;">
<!-- Scripts generador de datos -->
<script src="generador-datos.js"></script>
<!-- Cargar analizador principal -->
<script src="analizador-estadistico.js"></script>
<!-- Módulo de interpretaciones estadísticas -->
<script src="interpretaciones-estadisticas.js"></script>
<!-- Código de app.js -->
<script src="app.js"></script>
</body>
</html>