Skip to content

Commit 68a8eac

Browse files
committed
added: problems.es.ipynb file with problem in spanish
1 parent 42d6e9a commit 68a8eac

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

notebook/problems.es.ipynb

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "ac622319",
6+
"metadata": {},
7+
"source": [
8+
"# Problemas de Estadística Descriptica"
9+
]
10+
},
11+
{
12+
"cell_type": "markdown",
13+
"id": "5e0ab0d5",
14+
"metadata": {},
15+
"source": [
16+
"### Ejercicio 1\n",
17+
"\n",
18+
"Usaremos NumPy para obtener información y describir estadísticamente.\n",
19+
"\n",
20+
"- Generar un arreglo de 100 elementos que sigan una distribución normal.\n",
21+
"- Generar un arreglo de 100 elementos que sigan una distribución chi-cuadrado con 3 grados de libertad.\n",
22+
"- Calcular las métricas principales y las medidas estadísticas que mejor describan los dos vectores."
23+
]
24+
},
25+
{
26+
"cell_type": "code",
27+
"execution_count": 1,
28+
"id": "34720ab6",
29+
"metadata": {},
30+
"outputs": [],
31+
"source": [
32+
"# TODO"
33+
]
34+
},
35+
{
36+
"cell_type": "markdown",
37+
"id": "46c70c3d",
38+
"metadata": {},
39+
"source": [
40+
"### Ejercicio 2\n",
41+
"\n",
42+
"Escribe un programa en Python para calcular la desviación estándar de los siguientes datos:\n",
43+
"\n",
44+
"```py\n",
45+
"data = [4, 2, 5, 8, 6]\n",
46+
"```"
47+
]
48+
},
49+
{
50+
"cell_type": "code",
51+
"execution_count": 2,
52+
"id": "d590308e",
53+
"metadata": {},
54+
"outputs": [],
55+
"source": [
56+
"# TODO"
57+
]
58+
}
59+
],
60+
"metadata": {
61+
"interpreter": {
62+
"hash": "9248718ffe6ce6938b217e69dbcc175ea21f4c6b28a317e96c05334edae734bb"
63+
},
64+
"kernelspec": {
65+
"display_name": "Python 3.9.12 ('ML-BOOTCAMP')",
66+
"language": "python",
67+
"name": "python3"
68+
},
69+
"language_info": {
70+
"codemirror_mode": {
71+
"name": "ipython",
72+
"version": 3
73+
},
74+
"file_extension": ".py",
75+
"mimetype": "text/x-python",
76+
"name": "python",
77+
"nbconvert_exporter": "python",
78+
"pygments_lexer": "ipython3",
79+
"version": "3.11.4"
80+
}
81+
},
82+
"nbformat": 4,
83+
"nbformat_minor": 5
84+
}

0 commit comments

Comments
 (0)