diff --git a/_sources/notebooks/introduction-python/exercises.ipynb b/_sources/notebooks/introduction-python/exercises.ipynb index 7c08bab..15b4af8 100644 --- a/_sources/notebooks/introduction-python/exercises.ipynb +++ b/_sources/notebooks/introduction-python/exercises.ipynb @@ -63,7 +63,7 @@ "id": "j0bQ92RpJxJD", "outputId": "2da549f3-8e2c-4b63-b9f0-9112880bc556" }, - "execution_count": 4, + "execution_count": null, "outputs": [ { "output_type": "stream", @@ -92,7 +92,7 @@ "metadata": { "id": "3JgYpi4XIq-p" }, - "execution_count": 5, + "execution_count": null, "outputs": [] }, { @@ -122,7 +122,7 @@ "id": "31pMhyRxIlXk", "outputId": "cb4dd71e-316c-43ed-8c13-b418e82f4735" }, - "execution_count": 6, + "execution_count": null, "outputs": [ { "output_type": "execute_result", @@ -173,7 +173,7 @@ "base_uri": "https://localhost:8080/" } }, - "execution_count": 8, + "execution_count": null, "outputs": [ { "output_type": "stream", @@ -225,7 +225,7 @@ "base_uri": "https://localhost:8080/" } }, - "execution_count": 18, + "execution_count": null, "outputs": [ { "output_type": "execute_result", @@ -287,7 +287,7 @@ "metadata": { "id": "VuCGnWA0NI_n" }, - "execution_count": 22, + "execution_count": null, "outputs": [] }, { @@ -303,7 +303,7 @@ "height": 36 } }, - "execution_count": 23, + "execution_count": null, "outputs": [ { "output_type": "execute_result", @@ -346,6 +346,49 @@ "id": "WFflJSheU4-w" } }, + { + "cell_type": "code", + "source": [ + "import requests\n", + "\n", + "url = \"https://gutenberg.org/ebooks/2000.txt.utf-8\"\n", + "\n", + "book_request = requests.get(url)\n", + "book = book_request.text" + ], + "metadata": { + "id": "N4qyQK04Z-4X" + }, + "execution_count": 13, + "outputs": [] + }, + { + "cell_type": "code", + "source": [ + "book_processed = (\n", + " book\n", + " .replace(\"\\n\", \" \")\n", + " .replace(\"\\r\", \" \")\n", + " .replace(\"-\", \" \")\n", + ")\n", + "\n", + "words = book_processed.split(\" \")\n", + "words = [w.lower() for w in words if w != \"\"]\n", + "results = {}\n", + "for word in words:\n", + " if word in results:\n", + " results[word] += 1\n", + " else:\n", + " results[word] = 1\n", + "\n", + "results = sorted(results.items(), key=lambda item: item[1], reverse=True)[:100]" + ], + "metadata": { + "id": "nt1iEAvQdFYM" + }, + "execution_count": 42, + "outputs": [] + }, { "cell_type": "markdown", "source": [ diff --git a/notebooks/introduction-python/exercises.html b/notebooks/introduction-python/exercises.html index 1f02aaa..c7b0ecf 100644 --- a/notebooks/introduction-python/exercises.html +++ b/notebooks/introduction-python/exercises.html @@ -668,6 +668,41 @@

Ejercicios de Introducción a Pythoncount_words que devuelva un diccionario con las 50 palabras más frecuentes del libro que tenga como claves dichas palabras y como valor el número de apariciones.

+
+
+
import requests
+
+url = "https://gutenberg.org/ebooks/2000.txt.utf-8"
+
+book_request = requests.get(url)
+book = book_request.text
+
+
+
+
+
+
+
book_processed = (
+    book
+    .replace("\n", " ")
+    .replace("\r", " ")
+    .replace("-", " ")
+)
+
+words = book_processed.split(" ")
+words = [w.lower() for w in words if w != ""]
+results = {}
+for word in words:
+    if word in results:
+        results[word] += 1
+    else:
+        results[word] = 1
+
+results = sorted(results.items(), key=lambda item: item[1], reverse=True)[:100]
+
+
+
+

Exercise 45

diff --git a/searchindex.js b/searchindex.js index 2cba2d1..b127d81 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["CONTRIBUTING", "README", "bibliography", "notebooks/introduction-python/booleans", "notebooks/introduction-python/classes", "notebooks/introduction-python/control-flow", "notebooks/introduction-python/exercises", "notebooks/introduction-python/functions", "notebooks/introduction-python/introduction-python", "notebooks/introduction-python/lists", "notebooks/introduction-python/numeric-types", "notebooks/introduction-python/other-data-structures", "notebooks/introduction-python/python-basics", "notebooks/introduction-python/strings", "notebooks/matplotlib/introduction-matplotlib", "notebooks/numpy/basic-operations", "notebooks/numpy/exercises", "notebooks/numpy/index-slicing", "notebooks/numpy/introduction-numpy", "notebooks/pandas/groupby-merge", "notebooks/pandas/introduction-pandas", "notebooks/practicas/classification-models", "notebooks/practicas/eda", "notebooks/practicas/gradient-descent", "notebooks/practicas/linear-programming", "notebooks/practicas/portfolio-optimization", "notebooks/practicas/regression-model", "notebooks/proyecto-ejemplo/dash", "notebooks/proyecto-ejemplo/project-management"], "filenames": ["CONTRIBUTING.md", "README.md", "bibliography.md", "notebooks/introduction-python/booleans.ipynb", "notebooks/introduction-python/classes.ipynb", "notebooks/introduction-python/control-flow.ipynb", "notebooks/introduction-python/exercises.ipynb", "notebooks/introduction-python/functions.ipynb", "notebooks/introduction-python/introduction-python.ipynb", "notebooks/introduction-python/lists.ipynb", "notebooks/introduction-python/numeric-types.ipynb", "notebooks/introduction-python/other-data-structures.ipynb", "notebooks/introduction-python/python-basics.ipynb", "notebooks/introduction-python/strings.ipynb", "notebooks/matplotlib/introduction-matplotlib.ipynb", "notebooks/numpy/basic-operations.ipynb", "notebooks/numpy/exercises.ipynb", "notebooks/numpy/index-slicing.ipynb", "notebooks/numpy/introduction-numpy.ipynb", "notebooks/pandas/groupby-merge.ipynb", "notebooks/pandas/introduction-pandas.ipynb", "notebooks/practicas/classification-models.ipynb", "notebooks/practicas/eda.ipynb", "notebooks/practicas/gradient-descent.ipynb", "notebooks/practicas/linear-programming.ipynb", "notebooks/practicas/portfolio-optimization.ipynb", "notebooks/practicas/regression-model.ipynb", "notebooks/proyecto-ejemplo/dash.ipynb", "notebooks/proyecto-ejemplo/project-management.ipynb"], "titles": ["Contribuye \ud83d\udcbb", "Curso de Python US", "Bibliograf\u00eda", "Booleanos", "Clases", "Estructuras de control", "Ejercicios de Introducci\u00f3n a Python", "Funciones", "Introducci\u00f3n a Python", "Listas", "Tipos num\u00e9ricos", "Otras estructuras de datos", "Principios b\u00e1sicos de Python", "Strings", "Introducci\u00f3n a matplotlib", "Operaciones B\u00e1sicas", "Ejercicios", "Indexado, Slicing y operaciones b\u00e1sicas", "Introducci\u00f3n a Numpy", "Agregaci\u00f3n y mergeo de dataframes", "Pandas", "Probando modelos de clasificaci\u00f3n binaria", "Ejemplo de an\u00e1lisis exploratorio", "Descenso del gradiente: Regresi\u00f3n Lineal", "Programaci\u00f3n Lineal", "Optimizaci\u00f3n de portfolio", "Construyendo un modelo de regresi\u00f3n lineal", "Dash", "Gesti\u00f3n de proyectos en Python"], "terms": {"par": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "curs": [0, 5, 8, 28], "propon": [0, 1, 7, 23, 26], "solucion": [0, 1, 5, 8, 16, 23, 24], "algun": [0, 1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28], "ejercici": [0, 9, 23, 26], "nuev": [0, 1, 4, 6, 9, 10, 12, 16, 18, 19, 20, 22, 23, 24], "correg": [0, 1], "errat": [0, 1], "mejor": [0, 1, 6, 12, 14, 18, 21, 22, 23, 28], "conten": [0, 1, 15], "cualqui": [0, 1, 5, 7, 11, 13, 17, 18, 20, 24, 26], "cos": [0, 1, 7, 8, 9, 14, 28], "ocurr": [0, 1], "pued": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28], "segu": [0, 1, 4, 5, 7, 8, 12, 19, 26], "siguient": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 26, 27, 28], "pas": [0, 1, 5, 6, 7, 9, 11, 13, 18, 19, 20, 21, 22, 23, 24, 26], "cre": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 27], "bifurc": [0, 1], "repositori": [0, 1, 8], "cuent": [0, 1, 4, 7, 17, 20, 22, 24], "github": [0, 1, 19, 20], "puls": [0, 1, 5], "boton": [0, 1, 27, 28], "fork": [0, 1], "aparec": [0, 1, 5, 6, 7, 12, 20, 22], "arrib": [0, 1, 17, 20], "derech": [0, 1, 3, 5, 12], "modif": [0, 1, 9, 17], "notebooks": [0, 1, 28], "antoj": [0, 1], "pull": [0, 1], "request": [0, 1, 20, 21, 22, 26], "contr": [0, 1], "ram": [0, 1], "main": [0, 1, 8, 19], "principal": [0, 1, 8, 11, 18, 21], "tras": [0, 1, 5, 6, 7, 12, 22], "revis": [0, 1, 24], "propuest": [0, 1, 23], "si": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28], "cambi": [0, 1, 6, 7, 9, 10, 12, 14, 16, 17, 18, 22, 23, 24, 26, 28], "oportun": [0, 1], "acept": [0, 1, 4, 5, 6, 7, 9, 11, 23, 24], "pr": [0, 1], "despleg": [0, 1], "automat": [0, 1, 5, 14, 28], "pagin": [0, 1, 26], "No": [0, 1, 3, 4, 6, 8, 9, 11, 12, 13, 15, 19, 21, 28], "exist": [0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 26, 28], "ningun": [0, 1, 5, 7, 8, 10, 20, 22], "polit": [0, 1], "per": [0, 1, 4, 5, 7, 8, 11, 12, 14, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "intent": [0, 1, 3, 4, 5, 11, 12, 21, 26], "dar": [0, 1, 14, 17, 20, 22, 26, 28], "context": [0, 1, 7, 14, 15], "archiv": [0, 1, 4, 8, 15, 21, 22, 26, 28], "modific": [0, 1, 4, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 23, 26, 27, 28], "esten": [0, 1], "dentr": [0, 1, 7, 11, 12, 14, 15, 22], "directori": [0, 1, 28], "ten": [0, 1, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "cuant": [0, 1, 4, 5, 7, 9, 11, 12, 14, 20, 22, 24], "etiquet": [0, 1, 14, 20], "unic": [0, 1, 7, 11, 17, 21, 22, 26], "just": [0, 1, 13, 19, 28], "empez": [0, 1, 5, 6, 7, 13, 18, 28], "referenci": [0, 1, 12, 21], "correspondient": [0, 1, 3, 4, 7, 8, 11, 13, 14, 15, 16, 17, 18, 20, 25, 26], "El": [1, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28], "material": [1, 24], "gui": [1, 12, 16, 28], "A": [1, 2, 3, 5, 7, 9, 11, 13, 15, 16, 18, 22, 24, 26], "larg": [1, 13, 15, 17, 18, 20, 21, 22, 24], "mism": [1, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 28], "ver": [1, 3, 5, 8, 9, 11, 14, 15, 17, 18, 19, 20, 22, 23, 26], "capitul": 1, "principi": [1, 7, 14, 18, 21, 22, 24, 26, 28], "basic": [1, 3, 11, 14, 22, 26, 28], "tip": [1, 5, 6, 8, 9, 11, 12, 13, 14, 15, 19, 20, 21, 22, 24, 25, 26, 28], "numer": [1, 4, 5, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 25, 26, 27, 28], "strings": [1, 18], "boolean": [1, 4, 5, 7, 12, 18, 20, 23], "list": [1, 5, 6, 7, 8, 11, 13, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28], "Otras": [1, 12, 16, 26], "estructur": [1, 4, 7, 9, 14, 17, 18, 20, 22, 24, 28], "dat": [1, 2, 3, 4, 7, 8, 9, 12, 14, 15, 16, 17, 19, 20, 21, 23, 25, 28], "control": [1, 3, 10, 21, 28], "funcion": [1, 3, 4, 5, 6, 9, 10, 11, 12, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28], "clas": [1, 3, 5, 6, 12, 16, 23, 26, 28], "index": [1, 2, 5, 8, 9, 13, 15, 19, 22, 23, 25, 26, 27, 28], "slicing": [1, 5, 7, 15, 20], "oper": [1, 4, 5, 7, 8, 9, 11, 12, 13, 16, 19, 23], "agreg": [1, 16, 28], "merge": 1, "datafram": [1, 21, 22, 25, 26, 27, 28], "descens": 1, "gradient": [1, 24], "regresion": [1, 21], "lineal": [1, 5, 18], "program": [1, 4, 5, 7, 8, 9, 12, 19, 28], "optimiz": [1, 5, 11, 18, 24], "portfoli": 1, "constru": [1, 4, 8, 9, 16, 17, 18, 21, 27, 28], "model": [1, 16, 18, 22, 23], "ejempl": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 24, 26, 27, 28], "analisis": [1, 8, 20, 21, 25, 26], "exploratori": [1, 21], "prob": [1, 26], "clasif": [1, 22], "binari": [1, 15, 22], "dash": [1, 14, 18], "bibliograf": 1, "seri": [1, 2, 4, 5, 7, 12, 15, 16, 17, 19, 21, 22, 24, 25, 28], "divid": [1, 3, 10, 13, 16, 20, 21, 25], "seccion": [1, 5, 11, 12, 19, 20, 23, 26, 28], "abrir": 1, "desd": [1, 5, 8, 11, 14, 18, 21, 22, 26, 28], "googl": [1, 2, 8, 25, 28], "colab": [1, 25, 27, 28], "direct": [1, 4, 7, 8, 9, 10, 11, 12, 13, 16, 18, 20, 23, 25, 26, 28], "descarg": [1, 6, 20, 22, 25], "local": [1, 7, 19, 20, 23, 25, 27, 28], "En": [1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "cad": [1, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28], "cuadern": [1, 8], "encontr": [1, 5, 7, 8, 13, 16, 23, 24], "celdill": [1, 5, 8, 9, 12], "ejecut": [1, 5, 6, 7, 23, 28], "markdown": [1, 8], "ultim": [1, 5, 7, 8, 10, 12, 14, 15, 19, 20, 21, 22, 23, 26], "bloqu": [1, 7], "text": [1, 6, 7, 8, 15, 21, 24, 25, 26, 27, 28], "estaran": [1, 28], "exercis": 1, "label": [1, 11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "my": [1, 27, 28], "your": [1, 19], "cod": [1, 5, 8, 19], "for": [1, 2, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26], "the": [1, 8, 11, 16, 19, 22, 25, 26, 27, 28], "tambien": [1, 3, 4, 5, 7, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "solution": 1, "class": [1, 4, 12, 16, 20, 22, 23, 25, 26, 28], "dropdown": 1, "sirv": [1, 4, 5, 7, 11, 14, 15], "renderiz": [1, 26], "format": [1, 4, 7, 13, 14, 15, 16, 20, 21, 24, 26, 28], "mas": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 28], "visual": [1, 8], "tod": [1, 4, 5, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 28], "ello": [1, 3, 4, 5, 7, 8, 10, 11, 16, 18, 19, 20, 23, 24, 26, 28], "aloj": [1, 8], "incident": 1, "dud": 1, "escrib": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 23, 27, 28], "apart": [1, 11, 26], "issu": 1, "gust": 1, "result": [1, 3, 5, 7, 12, 15, 16, 17, 18, 20, 21, 22, 27, 28], "util": [1, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 26, 28], "olvid": [1, 21, 22], "premi": 1, "estrell": 1, "servidor": [1, 8], "inform": [1, 4, 7, 11, 12, 18, 20, 22, 25, 26, 28], "contact": [1, 21], "corre": 1, "electron": 1, "direccion": [1, 12, 24], "bas": [1, 4, 7, 8, 18, 19, 21, 26, 28], "bea21": [1, 2], "sok": [1, 2], "pyt": [1, 2], "mck12": [1, 2], "har21": [1, 2], "gerons19": [1, 2], "ss15": [1, 2], "python": [2, 3, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 23, 25, 26, 27], "official": 2, "sit": 2, "https": [2, 6, 19, 20, 21, 22, 25, 26, 27, 28], "www": [2, 11], "org": [2, 6, 11, 25, 27, 28], "dav": [2, 5, 11], "beazley": 2, "distill": 2, "addison": 2, "wesley": 2, "professional": [2, 19, 22], "2021": 2, "g": [2, 7, 14, 15, 16, 21], "\u00e9": 2, "ron": 2, "and": [2, 3, 4, 5, 6, 8, 12, 15, 17, 18, 19, 22], "an": [2, 14, 19, 25], "O": [2, 14, 15, 18, 20, 28], "reilly": 2, "medi": [2, 4, 14, 15, 18, 20, 21, 22, 23, 25, 26], "company": [2, 19], "safari": 2, "hands": 2, "on": [2, 8, 19, 20, 27, 28], "machin": [2, 8, 21, 22], "learning": [2, 8, 19, 21, 22, 23], "with": [2, 12, 14, 15, 21, 22, 25, 26, 28], "scikit": [2, 18, 26], "learn": [2, 18, 19, 26], "ker": 2, "tensorflow": 2, "2nd": 2, "edition": [2, 19], "incorporat": 2, "2019": 2, "url": [2, 6, 19, 20, 26], "books": 2, "id": [2, 12, 27, 28], "o2vjzqeacaaj": 2, "m": [2, 11, 12, 15, 16, 18, 20, 23, 24], "harrison": 2, "effectiv": 2, "pand": [2, 3, 14, 18, 19, 21, 22, 25, 26, 27, 28], "patterns": 2, "manipulation": 2, "treading": 2, "matt": 2, "isbn": 2, "9798772692936": 2, "byp0zgeacaaj": 2, "wes": 2, "mckinney": 2, "analysis": [2, 19], "wrangling": 2, "numpy": [2, 3, 9, 11, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26], "ipython": [2, 3, 7, 9, 11, 16, 19, 20], "inc": 2, "2012": 2, "thom": 2, "sargent": 2, "john": [2, 19], "stachurski": 2, "quantitativ": 2, "economics": 2, "technical": 2, "report": 2, "lectur": [2, 20], "not": [2, 3, 5, 6, 7, 8, 9, 11, 12, 14, 17, 19, 20, 21, 22, 24, 26, 27, 28], "2015": 2, "ryan": 2, "soklaski": 2, "lik": [2, 14], "you": [2, 8, 19], "mean": [2, 11, 15, 18, 19, 20, 21, 22, 23, 25, 26], "it": [2, 8, 19, 27, 28], "pythonlikeyoumeanit": 2, "com": [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, 28], "html": [2, 14, 27, 28], "dos": [3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 17, 18, 20, 21, 22, 23, 24, 27, 28], "objet": [3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26], "bool": [3, 5, 6, 11, 12, 13, 18, 20, 25], "tru": [3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "fals": [3, 4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22, 25, 26], "hem": [3, 4, 5, 9, 10, 11, 12, 14, 17, 18, 19, 20, 22, 24, 25, 26, 28], "vist": [3, 4, 5, 9, 10, 11, 17, 18, 19, 20, 22, 24, 26], "anterior": [3, 4, 6, 7, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26], "devuelv": [3, 4, 5, 6, 7, 9, 11, 16, 17, 20, 25, 26, 28], "valor": [3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 21, 22, 23, 24, 25, 26], "isinstanc": [3, 5, 6, 10, 11, 12, 13], "is": [3, 5, 7, 8, 9, 11, 12, 16, 19, 21, 22, 26, 27, 28], "type": [3, 4, 7, 8, 9, 10, 11, 12, 13, 19, 25, 26, 27, 28], "inclu": [3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 20, 26, 27, 28], "estand": [3, 4, 5, 7, 8, 10, 12, 15, 17, 21, 23, 26, 28], "realiz": [3, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28], "simbol": [3, 12, 25], "or": [3, 8, 12, 15, 17, 19, 20], "hor": [3, 4, 8, 9, 10, 11, 12, 17, 22, 23, 25, 28], "evalu": [3, 4, 5, 7, 9, 11, 12, 13, 18, 19, 21], "hac": [3, 4, 5, 6, 8, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28], "calcul": [3, 4, 5, 7, 10, 12, 15, 16, 20, 22, 23, 25, 26, 28], "necesari": [3, 4, 5, 10, 11, 12, 15, 24, 28], "comput": [3, 9, 11, 18], "argument": [3, 4, 5, 9, 11, 15, 19, 20, 23, 24, 25, 26], "izquierd": [3, 5], "cas": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 22, 24, 25, 26, 28], "ser": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 28], "comport": [3, 4, 5, 7, 10, 13], "igual": [3, 5, 7, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 24, 28], "cuand": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 18, 19, 20, 21, 22, 23, 26], "utiliz": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28], "Sin": [3, 4, 12, 14, 15, 17, 19, 20, 21], "embarg": [3, 4, 12, 14, 15, 17, 19, 20, 22], "emple": [3, 18, 19, 21, 22, 23, 28], "represent": [3, 4, 6, 10, 13, 14, 16, 18, 21, 22, 23, 24, 25, 26], "nivel": [3, 9, 19, 21, 22, 28], "bits": [3, 10], "Por": [3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 24, 26, 27, 28], "bitwis": 3, "2": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "1": [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], "0": [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], "bastant": [3, 4, 5, 11, 14, 15, 20, 22, 28], "comun": [3, 4, 5, 7, 8, 9, 11, 13, 14, 18, 19, 21, 22, 28], "encont": [3, 5], "inesper": [3, 10, 12], "tien": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "orden": [3, 6, 7, 9, 10, 11, 12, 13, 16, 28], "distint": [3, 5, 11, 14, 15, 17, 18], "siempr": [3, 4, 5, 7, 11, 12, 15, 16, 17, 18, 19, 21, 26, 28], "posibl": [3, 5, 7, 9, 12, 16, 18, 22, 23, 24, 26], "usar": [3, 4, 5, 6, 7, 11, 13, 15, 17, 18, 19, 20, 21, 23, 24, 26, 28], "consider": [3, 5, 6, 7, 11, 13, 15, 16, 20, 23, 25], "estil": [3, 12, 28], "pythonic": 3, "defin": [3, 4, 5, 7, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 25], "especial": [3, 7, 8, 28], "nuestr": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 21, 22, 23, 24, 26, 27, 28], "ahi": [3, 8, 22], "paquet": [3, 8, 18, 24], "preferent": 3, "alter": [3, 7, 28], "pod": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "paretesis": 3, "compar": [3, 5, 18, 21, 26], "usual": [3, 10, 11, 18, 19, 26], "frent": [3, 14], "mal": [3, 5, 12], "a\u00f1ad": [3, 4, 5, 6, 7, 9, 11, 14, 20, 21, 24, 26, 28], "parentesis": [3, 7, 11], "redund": 3, "ayud": [3, 8, 10, 16, 28], "legibil": [3, 8, 12], "expresion": [3, 5, 7, 9, 11, 13], "3": [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], "10": [3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "5": [3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "4": [3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "7": [3, 4, 6, 10, 11, 12, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28], "realid": [3, 12, 17, 20, 23, 24], "particul": [3, 4, 20, 28], "precis": [3, 28], "subcl": 3, "int": [3, 5, 6, 7, 9, 10, 11, 12, 16, 22, 23, 25, 26], "tal": [3, 6, 16, 23, 24], "usarl": [3, 26], "matemat": [3, 8, 12, 13, 14, 20], "form": [3, 4, 5, 7, 11, 12, 14, 16, 17, 18, 19, 20, 23, 26, 28], "total": [3, 4, 5, 7, 9, 11, 15, 18, 20, 22, 23, 24, 25, 26], "intercambi": [3, 16], "zerodivisionerror": 3, "traceback": [3, 7, 9, 11], "most": [3, 7, 9, 11, 19], "recent": [3, 7, 9, 11], "call": [3, 7, 9, 11, 22], "last": [3, 7, 9, 11], "input": [3, 7, 9, 11, 16, 23, 27, 28], "97": 3, "f8487d9d0863": 3, "in": [3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28], "modul": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 16, 20, 26, 28], "division": [3, 21], "by": [3, 8, 14, 19, 20], "zer": [3, 16, 18], "supon": 3, "x": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28], "rest": [3, 4, 7, 10, 12, 16, 18, 20, 21, 22, 25, 26, 28], "contrari": [3, 7], "variabl": [3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 20, 23, 24, 25, 28], "flotant": [3, 6, 12, 18, 22], "dad": [3, 5, 7, 9, 11, 15, 16, 21, 22, 24, 25, 26], "arregl": 3, "suel": [3, 7, 17, 18, 20, 23, 28], "junt": [3, 4, 19, 20], "nonetyp": 3, "Este": [3, 4, 11, 12, 16, 24], "sol": [3, 5, 6, 7, 10, 12, 13, 14, 15, 18, 20, 21, 22, 23, 28], "vaci": [3, 5, 7, 11, 24], "desconoc": [3, 7], "contien": [3, 7, 11, 13, 25], "comprob": [3, 5, 7, 9, 10, 12, 15, 26, 28], "pertenec": [3, 4], "verific": [3, 11, 12, 28], "dich": [3, 4, 5, 6, 9, 11, 16, 17, 18, 20, 21, 22, 24, 26], "record": [3, 20, 21, 24], "ident": [3, 5], "mientr": [3, 5, 8, 20], "usam": [3, 9, 14, 19, 26, 28], "22": [3, 5, 7, 8, 14, 18, 19, 20, 22, 26], "ahor": [3, 5, 9, 11, 12, 14, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "suficient": [3, 15], "sep": [3, 6, 8, 13, 21, 22], "habl": [3, 28], "fluj": [3, 5], "trat": [4, 11, 12, 19, 20, 26], "predefin": [4, 9, 10, 12, 14, 18, 26], "caden": [4, 5, 6, 7, 9, 10, 11, 12], "enter": [4, 5, 6, 7, 9, 11, 12, 13, 17, 18, 20, 22, 23, 26], "etc": [4, 5, 7, 9, 10, 25, 28], "encapsul": 4, "conjunt": [4, 5, 7, 9, 10, 12, 13, 14, 16, 21, 22, 23, 24], "permit": [4, 5, 7, 8, 9, 11, 13, 14, 16, 18, 19, 20, 25, 27, 28], "gestion": [4, 19, 20], "interactu": [4, 19], "imagin": 4, "quer": [4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 20, 21, 22, 23, 24, 26, 28], "trabaj": [4, 5, 7, 8, 10, 18, 19, 20, 21, 22, 25], "punt": [4, 18, 21, 22, 24, 26], "plan": [4, 6, 24], "interes": [4, 5, 16, 17, 18, 20, 21, 22, 24, 27, 28], "import": [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], "math": [4, 10, 12, 13, 28], "def": [4, 5, 6, 7, 11, 12, 15, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "__init__": [4, 6, 23, 25, 28], "self": [4, 16, 19, 20, 23, 25, 26, 28], "distancia_al_orig": 4, "dist": [4, 19, 20, 25, 27, 28], "sqrt": [4, 8, 15, 21, 22, 25, 26], "return": [4, 5, 7, 11, 12, 15, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "Al": [4, 5, 9, 11, 13, 20, 24], "estam": [4, 10, 12, 14, 17, 19, 20, 24, 28], "describ": [4, 7, 19, 20, 22, 26], "patron": 4, "instanci": [4, 6, 20, 22, 23], "definicion": [4, 7, 9, 12, 16, 24], "referent": [4, 7, 8, 11, 12, 17, 21], "propi": [4, 11, 14, 16, 17, 20], "prim": [4, 5, 9, 11, 15, 20, 22, 24, 26], "har": [4, 11, 14, 17, 20, 28], "explicit": [4, 7, 8, 12, 20], "use": [4, 14, 19, 22, 25, 27, 28], "sino": [4, 17, 18], "tom": [4, 5, 7, 12, 14, 16, 17, 20, 21, 22, 23, 24, 25, 28], "sobr": [4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 28], "inicial": [4, 16, 24, 25], "constructor": [4, 11], "recib": [4, 7, 23, 24, 25], "entrad": [4, 6, 7, 28], "defect": [4, 8, 11, 13, 14, 15, 19, 20, 21, 23, 24, 26, 28], "Esos": 4, "almacen": [4, 5, 6, 7, 9, 10, 11, 13, 15, 16], "respect": [4, 7, 13, 15, 16, 20, 23, 28], "nombr": [4, 5, 8, 11, 12, 13, 14, 17, 19, 20, 21, 22], "asi": [4, 7, 8, 14, 15, 17, 20, 28], "llam": [4, 5, 8, 10, 11, 12, 13, 14, 21, 22, 24, 25, 26, 28], "simplement": [4, 7, 18, 24, 28], "except": [4, 12, 20], "Lo": [4, 5, 11, 14, 17, 18, 20, 27, 28], "sig": [4, 7, 18, 28], "asign": [4, 5, 7, 9, 11, 12, 17, 20, 28], "p": [4, 22], "general": [4, 5, 8, 10, 11, 17, 20, 24], "atr": 4, "acced": [4, 7, 9, 11, 12, 13, 15, 17, 18, 20], "notacion": [4, 10, 17, 20], "f": [4, 6, 7, 8, 9, 10, 14, 15, 16, 18, 20, 21, 22, 23, 26, 27, 28], "aplic": [4, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 26, 27, 28], "proporcion": [4, 8, 16, 20, 28], "getattr": 4, "setattr": 4, "delattr": 4, "parametr": [4, 7, 15, 16, 20, 23, 24, 25, 28], "segund": [4, 5, 9, 11, 14, 15, 17, 19, 20, 21, 22, 23, 24], "605551275463989": 4, "La": [4, 5, 7, 8, 10, 11, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26], "dir": 4, "obj": 4, "dispon": [4, 10, 11, 13, 20, 21, 22, 24, 25, 26], "__class__": 4, "__delattr__": 4, "__dict__": 4, "__dir__": 4, "__doc__": [4, 7], "__eq__": 4, "__format__": 4, "__ge__": 4, "__getattribute__": 4, "__gt__": 4, "__hash__": [4, 11], "__init_subclass__": 4, "__le__": 4, "__lt__": 4, "__module__": 4, "__ne__": 4, "__new__": 4, "__reduce__": 4, "__reduce_ex__": 4, "__repr__": 4, "__setattr__": 4, "__sizeof__": 4, "__str__": 4, "__subclasshook__": 4, "__weakref__": 4, "perr": 4, "teng": [4, 5, 6, 13, 16, 18, 19, 20, 22, 23, 28], "edad": [4, 13, 20, 21, 22], "ladr": 4, "mensaj": [4, 7, 25, 28], "pantall": [4, 7], "crec": [4, 23], "aument": [4, 28], "adecu": [4, 8, 20, 22], "Hay": [4, 8, 18, 20, 26, 28], "reserv": [4, 5, 10, 11, 12, 26], "obligatori": [4, 26], "final": [4, 5, 6, 7, 11, 12, 14, 16, 17, 19, 20, 24, 25, 26, 28], "especif": [4, 8, 18, 20, 26], "dobl": [4, 13, 22], "guin": 4, "baj": [4, 7, 12, 14, 20, 24], "comp": [4, 16, 20], "puntov2": 4, "3f": [4, 21], "q": 4, "r": [4, 5, 9, 14, 15, 16, 19, 21, 22, 23, 24], "print": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 21, 22, 23, 25, 26, 28], "__main__": [4, 27, 28], "object": [4, 9, 19, 20, 21, 22, 25, 26], "at": [4, 5, 8, 19, 25, 26], "0x7daf29671450": 4, "000": [4, 19, 24, 26], "pointv3": 4, "copi": [4, 6, 7, 17], "codig": [4, 5, 7, 8, 11, 12, 14, 18, 20, 24, 25, 27], "pointv2": 4, "__add__": 4, "sum": [4, 5, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 25], "norm": [4, 6, 28], "dot": [4, 15], "implement": [4, 7, 8, 10, 18, 21, 23], "product": [4, 6, 7, 10, 16, 24], "escal": [4, 14, 15, 18], "vector": [4, 14, 15, 16, 24], "puntov3": 4, "normap": 4, "2599210498948732": 4, "6": [4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28], "mecan": [4, 18, 28], "especializ": [4, 8, 20], "existent": 4, "via": [4, 5, 8, 10, 25], "hered": [4, 23], "posibil": [4, 13, 18, 20], "ampli": [4, 8, 13, 28], "redefin": 4, "parantesis": 4, "enunci": [4, 24], "circul": [4, 14, 28], "radi": 4, "sup": [4, 23], "abs": [4, 10, 15, 20, 21], "calcula_are": 4, "are": [4, 8, 19, 28], "pi": [4, 8, 12, 13, 14, 18, 28], "son_igual": 4, "mediant": [4, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23], "bancari": [4, 24], "tendr": [4, 7, 8, 10, 22, 24, 26], "deposit": [4, 21, 22, 24], "retir": [4, 19, 22], "cantidad": 4, "retira_tod": 4, "diner": [4, 24], "hij": 4, "cuentainversion": 4, "riesg": 4, "multipl": [4, 7, 12, 14, 15, 16, 18, 19, 25, 27, 28], "distribu": [4, 8, 15, 18, 22, 28], "normal": [4, 5, 7, 14, 15, 16, 17, 18, 20, 28], "desviacion": [4, 14, 15, 18, 21], "veas": [4, 12, 20, 26, 28], "random": [4, 14, 15, 16, 17, 18, 20, 23, 25, 26], "pseudoaleatori": 4, "cantid": [4, 14, 16, 24, 27, 28], "inter": 4, "tipo_de_inter": 4, "pepit": 4, "1000": [4, 7, 21, 23, 26], "50": [4, 5, 6, 11, 12, 14, 15, 16, 19, 20, 22, 23, 24, 25, 26], "100": [4, 5, 6, 10, 11, 14, 16, 18, 19, 20, 21, 23, 24, 25, 26], "1050": 4, "950": 4, "1045": 4, "gauss": [4, 11], "1172": 4, "4324788606912": 4, "asum": [4, 5, 24], "van": [4, 12], "tant": [4, 7, 10, 11, 14, 15, 17, 20, 21, 22, 23, 24, 28], "manipul": [4, 9, 11, 14, 20, 25], "podr": [4, 8, 11, 15, 17, 18, 20, 22, 26, 28], "llev": [4, 10, 17, 21], "contandor": 4, "mir": [4, 7], "account": 4, "num_accounts": 4, "Esto": [4, 7, 8, 10, 12, 14, 16, 17, 20, 26, 28], "owner": 4, "balanc": [4, 21], "__name__": [4, 7, 27, 28], "amount": [4, 27, 28], "withdraw": 4, "denomin": [4, 7, 11, 12, 15, 18, 20, 23, 24], "fuer": [4, 5, 9, 15], "init": 4, "account_pepit": 4, "aunqu": [4, 5, 8, 10, 11, 14, 17, 18, 20, 22, 28], "tamb": [4, 20], "traves": [4, 11, 13, 14, 16, 17, 20, 28], "account_alici": 4, "alici": [4, 11], "2000": [4, 20], "uns": 4, "busc": [4, 7, 11, 21, 24], "primer": [4, 5, 7, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25], "encuentr": [4, 9, 11, 24, 28], "nad": [4, 7, 28], "Un": [4, 5, 6, 7, 11, 14, 20, 24, 26, 28], "uso": [4, 5, 7, 8, 10, 18, 20, 26, 28], "altern": [4, 20, 23], "supong": [4, 15, 20, 23, 24], "part": [4, 5, 6, 7, 9, 11, 13, 14, 15, 17, 18, 20, 22, 23, 24, 25, 26, 28], "xml": 4, "escrutur": 4, "javi": [4, 13], "decor": 4, "classmethod": 4, "cls": 4, "from": [4, 5, 7, 13, 14, 16, 18, 19, 21, 24, 25, 26, 27, 28], "inspect": 4, "classify_class_attrs": 4, "from_xml": 4, "etre": 4, "elementtre": 4, "doc": 4, "findtext": 4, "float": [4, 6, 10, 12, 18, 19, 28], "javi_account": 4, "vari": [4, 5, 7, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28], "manej": [4, 8, 12, 20], "formate": [4, 28], "fech": [4, 25], "favorec": 4, "tim": [4, 7, 8, 9, 10, 11, 16, 18, 24], "datefmt": 4, "year": [4, 19, 20], "month": [4, 21], "02d": 4, "day": 4, "from_timestamp": 4, "ts": 4, "tm": 4, "localtim": 4, "tm_ye": 4, "tm_mon": 4, "tm_mday": 4, "today": [4, 25], "mdydat": 4, "ymddat": 4, "b": [4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 21, 24, 26], "2023": [4, 8, 28], "c": [4, 5, 7, 8, 9, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 28], "02": [4, 8, 15, 28], "07": [4, 10, 15], "hast": [5, 7, 9, 10, 11, 17, 18, 19, 22, 24], "escrit": 5, "secuencial": [5, 11, 13, 18], "introduc": [5, 11, 19, 20, 24], "logic": [5, 28], "hag": [5, 21, 26], "vam": [5, 11, 12, 14, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28], "elif": [5, 12, 23], "Antes": [5, 12, 26], "indent": [5, 8], "alcanc": 5, "fragment": 5, "corchet": [5, 8, 9, 11, 17], "delimit": 5, "espaci": [5, 7, 12, 16, 18, 26], "blanc": 5, "interpret": [5, 7, 8, 12, 17, 28], "fundamental": [5, 7, 12, 17], "buen": [5, 8, 12, 22], "my_func": 5, "z": [5, 7, 9, 10, 24, 26], "deb": [5, 6, 7, 8, 9, 10, 11, 12, 18, 20, 21, 22, 23, 24, 26, 28], "viend": 5, "Los": [5, 7, 9, 10, 11, 14, 15, 16, 17, 18, 20, 22, 28], "ciert": [5, 20, 24, 28], "condicion": [5, 15, 17], "cumpl": [5, 15, 22], "palabr": [5, 6, 11], "cuy": [5, 6, 9, 11, 13, 16, 18, 20, 23, 26], "elev": [5, 10], "cuadr": [5, 10, 15, 16], "negat": [5, 6, 11, 21, 22, 24], "cub": 5, "posit": [5, 7, 15, 16, 17, 22, 26], "pertenent": [5, 9], "anid": [5, 9, 18], "conversion": [5, 10], "cer": [5, 6, 9, 11, 12, 20, 24], "non": [5, 7, 9, 11, 12, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28], "0j": [5, 16], "secuenci": [5, 6, 7, 8, 17, 20, 26], "vac": [5, 9], "tupl": [5, 7, 9, 14, 18, 20, 25], "np": [5, 11, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "array": [5, 14, 15, 16, 17, 20, 21, 23, 24, 25, 26], "longitud": [5, 9, 10, 11, 12, 20, 26], "k": [5, 6, 11, 14, 16, 20, 22, 26], "diccionari": [5, 6, 7, 9, 15, 20], "dict": [5, 11, 22], "set": [5, 9, 11, 14, 19, 20, 21, 23], "nul": [5, 22], "coleccion": [5, 11, 24], "foo": [5, 6, 7, 8, 9, 10, 11, 12, 13], "lad": [5, 7, 8, 12, 21], "encaden": 5, "num_health": 5, "80": [5, 11, 16, 20, 23, 26], "status": [5, 19, 24], "good": [5, 8], "okay": 5, "dang": 5, "dead": 5, "my_list": [5, 11], "first_item": 5, "val": [5, 13, 16, 17, 20, 21, 22, 24], "comprension": [5, 7, 11], "soport": [5, 7, 8, 14, 18], "sintaxis": [5, 7, 8, 9, 11, 12, 13, 28], "num": [5, 21, 26], "sign": [5, 10, 24], "positiv": [5, 15], "negativ": 5, "equivalent": [5, 14, 17, 20], "isupp": 5, "str": [5, 6, 7, 12, 13, 19, 21, 22, 25], "haz": [5, 10, 14], "mayuscul": [5, 12, 13], "Qu\u00e9": [5, 11, 12, 26], "problem": [5, 8, 15, 21, 23, 26], "Con": [5, 10, 14, 15, 20, 21, 24, 25, 28], "iter": [5, 6, 7, 11, 16, 17, 23], "items": [5, 7, 9, 11], "vez": [5, 6, 7, 9, 11, 12, 13, 14, 15, 20, 21, 22, 23, 26, 28], "8": [5, 6, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "var": [5, 11, 15, 21], "block": 5, "of": [5, 8, 9, 15, 18, 19, 20, 22, 26], "dond": [5, 6, 7, 14, 15, 16, 17, 20, 23, 24, 28], "acab": [5, 20, 22], "cuerp": [5, 6, 7], "men": [5, 6, 10, 22], "maner": [5, 14, 15, 16, 17, 18, 28], "pid": [5, 24], "sal": 5, "vuelv": 5, "Una": [5, 7, 8, 11, 12, 16, 18, 19, 20, 22, 24, 26, 28], "observ": [5, 16, 20, 22, 23], "importat": 5, "persist": 5, "despues": [5, 7, 26], "depend": [5, 7, 12, 14, 21], "string": [5, 13], "ascii_lowerc": [5, 13], "abcdefghijklmnopqrstuvwxyz": 5, "letr": [5, 12, 13, 20], "conson": 5, "abecedari": [5, 13], "repet": [5, 11, 14, 22], "instruccion": [5, 11, 14], "verdader": [5, 9, 23], "condition": [5, 11], "vien": [5, 21, 28], "Se": [5, 7, 11, 13, 14, 15, 18, 22, 28], "vuelt": [5, 16], "error": [5, 7, 11, 12, 23, 26, 28], "infit": 5, "interrump": 5, "reinici": 5, "kernel": [5, 8, 16], "terminal": [5, 8, 28], "ctrl": 5, "estrict": [5, 10], "mayor": [5, 7, 10, 16, 20, 22, 26], "comand": [5, 28], "personaliz": 5, "concret": [5, 9, 10, 11, 13, 17, 20, 21, 24, 28], "cuestion": 5, "salt": [5, 13, 22], "item": [5, 9], "next": [5, 11], "iteration": 5, "conjuncion": 5, "estudi": [5, 11, 21, 22], "libr": [5, 6, 8, 10, 14, 16, 20, 25, 26], "herramient": [5, 7, 8, 12, 20, 22, 25, 28], "tres": [5, 6, 11, 14, 17, 18, 20, 22, 24], "hech": [5, 9, 10, 20, 22, 26], "inmut": [5, 11, 13], "ocup": [5, 12, 21, 22], "poc": [5, 15, 22, 26], "memori": [5, 10, 11, 12, 18, 20], "diferent": [5, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 26, 28], "guard": [5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 23, 26], "atribut": [5, 7, 15, 16, 18, 19, 20, 21, 22, 23, 26], "start": [5, 9, 11, 18, 20, 25], "stop": [5, 11, 20], "step": [5, 11, 20], "metod": [5, 6, 7, 9, 11, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 28], "len": [5, 7, 9, 11, 16, 19, 21, 26], "Es": [5, 7, 8, 11, 12, 15, 18, 22, 24, 26, 27, 28], "20": [5, 7, 12, 14, 16, 18, 19, 20, 22, 23, 24, 26, 28], "11": [5, 7, 8, 9, 13, 15, 16, 17, 18, 19, 20, 22, 25, 26, 27, 28], "18": [5, 14, 18, 19, 20, 22, 25, 26], "da": [5, 8, 9, 11, 14, 18, 20, 23, 24], "r1": 5, "r2": 5, "obten": [5, 7, 9, 12, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28], "dupl": [5, 11], "element": [5, 6, 7, 9, 15, 17, 18, 20, 23, 27, 28], "indic": [5, 6, 9, 12, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 28], "my_enum": 5, "apple": [5, 9, 11], "banan": [5, 27, 28], "cat": [5, 11, 21, 26], "dog": 5, "condens": [5, 26], "devolv": [5, 7, 11], "coincid": [5, 7, 20, 24], "comprim": [5, 15, 16], "nam": [5, 7, 11, 14, 19, 20, 21, 22, 26, 28], "angi": 5, "bri": 5, "cassi": 5, "exam_1_scor": 5, "90": [5, 11, 22], "82": 5, "79": [5, 20], "87": 5, "exam_2_scor": 5, "95": [5, 22, 26], "84": 5, "72": [5, 20], "91": [5, 11], "my_zip": 5, "chain": 5, "concaten": [5, 6, 7, 9, 15], "gen_1": 5, "gen_2": 5, "i": [5, 6, 7, 11, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25], "iter_3": 5, "moo": [5, 11], "cow": [5, 11], "iter_4": 5, "him": 5, "0x7fdd9e4f23d0": 5, "Nos": 5, "gener": [5, 7, 9, 15, 16, 18, 21, 22, 23, 24, 25], "combin": [5, 7, 12, 15, 16, 17, 20, 26, 28], "evit": [5, 7, 8, 18, 25], "loops": [5, 20], "my_comb": 5, "Otros": [5, 9], "much": [5, 8, 9, 10, 11, 13, 15, 16, 18, 20, 22, 24, 28], "document": [5, 13, 28], "usa": [5, 17], "combinations": 5, "repeticion": 5, "ascii_lowec": 5, "vocal": 5, "x_vals": 5, "9": [5, 6, 7, 9, 11, 13, 15, 16, 17, 18, 20, 22, 25, 26, 27, 28], "lueg": [5, 9, 11, 14, 16, 20, 21, 22, 25], "guardal": 5, "merg": [6, 19], "arbitrari": [6, 7, 10, 11, 12], "clav": [6, 7, 11, 14, 15, 18, 19, 20], "union": [6, 11], "original": [6, 16, 17, 20, 24, 26], "dict1": 6, "bar": [6, 7, 8, 9, 10, 11, 13, 22, 27, 28], "baz": [6, 7, 9, 11], "dict2": 6, "hell": [6, 9, 13], "world": [6, 9, 13], "fiv": [6, 20], "dict3": 6, "yes": [6, 19, 21, 22], "d": [6, 7, 9, 11, 14, 15, 19, 20], "args": [6, 7, 16, 18], "merge_dict": 6, "dictionary": 6, "key": [6, 7, 9, 11, 21], "if": [6, 7, 8, 11, 12, 15, 16, 21, 22, 23, 25, 26, 27, 28], "append": [6, 7, 9, 11, 18, 21, 23, 25], "else": [6, 7, 12, 15, 16, 21, 22, 23], "Y": [6, 15, 17, 20, 23], "concat_to_str": 6, "conviert": [6, 13, 20, 26], "transcripcion": 6, "sigu": [6, 15], "entonc": [6, 14, 17, 20, 22, 25], "digit": [6, 10, 12], "espa\u00f1ol": 6, "separ": [6, 7, 9, 11, 12, 17, 18, 21, 26], "guion": [6, 7, 12], "142": 6, "cuatr": [6, 14, 20], "12": [6, 8, 15, 17, 18, 20, 21, 22, 24, 25, 26], "qued": [6, 7, 10, 12, 16, 17, 20, 21, 22, 26], "decimal": [6, 10, 13, 18], "324": 6, "dej": [6, 21, 24, 26, 28], "OTRO": 6, "Las": [6, 7, 11, 13, 15, 20, 21], "s": [6, 7, 8, 9, 11, 14, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28], "14": [6, 7, 8, 12, 15, 18, 20, 22, 26], "23": [6, 8, 12, 14, 19, 22, 26, 27, 28], "cinc": 6, "5438543": 6, "traduc": [6, 10], "traduce_enter": 6, "traduce_flot": 6, "n": [6, 7, 9, 11, 12, 13, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26], "n_str": 6, "digits": 6, "join": [6, 13, 19, 20, 21, 22, 26], "traduce_digit": 6, "traductor_digit": 6, "seis": 6, "siet": 6, "ocho": 6, "f_round": 6, "round": [6, 26], "traduccion": 6, "visit": [6, 8], "siti": [6, 8], "web": [6, 19, 27, 28], "enlac": 6, "eleccion": [6, 16, 17, 24], "orgull": 6, "prejuici": 6, "requests": [6, 25], "peticion": 6, "http": [6, 26, 27, 28], "respuest": 6, "book": 6, "continu": [6, 11, 12, 13, 14, 17, 18, 19, 26], "gutenberg": 6, "cach": [6, 28], "epub": 6, "1342": 6, "pg1342": 6, "txt": [6, 18], "book_request": 6, "get": [6, 11, 25], "count_words": 6, "frecuent": [6, 11, 15, 18, 20], "aparicion": 6, "carritocompr": 6, "necesit": [6, 18, 20, 23, 24], "compr": 6, "ademas": [6, 7, 8, 11, 12, 15, 17, 18, 20, 23, 24, 25], "a\u00f1ade_necesti": 6, "carrit": 6, "marc": [6, 14], "elimina_necesit": 6, "elimina_compr": 6, "elimin": [6, 21, 25], "lista_necesti": 6, "lista_compr": 6, "alfabet": [6, 7, 13], "lee": 6, "blog": [6, 12], "incu": 6, "pon": [6, 14, 17], "reutiliz": 7, "troz": 7, "add": [7, 11, 20, 28], "cabecer": [7, 8], "especific": [7, 14, 18, 20, 26, 28], "declar": [7, 11], "vec": [7, 10, 14, 15, 16, 19, 22, 23, 24], "ejecu": [7, 9, 12, 18, 20, 28], "termin": [7, 16, 20], "\u00e9sta": [7, 20], "count_ev": 7, "numbers": 7, "conteng": [7, 11], "l": [7, 9, 11, 17, 20, 24], "opcional": [7, 20], "De": [7, 14, 17, 20], "mod": [7, 9, 11, 12, 16, 19, 23, 24, 27, 28], "pass": [7, 8, 12], "fil": [7, 15, 16, 17, 18, 20, 22, 25, 26], "6eed9b32205d": 7, "lin": [7, 13, 14, 23, 24, 26, 28], "syntaxerror": 7, "default": [7, 21], "follows": 7, "Otra": [7, 13, 14, 16, 17, 20, 23, 28], "alt": [7, 8, 11, 28], "recomend": [7, 11, 18], "asterisc": 7, "conveni": 7, "first": [7, 8, 19], "200": [7, 25], "extra": [7, 18, 20], "localiz": [7, 20], "desempaquet": 7, "invoc": [7, 11], "w": [7, 9, 16, 21, 25], "ambos": [7, 14, 15, 16, 17, 20, 21], "ir": [7, 8, 11, 26, 28], "typeerror": [7, 9, 11], "79c55e15d211": 7, "got": 7, "valu": [7, 11, 15, 16, 20, 21, 26, 27, 28], "oblig": 7, "scal": 7, "read_dat": 7, "filenam": [7, 26], "debug": [7, 27, 28], "csv": [7, 19, 20, 21, 22, 26], "17": [7, 10, 15, 18, 20, 21, 22, 24, 25, 28], "875c77499821": 7, "tak": 7, "positional": 7, "but": 7, "wer": 7, "giv": 7, "prefij": 7, "kwargs": [7, 18], "make_t": 7, "font_color": 7, "pop": [7, 9, 11, 20], "black": [7, 14, 24], "bg_color": 7, "whit": 7, "width": [7, 24], "lanz": [7, 8, 28], "configur": [7, 8, 14, 25, 26, 28], "combination": 7, "usand": [7, 9, 10, 13, 14, 15, 18, 19, 20, 21, 23, 24, 26], "consid": [7, 23, 24], "begin": [7, 15, 16, 23, 24], "3n": 7, "end": [7, 9, 11, 15, 16, 18, 23, 24, 25], "orbit": 7, "obtien": [7, 15, 18], "reiter": 7, "collatz": 7, "conjetur": 7, "finit": [7, 10, 18], "compute_orbit": 7, "whil": [7, 12], "ret": [7, 10, 15], "convencion": 7, "snake_c": 7, "pretend": 7, "detall": [7, 14, 21, 28], "intern": [7, 13, 20], "conoc": [7, 14, 24, 28], "squar": 7, "factorial": 7, "120": [7, 22], "menud": 7, "consult": [7, 12], "jupyt": [7, 9, 14, 20, 28], "ides": 7, "mostr": [7, 10, 11, 13, 14, 20, 27, 28], "usuari": [7, 20, 27, 28], "recurs": [7, 17, 24], "dec": [7, 9, 11, 12, 13, 14, 15, 17, 18, 20, 22, 24, 28], "anot": [7, 8], "vim": [7, 9, 11, 19], "ignor": [7, 12], "pylint": 7, "comprueb": [7, 24], "consistent": [7, 11, 12], "Esta": [7, 10, 11, 12, 26], "__annotations__": 7, "apunt": [7, 12], "init_fo": 7, "arg1": 7, "arg2": 7, "nameerror": 7, "45": [7, 13, 14, 15, 22, 26], "42cd4c5c2b13": 7, "precaucion": 7, "mutabl": [7, 11], "enumerat": [7, 14, 17, 22, 25], "16": [7, 10, 12, 15, 18, 20, 21, 22, 25, 26], "25": [7, 9, 14, 15, 17, 18, 19, 20, 22, 23, 26], "mut": 7, "dic": [7, 11, 12], "sid": [7, 9, 19, 20, 21, 22], "effects": 7, "indicardor": 7, "identific": [7, 24], "reasign": 7, "square_ns": 7, "entorn": [7, 8, 28], "fucnion": [7, 14], "dinam": [7, 8, 12], "durant": [7, 9, 12, 21, 22, 26], "global": [7, 12, 22], "unboundedlocalerror": 7, "todav": 7, "mencion": [7, 20], "unboundlocalerror": 7, "70": [7, 16, 20], "d227933f6b14": 7, "referenc": 7, "befor": 7, "assignment": 7, "non_defined_v": 7, "69": 7, "9a9aa7a53d93": 7, "global_v": 7, "h": [7, 9, 11, 15, 16], "scop": 7, "restring": [7, 22, 24], "acces": [7, 8, 17, 20], "42": [7, 12, 13, 14, 17, 18, 21, 26], "13": [7, 9, 11, 15, 18, 20, 21, 22, 28], "fibonacci": 7, "pud": 7, "anonim": 7, "expression": [7, 11], "bucl": [7, 18], "superior": [7, 20, 26, 28], "sort": [7, 9], "menor": [7, 10, 16, 22, 28], "order": 7, "concept": 7, "signif": [7, 8], "after": [7, 14], "seconds": [7, 9], "sleep": 7, "incorport": 7, "filtr": [7, 11, 22], "segun": [7, 12, 16, 20, 23, 28], "nums": 7, "rang": [7, 9, 11, 14, 16, 17, 18, 20, 21, 23, 25], "itertools": [7, 16], "functools": [7, 18], "55": [7, 14, 18, 19, 20, 26], "initial": [7, 9], "wrapp": [7, 18], "realic": [7, 17, 26], "tar": [7, 11, 21, 28], "my_reduc": 7, "lenguaj": [8, 18, 19], "popul": 8, "sencill": [8, 28], "facil": [8, 12, 18, 24, 26, 27, 28], "experiment": 8, "obstant": [8, 12], "potent": 8, "resolv": [8, 23], "indol": [8, 18], "Entre": 8, "caracterist": [8, 13, 17, 18, 21], "destac": [8, 20, 22], "vs": [8, 18, 19, 21, 25], "compil": [8, 28], "fuert": [8, 12], "adel": [8, 9, 11, 18, 20, 26], "multiplataform": 8, "capaz": [8, 23, 24], "disposit": 8, "sistem": [8, 14, 26, 28], "proposit": 8, "usars": 8, "varied": [8, 18], "extens": [8, 18], "tercer": [8, 12, 14, 17, 24, 28], "packag": [8, 18, 19, 20, 25, 27, 28], "encuest": [8, 19], "anual": [8, 22], "stackoverflow": 8, "opinion": 8, "tecnolog": [8, 25], "ide": [8, 19, 22, 23, 26], "presenci": 8, "mund": 8, "desarroll": [8, 18, 26, 28], "camp": [8, 11], "cercan": [8, 21], "cienci": [8, 14, 18], "oficial": [8, 13], "noviembr": 8, "version": [8, 11, 13, 15, 16, 19, 23, 26, 28], "establ": 8, "sys": [8, 9, 12, 18, 26], "jun": [8, 22], "05": [8, 21, 23, 24, 26], "26": [8, 13, 14, 16, 19, 22, 25], "28": [8, 12, 14, 19, 25, 26], "gcc": 8, "gestor": [8, 14], "pip": [8, 18, 25, 27, 28], "instal": [8, 25], "desinstal": 8, "actualiz": [8, 9, 10, 11, 19, 28], "project": [8, 19, 28], "u": [8, 13, 16, 24, 28], "anacond": 8, "facilit": [8, 28], "preocup": [8, 11, 21], "dependent": 8, "gran": [8, 13, 14, 17, 18, 23, 27, 28], "funcional": [8, 18, 28], "ecosistem": [8, 14, 18], "corr": [8, 22, 26], "integrat": 8, "development": [8, 19, 27, 28], "environment": [8, 27, 28], "studi": 8, "pycharm": [8, 19], "sublim": 8, "naveg": 8, "python3": [8, 19, 20, 25, 27, 28], "prompt": 8, "clang": 8, "1403": 8, "darwin": 8, "help": 8, "copyright": 8, "credits": 8, "licens": 8, "mor": [8, 19, 22], "information": 8, "install": [8, 18, 25, 27, 28], "notebook": [8, 14, 25], "puert": [8, 27, 28], "8888": 8, "localhost": [8, 27, 28], "feedback": 8, "casi": [8, 22], "inmediant": 8, "familiariz": [8, 12, 14], "neces": [8, 9, 11, 18, 23], "maquin": 8, "perd": 8, "capac": [8, 10, 11, 21], "alin": [8, 20], "Ya": [8, 11, 24], "cuad": 8, "extension": [8, 15], "ipynb": [8, 15], "py": [8, 19, 20, 28], "compuest": 8, "cendill": 8, "celd": [8, 14], "resalt": 8, "negrit": 8, "cursiv": 8, "inclus": [8, 14, 15, 17, 18, 20, 22], "incorpor": [8, 12, 13, 18, 19, 20], "formul": [8, 14, 16, 23, 25], "latex": 8, "frac": [8, 10, 16, 23, 26], "sigm": [8, 16, 18, 25, 26], "mu": [8, 18, 26], "explic": [8, 14], "1991": 8, "rossum": 8, "famos": 8, "grup": [8, 28], "comedi": 8, "britan": 8, "monty": 8, "dummy": 8, "spam": 8, "eggs": 8, "lug": [8, 10, 11, 13, 14, 15, 16, 19, 20, 22, 23, 26, 28], "tipic": [8, 14, 18], "Su": 8, "popular": [8, 25], "aprend": 8, "tratamient": 8, "big": 8, "enfasis": 8, "semicolons": 8, "favor": 8, "filosof": 8, "pythonist": 8, "leers": 8, "zen": 8, "this": [8, 27, 28], "peters": 8, "beautiful": 8, "bett": 8, "than": [8, 19], "ugly": 8, "implicit": [8, 12, 18], "simpl": [8, 11, 13, 25, 27, 28], "complex": [8, 12], "complicat": 8, "flat": 8, "nest": 8, "spars": [8, 21, 26], "dens": 8, "readability": 8, "counts": 8, "special": 8, "aren": 8, "t": [8, 9, 13, 15, 16, 20, 21, 23, 24, 25], "enough": 8, "to": [8, 19, 20, 22, 25, 27, 28], "break": [8, 12], "rul": 8, "although": 8, "practicality": 8, "beats": 8, "purity": 8, "errors": 8, "should": 8, "nev": [8, 20], "silently": 8, "unless": 8, "explicitly": 8, "silenc": 8, "fac": [8, 16], "ambiguity": 8, "refus": 8, "temptation": 8, "guess": [8, 25], "ther": 8, "be": 8, "one": [8, 19, 20, 26], "preferably": 8, "only": 8, "obvious": 8, "way": 8, "do": [8, 27, 28], "that": 8, "may": [8, 22], "re": 8, "dutch": 8, "now": 8, "often": [8, 19], "right": [8, 19], "implementation": 8, "hard": 8, "explain": 8, "bad": 8, "easy": 8, "namespac": 8, "honking": 8, "great": 8, "let": 8, "thos": 8, "borr": [9, 12, 20, 21], "item1": 9, "item2": 9, "itemn": 9, "capitaliz": [9, 13], "convert": [9, 10, 12, 16, 18, 19, 24, 26], "aquell": [9, 17, 19, 20, 21, 22], "7ade7017386b": 9, "compat": [9, 16], "buqu": 9, "arrays": [9, 17, 20, 23], "descripcion": [9, 21, 22, 28], "vars": 9, "deshac": [9, 11], "expand": [9, 19], "veam": [9, 14, 15, 17, 18, 20, 22, 25, 26], "aqu": [9, 14, 18, 20, 24, 25, 28], "expon": [9, 27, 28], "min": [9, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26], "minim": [9, 14, 15, 16, 20, 22, 24], "max": [9, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26], "maxim": [9, 10, 14, 15, 16, 20, 24, 26], "any": [9, 15, 18, 19, 25, 27, 28], "all": [9, 11, 14, 15, 19], "empiez": [9, 11], "d7736ab3e6": 9, "veamosl": [9, 13, 15, 20], "col": [9, 21, 22, 25], "extend": 9, "Estos": [9, 15, 28], "inplac": [9, 20, 21, 26], "sent": [9, 11, 15, 18, 20, 22, 26], "esim": [9, 17], "indexerror": 9, "remov": [9, 11, 23], "coinc": 9, "valueerror": [9, 11], "insert": 9, "posicion": [9, 17, 20], "cond": [9, 15], "magic": 9, "tiemp": [9, 11, 18, 22, 27, 28], "999": [9, 21, 22], "cpu": [9, 18], "user": [9, 19], "\u00b5s": [9, 20], "ns": 9, "wall": 9, "440690273160268878963485086584048121988474010917382722554973456075609532448901633180259437950202687321303259232290860785316984860700206303955114241752651224675873408399440267959338258076321613758130133372529539347042982605207698146020522057684695558163502059375160114801849018132346298605821789418305378740276756187926194096742805466102629298972852134694966312536457747390615453312898505588339646862703020142029890479621367604783461882915721944003538122044057700922967618406667": 9, "execution": 9, "8f": 9, "00009036": 9, "tama\u00f1": [9, 11, 14, 15, 16, 18, 26], "estim": [9, 16, 21, 23, 26], "complej": [9, 16, 27, 28], "computacional": [9, 23], "resum": [10, 22], "tabl": [10, 20, 27, 28], "operation": 10, "description": 10, "cocient": [10, 12, 13], "absolut": [10, 20], "negacion": [10, 11], "verif": [10, 11], "mathbb": [10, 16, 24], "dots": [10, 16, 17, 23, 24], "grand": [10, 20], "trunc": [10, 16, 18], "floor": 10, "real": [10, 16, 24, 26, 27, 28], "determin": [10, 17, 20, 28], "cifr": 10, "43784": 10, "cientif": 10, "medient": [10, 14], "caract": 10, "simboliz": 10, "5e3": 10, "34": [10, 14, 19, 26], "34e": 10, "2500": [10, 12], "vem": [10, 14, 18, 20, 22, 26], "decid": [10, 24], "tan": [10, 22], "cant": 10, "limit": [10, 14, 20], "64": [10, 15], "reten": 10, "llen": 10, "1s": 10, "digit_str": 10, "convertirm": 10, "digit_int": 10, "digit_float": 10, "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111": 10, "111111111111111e": 10, "99": 10, "alla": [10, 11, 28], "precision": 10, "caus": [10, 12], "efect": [10, 22, 26], "precesicion": 10, "551115123125783e": 10, "nunc": [10, 22, 28], "estan": [10, 11, 13, 17, 18, 20, 22], "cerc": [10, 26], "cont": 10, "isclos": 10, "abs_tol": 10, "1e": [10, 18, 21], "ajat": 10, "aritmet": [10, 12, 15], "utilz": 10, "asoci": [10, 14, 15, 17, 20, 25, 28], "posterior": [10, 12, 26], "tecnic": [10, 16, 25], "foob": 10, "extiend": 10, "fractions": 10, "exact": 10, "racional": 10, "magnitud": 10, "invers": [10, 24], "planck": 10, "decimals": 10, "77": [10, 26], "314": 10, "conjut": 11, "investig": 11, "convenient": [11, 15], "similar": [11, 18, 20, 24], "fjkdsljfd": 11, "islow": 11, "reemplez": 11, "zero_tupl": 11, "one_tupl": 11, "holding": 11, "goog": 11, "490": 11, "address": 11, "shar": 11, "pric": [11, 21, 26], "host": 11, "port": 11, "funion": 11, "dedic": 11, "repas": 11, "hat": [11, 16, 23], "1566917e62a3": 11, "count": [11, 20, 22, 26], "individual": [11, 14, 17, 18, 25], "21": [11, 14, 16, 19, 22, 25, 26], "ped": [11, 18, 22, 24], "subconjunt": [11, 17, 19], "sucenci": 11, "seq": 11, "abcdefg": 11, "abcd": [11, 20], "aceg": 11, "invert": [11, 24], "gfedcb": 11, "bien": [11, 14, 15, 20, 21, 24, 26], "sab": [11, 22], "slic": [11, 19], "seleccion": [11, 14, 17, 19, 26], "independient": [11, 14, 16, 19, 28], "rev": 11, "slid": 11, "reemplaz": [11, 13], "aapl": [11, 25], "123": 11, "ibm": 11, "msft": [11, 25], "52": [11, 14, 26], "empty_dict": 11, "empaquet": 11, "fruit_or_veggi": 11, "fruit": [11, 27, 28], "carrot": 11, "veget": 11, "comill": [11, 13], "indiqu": [11, 12, 13, 22], "levant": 11, "keyerror": [11, 21], "amz": 11, "31": [11, 13, 14, 19, 22], "a5e5920f828": 11, "98": [11, 21, 22], "updat": [11, 14, 28], "grap": 11, "onion": 11, "levent": 11, "eva": 11, "manol": 11, "virgini": 11, "calif": 11, "mape": 11, "albert": 11, "hasheabl": 11, "example_dict": 11, "floats": 11, "key1": 11, "value1": 11, "key2": 11, "value2": 11, "key3": 11, "value3": 11, "constant": 11, "incopor": 11, "parec": [11, 17, 22, 26], "my_set": 11, "4fd79aa68f5c": 11, "unhash": 11, "interseccion": 11, "intersection": 11, "differenc": 11, "simetr": 11, "symmetric_differenc": 11, "iguald": 11, "fronzenset": 11, "bohr": 11, "curi": 11, "eul": 11, "fermi": 11, "feynm": 11, "heisenberg": 11, "noeth": 11, "bohm": 11, "einstein": 11, "hopp": 11, "montalcini": 11, "einsteins": 11, "collections": 11, "promes": 11, "miembr": 11, "vay": [11, 23], "requir": [11, 26], "contru": 11, "even_g": 11, "evolucion": 11, "my_tupl": 11, "simil": [11, 14, 15, 17, 19, 20, 22, 23, 26, 28], "keys": 11, "my_dict": 11, "zip": [11, 15, 20, 21, 22, 26], "respectivamet": 11, "101": 11, "Cu\u00e1l": 11, "eficient": [11, 15, 18, 20], "yield": [11, 12], "prueb": [11, 16, 28], "pint": [11, 14, 22, 23], "grafic": [11, 18, 20, 21, 25, 26, 27, 28], "config": [11, 14, 18, 22, 23, 24, 25, 26, 28], "inlinebackend": [11, 14, 18, 22, 23, 24, 25, 26], "figure_format": [11, 14, 18, 22, 23, 24, 25, 26], "retin": [11, 14, 18, 22, 23, 24, 25, 26], "as": [11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "matplotlib": [11, 16, 18, 20, 21, 22, 23, 24, 25, 26], "pyplot": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "plt": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "get_membership_time_from_rang": 11, "execution_tim": 11, "get_membership_time_from_iter": 11, "get_membership_time_from_list": 11, "get_membership_time_from_set": 11, "get_membership_time_from_tupl": 11, "repeat": 11, "_": [11, 12, 18, 19, 25], "mean_execution_tim": 11, "t_rang": 11, "t_list": 11, "t_set": 11, "t_tupl": 11, "fig": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28], "ax": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "subplots": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "plot": [11, 16, 18, 21, 23, 24, 25, 26], "set_xscal": [11, 18], "log": [11, 18, 23, 25, 28], "set_yscal": [11, 18, 23], "set_xlabel": [11, 14, 18, 21, 23, 25], "set_ylabel": [11, 14, 18, 21, 23, 25], "set_titl": [11, 14, 18, 21, 22, 23, 25, 26], "grid": [11, 14, 16, 18, 21, 23, 24], "legend": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "show": [11, 14, 16, 18, 24, 26], "get_deletion_time_from_list": 11, "get_deletion_time_from_set": 11, "get_len_time_from_rang": 11, "get_len_time_from_iter": 11, "get_len_time_from_list": 11, "get_len_time_from_set": 11, "get_len_time_from_tupl": 11, "transform": [12, 15, 16, 17, 18, 19, 24], "primit": 12, "forty": 12, "two": [12, 20], "1j": 12, "cu\u00e1l": [12, 24], "infier": 12, "utilic": [12, 20, 23], "exponencial": [12, 15], "logaritm": [12, 25], "trigonometr": 12, "fin": [12, 24], "mer": 12, "complet": [12, 17, 18, 20, 23, 26], "manual": [12, 24, 26], "verifiqu": [12, 28], "punter": 12, "300": [12, 20, 26], "bytes": [12, 20], "getsizeof": [12, 18], "140598752835760": 12, "utliz": 12, "400": 12, "140598672148560": 12, "cicl": 12, "vid": 12, "comienz": [12, 16], "inacces": 12, "recolector": 12, "basur": 12, "garbag": 12, "collector": 12, "encarg": 12, "reclam": 12, "innacces": 12, "minuscul": [12, 13], "empiec": [12, 17], "pep": 12, "snak": 12, "numberofcollegegraduat": 12, "upperc": 12, "camel": 12, "number_of_college_graduat": 12, "rais": [12, 21], "try": 12, "lambd": [12, 18, 19, 20, 21, 23, 25], "assert": [12, 26], "finally": 12, "nonlocal": 12, "produc": [12, 20, 24], "habitual": [12, 17, 20], "potenci": 12, "256": 12, "coment": [12, 14], "simplific": [12, 21], "line": [12, 14, 28], "estem": 12, "car": [12, 21, 26], "futur": [12, 22], "entend": [12, 22], "centr": [12, 21], "legibl": 12, "practic": [12, 21, 26], "caracter": 13, "tripl": 13, "codif": [13, 26], "utf": 13, "gam": [13, 28], "tild": 13, "\u00f1": 13, "chin": 13, "\u4f60\u597d": 13, "sentenc": 13, "manch": 13, "quier": [13, 17, 20], "acord": 13, "15": [13, 14, 15, 18, 20, 22, 25, 26, 27, 28], "E": [13, 15], "acor": 13, "Estas": [13, 15, 18], "exclus": 13, "tabul": 13, "obvi": 13, "repr": 13, "ahorr": [13, 20], "bye": 13, "89fdshjfjl43fd92": 13, "upper": 13, "low": 13, "une": 13, "univers": 13, "sevill": 13, "split": [13, 19, 21, 23, 25], "facult": 13, "fisic": 13, "replac": [13, 19], "incrust": 13, "comod": [13, 20], "antoni": 13, "msg": [13, 21], "Me": 13, "a\u00f1os": [13, 22, 24], "584930589": 13, "formated": 13, "antigu": 13, "opcion": [13, 24, 26, 28], "10pi": 13, "5f": 13, "41593": 13, "diferenci": [13, 15], "rsplit": 13, "nbar": 13, "decimosegund": 13, "contains": [13, 19], "Mi": 13, "prncipal": 14, "bibliotec": [14, 18, 25, 27, 28], "visualiz": [14, 16, 18, 20], "pd": [14, 19, 20, 21, 22, 25, 26, 27, 28], "usr": [14, 19, 20, 25, 27, 28], "interaccion": 14, "integr": [14, 20, 28], "imagen": [14, 26], "saldran": 14, "aperit": 14, "figur": [14, 16, 17, 25, 26, 27, 28], "comenteri": 14, "dam": [14, 18, 20], "brev": 14, "contenedor": 14, "ax1": 14, "add_subplot": [14, 23], "rejill": [14, 26], "2x2": 14, "caj": [14, 21, 24], "axes": [14, 22, 25, 26], "ax2": 14, "activ": [14, 22], "moment": 14, "dibuj": [14, 24], "randn": [14, 18, 20], "cumsum": [14, 15, 20], "volv": [14, 24], "histogram": [14, 20, 22, 25, 26], "hist": [14, 22, 25, 26], "bins": [14, 22, 26], "color": [14, 16, 19, 20, 23, 24, 26], "alpha": [14, 22, 23, 26], "coloc": 14, "scatt": [14, 16, 23, 25, 26], "arang": [14, 15, 16, 17, 18, 20, 21], "30": [14, 16, 19, 24], "mezcl": [14, 17], "subplot": 14, "rellen": [14, 16], "linspac": [14, 18, 23, 24, 26], "subfigur": 14, "plor": 14, "sen": 14, "rows": [14, 19, 21, 22], "columns": [14, 19, 20, 21, 22, 25, 26], "panel": 14, "numb": [14, 15, 20, 21, 26, 27, 28], "creat": 14, "cosen": 14, "inconvenient": [14, 28], "proced": [14, 20, 26], "creacion": 14, "cuales": 14, "pens": [14, 28], "eventual": 14, "antrior": 14, "dependient": 14, "diez": 14, "corresponient": 14, "rect": [14, 24], "bast": [14, 18, 26], "ajust": [14, 21, 28], "He": 14, "blu": [14, 19, 22], "cort": [14, 26], "rgbcmyk": 14, "75": [14, 19, 20, 22, 24], "gris": 14, "ffdd44": 14, "hex": 14, "rrggbb": 14, "00": [14, 15, 18, 20, 22, 25, 27, 28], "ff": 14, "rgb": 14, "chartreus": 14, "linestyl": 14, "dashdot": 14, "dott": 14, "compact": 14, "catacterist": 14, "gre": 14, "cyan": [14, 24], "red": [14, 19], "deduc": [14, 22], "xlim": 14, "ylim": 14, "axis": [14, 15, 16, 18, 20, 21, 22, 23, 26], "tight": 14, "asegur": [14, 21, 28], "rati": [14, 26], "aspect": 14, "proporcional": 14, "ejes": [14, 17, 18, 20], "equal": [14, 25], "Otro": [14, 18, 28], "titl": 14, "curv": [14, 23], "xlabel": [14, 26], "ylabel": [14, 26], "getters": 14, "setters": 14, "axs": 14, "looks": 14, "ellips": 14, "fontsiz": [14, 22, 26], "circl": 14, "still": 14, "even": [14, 25], "changing": 14, "limits": 14, "set_aspect": 14, "box": [14, 27, 28], "aut": 14, "adjust": 14, "tight_layout": [14, 18, 22, 26], "muestr": [14, 18, 20], "leyend": 14, "consig": [14, 18], "notes": [14, 17, 18, 20, 28], "keyword": 14, "aleatori": [14, 15, 18, 23, 25], "acumul": [14, 15, 20], "sumand": [14, 23], "titul": 14, "grill": [14, 16], "unir": 14, "mark": [14, 23], "facecolor": 14, "edgecolor": 14, "aefect": 14, "ilustr": 14, "aspact": 14, "v": [14, 16, 17, 18, 22, 25, 26], "rcparams": [14, 25, 26], "mpl": [14, 25, 26], "linewidth": 14, "rand": [14, 25], "rcparamsdefault": 14, "temporal": 14, "rc_context": 14, "style": [14, 22, 25], "bmh": 14, "fuent": [14, 22], "gros": 14, "fond": [14, 17, 24], "plots": 14, "xkcd": 14, "ages_x": 14, "19": [14, 15, 18, 19, 20, 22], "24": [14, 15, 18, 19, 20, 25, 26, 27, 28], "27": [14, 19, 24, 25], "29": [14, 19, 26], "32": [14, 19, 22, 26], "33": [14, 15, 19, 26], "35": [14, 19, 26], "36": [14, 15, 18, 19, 22], "37": [14, 22, 26], "38": [14, 19, 22, 28], "39": [14, 15, 18, 19, 22, 25], "40": [14, 16, 19, 20, 22], "41": [14, 19, 26], "43": [14, 19], "44": [14, 18, 22], "46": [14, 22], "47": [14, 22], "48": [14, 19], "49": [14, 15, 26], "51": [14, 19], "53": 14, "54": [14, 19, 20, 21], "py_dev_y": 14, "20046": 14, "17100": 14, "20000": 14, "24744": 14, "30500": 14, "37732": 14, "41247": 14, "45372": 14, "48876": 14, "53850": 14, "57287": 14, "63016": 14, "65998": 14, "70003": 14, "70000": [14, 20], "71496": 14, "75370": 14, "83640": 14, "84666": 14, "84392": 14, "78254": 14, "85000": 14, "87038": 14, "91991": 14, "100000": [14, 20, 26], "94796": 14, "97962": 14, "93302": 14, "99240": 14, "102736": 14, "112285": 14, "100771": 14, "104708": 14, "108423": 14, "101407": 14, "112542": 14, "122870": 14, "120000": 14, "js_dev_y": 14, "16446": 14, "16791": 14, "18942": 14, "21780": 14, "25704": 14, "29000": 14, "34372": 14, "37810": 14, "43515": 14, "46823": 14, "49293": 14, "53437": 14, "56373": 14, "62375": 14, "66674": 14, "68745": 14, "68746": 14, "74583": 14, "79000": 14, "78508": 14, "79996": 14, "80403": 14, "83820": 14, "88833": 14, "91660": 14, "87892": 14, "96243": 14, "90000": 14, "99313": 14, "102264": 14, "108000": 14, "105000": 14, "104000": 14, "javascript": 14, "dev_y": 14, "17784": 14, "16500": 14, "18012": 14, "20628": 14, "25206": 14, "30252": 14, "34368": 14, "38496": 14, "42000": 14, "46752": 14, "49320": 14, "53200": 14, "56000": 14, "62316": 14, "64928": 14, "67317": 14, "68748": 14, "73752": 14, "77232": 14, "78000": 14, "79536": 14, "82488": 14, "88935": 14, "90056": 14, "95000": 14, "91633": 14, "98150": 14, "98964": 14, "98988": 14, "108923": 14, "103117": 14, "444444": 14, "devs": 14, "ages": 14, "salary": 14, "usd": 14, "age": [14, 19, 21], "svg": 14, "savefig": [14, 26], "traspuest": [15, 20], "reshap": [15, 17, 18, 20], "usos": 15, "rng": [15, 16, 17, 18, 23], "default_rng": [15, 16, 17, 18, 23], "97734426": 15, "34168783": 15, "54370593": 15, "09067281": 15, "38656466": 15, "42387283": 15, "6809858": 15, "79495013": 15, "6643198": 15, "11542681": 15, "23222994": 15, "29016714": 15, "48905073": 15, "4287645": 15, "12921964": 15, "54877746": 15, "53484643": 15, "38120392": 15, "column": [15, 16, 17, 18, 19, 20, 21, 22, 25, 26], "1684198013823905": 15, "565673422517082": 15, "matriz": [15, 16, 24, 25, 26], "13835602": 15, "59077327": 15, "1402564": 15, "9597364": 15, "18216807": 15, "93447353": 15, "matric": [15, 16, 18], "3427873": 15, "1684198": 15, "49677525": 15, "03255648": 15, "75784613": 15, "84572115": 15, "matmul": 15, "dimension": [15, 16, 17, 18, 23, 24], "shap": [15, 16, 17, 18, 21, 22, 23, 25, 26], "x1": [15, 23], "x2": [15, 23], "x3": 15, "y1": 15, "y2": 15, "y3": 15, "radic": 15, "eje": [15, 17, 18, 23], "penultim": 15, "ufunc": 15, "actu": [15, 18, 20], "raiz": 15, "41421356": [15, 18], "73205081": [15, 18], "23606798": [15, 18], "44948974": [15, 18], "64575131": 15, "82842712": 15, "exp": [15, 20, 23], "00000000e": 15, "71828183e": 15, "38905610e": 15, "00855369e": 15, "01": [15, 18, 25], "45981500e": 15, "48413159e": 15, "03428793e": 15, "09663316e": 15, "03": 15, "98095799e": 15, "10308393e": 15, "87429038": 15, "60146503": 15, "78618126": 15, "39004253": 15, "71614978": 15, "39805865": 15, "49221638": 15, "44731592": 15, "18653805": 15, "0021312": 15, "18674062": 15, "54596008": 15, "09953302": 15, "6774103": 15, "24323459": 15, "78876074": 15, "maximum": 15, "6014650336830638": 15, "unidimensional": [15, 16, 17, 18, 20], "xarr": 15, "yarr": 15, "mask": [15, 17, 22], "quis": 15, "trasl": 15, "multidimensional": [15, 17, 18, 21], "afortun": 15, "terc": [15, 24], "904584": 15, "47681661": 15, "85527621": 15, "23259456": 15, "15959159": 15, "98360584": 15, "19441186": 15, "18022266": 15, "4686294": 15, "20309533": 15, "69897494": 15, "34110354": 15, "14021694": 15, "73078875": 15, "35924888": 15, "37697319": 15, "select": 15, "masc": 15, "consecut": [15, 18], "probabl": 15, "Algo": 15, "dtype": [15, 16, 19, 20, 21, 22, 24, 25, 26], "u13": 15, "leq": [15, 16, 23, 24], "fun": [15, 24, 25], "arr": [15, 17, 18], "ndarray": [15, 16, 22], "std": [15, 18, 20, 21, 22, 25, 26], "varianz": [15, 22], "resp": 15, "argmin": 15, "argmax": 15, "09112171": 15, "08230266": 15, "89863545": 15, "52677635": 15, "54990182": 15, "07619354": 15, "75797502": 15, "860579": 15, "09303698": 15, "44922159": 15, "33924061": 15, "10457966": 15, "1117293": 15, "90753648": 15, "05131964": 15, "62497588": 15, "93907081": 15, "15168268": 15, "01746402": 15, "41960373": 15, "27278425211733": 15, "0636392126058665": 15, "aplan": 15, "00881904": 15, "90745449": 15, "43423084": 15, "88432903": 15, "96052256": 15, "20254755": 15, "06312655": 15, "97008957": 15, "52086797": 15, "18162736": 15, "28620701": 15, "39793631": 15, "49039984": 15, "54171947": 15, "08325641": 15, "02232721": 15, "87064453": 15, "85318052": 15, "27278425": 15, "recorr": [15, 20, 23], "60855771": 15, "15722393": 15, "44422988": 15, "34236586": 15, "29738196": 15, "3791586": 15, "21118452": 15, "12979653": 15, "44735539": 15, "54121989": 15, "00610913": 15, "14066043": 15, "38735535": 15, "55181709": 15, "45533072": 15, "19858018": 15, "49193501": 15, "44008779": 15, "3628672": 15, "14726055": 15, "86695913": 15, "alcanz": [15, 20], "27853877": 15, "17616873": 15, "08639434": 15, "71179482": 15, "49584663": 15, "3110513": 15, "45771891": 15, "8344855": 15, "29078383": 15, "01771914": 15, "28984018": 15, "29882205": 15, "30483596": 15, "62936796": 15, "3178527": 15, "48674387": 15, "12290782": 15, "84551946": 15, "59530505": 15, "73887554": 15, "68253372": 15, "3045412": 15, "15765242": 15, "10783287": 15, "65411545": 15, "46806825": 15, "24073242": 15, "44623373": 15, "18700595": 15, "21069342": 15, "04472487": 15, "56415783": 15, "97661418": 15, "35211161": 15, "42571366": 15, "18813283": 15, "0133082": 15, "30901811": 15, "36809575": 15, "49092016": 15, "29272923": 15, "35134416": 15, "54762578": 15, "35406801": 15, "32778901": 15, "59953407": 15, "57534093": 15, "30190145": 15, "5022292": 15, "59797817": 15, "ontar": 15, "aprovech": 15, "identif": 15, "generaliz": [15, 20], "bools": 15, "recuper": [15, 26], "tard": [15, 18], "sav": [15, 26], "load": [15, 26], "npy": 15, "j": [15, 16, 17, 20, 23, 24, 25], "un_array": 15, "savez": 15, "npz": 15, "array_arch": 15, "carg": [15, 18, 19, 20, 21], "perez": 15, "arch": 15, "81": 15, "savez_compress": 15, "arrays_comprim": 15, "ls": [15, 18], "lah": 15, "520": 15, "drwxr": 15, "xr": 15, "javlintor": 15, "staff": 15, "320b": 15, "1m": 15, "36m": [15, 18], "160b": 15, "nov": [15, 22], "08": [15, 28], "rw": 15, "650b": 15, "424b": 15, "28k": 15, "operations": 15, "0k": 15, "42k": 15, "164k": 15, "introduction": 15, "798b": 15, "oct": 15, "nn": 15, "208b": 15, "rm": 15, "int_": [16, 18], "dt": 16, "discret": 16, "f_0": 16, "f_": 16, "g_0": 16, "g_": 16, "conv": 16, "component": [16, 17], "sum_": [16, 23, 24, 25], "f_ig_j": 16, "inputs": [16, 17, 23], "arr1": [16, 18], "arr2": [16, 18], "60": [16, 19, 20, 22], "conv_dim": 16, "arr_conv": 16, "my_gen": 16, "matrix": [16, 22, 24, 26], "exterior": 16, "diagonal": [16, 18], "conv2": 16, "outer_mat": 16, "out": [16, 19, 25], "trac": 16, "offset": 16, "imag": [16, 26], "descomposicion": [16, 24], "svd": 16, "singul": 16, "decomposition": 16, "expres": [16, 20], "singular": 16, "recuerd": [16, 26], "intens": 16, "pixel": 16, "roj": 16, "verd": 16, "azul": 16, "cons": [16, 20, 21, 24, 25], "alto": [16, 20, 28], "ancho": 16, "aproxima_img": 16, "aproxim": [16, 21, 23], "scipy": [16, 18, 21, 22, 25], "misc": 16, "im": [16, 23], "cv2": 16, "imre": [16, 26], "img": 16, "jpg": 16, "imshow": [16, 26], "canal": [16, 21, 22], "linalg": 16, "cuid": [16, 18], "esper": [16, 22, 25, 28], "transpos": 16, "fill_diagonal": 16, "clip": 16, "transpon": 16, "im_t": 16, "im_c": 16, "normaliz": [16, 20, 22, 25, 26], "porqu": [16, 21, 24, 28], "transpuest": 16, "factoriz": 16, "usv": 16, "ortogonal": 16, "raic": 16, "aa": 16, "conjug": 16, "correspond": [16, 18, 20, 22], "matricial": [16, 23], "proyect": 16, "multiplic": [16, 18], "garantiz": 16, "signal": 16, "convolve2d": 16, "sam": 16, "pmatrix": [16, 23], "approx": 16, "windows": [16, 28], "gaussi": 16, "sharr": 16, "scharr": 16, "3j": 16, "10j": 16, "path": [16, 20, 21, 22, 26], "png": [16, 26], "ones": [16, 18, 23, 25], "img_convolv": 16, "zeros_lik": 16, "ponder": 16, "cojunt": 16, "regresor": [16, 22, 23, 26], "theta_0": [16, 23], "theta_1x_1": [16, 23], "theta_nx_n": [16, 23], "featur": [16, 19, 21], "x_i": [16, 17], "predich": 16, "theta_i": 16, "ecuacion": 16, "x_1": [16, 17, 23, 24], "cdots": [16, 23], "x_n": [16, 17, 23, 24], "theta_1": [16, 23], "vdots": [16, 23], "theta_n": [16, 23], "boldsymbol": 16, "cdot": [16, 23], "thet": [16, 23], "minimic": 16, "_i": [16, 23], "y_i": 16, "optim": [16, 23, 24, 26], "ty": 16, "x_": 16, "1n": 16, "2n": 16, "m1": 16, "mn": 16, "y_0": 16, "y_1": 16, "y_n": 16, "regresionlineal": 16, "entren": [16, 21, 23], "coeficient": [16, 22], "_thet": 16, "y_hat": 16, "varibl": 16, "descrit": 16, "inv": 16, "pinv": 16, "vstack": 16, "hstack": 16, "array_lik": 16, "concatenat": [16, 23], "prediccion": [16, 23, 26], "test": [16, 20, 28], "rl": 16, "integers": [16, 23], "siz": [16, 18, 19, 23, 24], "standard_normal": [16, 23], "9973099": 16, "00645781": 16, "71": [16, 20], "33c21612b609": 16, "userwarning": 16, "currently": 16, "using": 16, "ipykernel": 16, "pylab": 16, "backend_inlin": 16, "which": 16, "backend": 16, "so": 16, "cannot": 16, "explor": [17, 18, 22], "flexibil": 17, "unidimensonal": 17, "consecuent": [17, 21, 22], "l_sublist": 17, "v_subarray": 17, "v_slic": 17, "12345": 17, "copy": [17, 26], "casuist": 17, "subarray": 17, "c2d": 17, "c3d": 17, "ndenumeart": 17, "ndenumerat": 17, "old_valu": 17, "reestablec": 17, "813": 17, "2100": 17, "slicings": 17, "bidimensional": [17, 18, 20], "pierd": 17, "mantien": [17, 21], "slice_1": 17, "slice_2": 17, "tridimensional": 17, "componenet": 17, "bob": 17, "joe": 17, "will": [17, 25], "00956514": 17, "25628708": 17, "18394276": 17, "28634546": 17, "85000431": 17, "04028551": 17, "20689953": 17, "25049682": 17, "46840893": 17, "57883228": 17, "7674367": 17, "3365187": 17, "85013471": 17, "44981425": 17, "17843139": 17, "05976842": 17, "87556869": 17, "23884001": 17, "41158185": 17, "11957846": 17, "51579891": 17, "32351957": 17, "43951358": 17, "02277686": 17, "621115": 17, "64728839": 17, "59761337": 17, "12366288": 17, "person": [17, 19, 20, 22], "complementari": 17, "jug": 17, "neativ": 17, "observes": [17, 18], "fij": [17, 23, 24], "char": 17, "startswith": 17, "flip": 17, "inviert": 17, "d_i": 17, "quizas": 18, "algebr": 18, "abiert": 18, "rivaliz": 18, "matlab": 18, "histori": 18, "alrededor": 18, "scikits": 18, "dask": 18, "opencv": 18, "seaborn": [18, 21, 22, 25, 26], "statsmodels": 18, "spacy": 18, "repot": 18, "streamlit": 18, "ali": [18, 20], "cund": 18, "serv": [18, 26, 27, 28], "rutin": 18, "lent": 18, "millon": 18, "analog": 18, "10000000": 18, "list1": 18, "timeit": [18, 20], "list2": 18, "448": 18, "ms": [18, 20], "loop": [18, 20], "dev": [18, 20, 25, 27, 28], "runs": [18, 20], "each": [18, 20, 25], "89": 18, "823": 18, "new_fil": 18, "sample_dat": 18, "pympler": 18, "collecting": [18, 27, 28], "downloading": [18, 26, 27, 28], "py3": [18, 27, 28], "whl": [18, 27, 28], "164": 18, "kb": [18, 27, 28], "25l": 18, "90m": [18, 27, 28], "0m": [18, 27, 28], "32m0": 18, "31m": [18, 27, 28], "eta": [18, 23, 27, 28], "2k": [18, 27, 28], "91m": 18, "32m163": 18, "31m5": 18, "mb": [18, 22, 26, 27, 28], "36m0": [18, 27, 28], "32m164": 18, "31m4": 18, "25hinstalling": 18, "collect": [18, 27, 28], "successfully": [18, 24, 27, 28], "asizeof": 18, "80000128": 18, "400000048": 18, "80000112": 18, "80000056": 18, "get_ex_tim": 18, "tri": 18, "ex_tim": 18, "mean_ex_tim": 18, "get_duplicate_time_python": 18, "get_duplicate_time_numpy": 18, "get_sum_time_python": 18, "get_sum_time_numpy": 18, "t_duplicate_python": 18, "t_duplicate_numpy": 18, "t_sum_python": 18, "t_sum_numpy": 18, "figsiz": [18, 21, 22, 23, 24, 25, 26], "pur": 18, "dimensional": [18, 21], "hic": 18, "psuedoaletori": 18, "58619635": 18, "30295786": 18, "11850167": 18, "98946757": 18, "5681518": 18, "67146183": 18, "8619635": 18, "02957863": 18, "1850167": 18, "89467569": 18, "68151804": 18, "71461827": 18, "1723927": 18, "60591573": 18, "23700334": 18, "97893514": 18, "13630361": 18, "34292365": 18, "homogene": 18, "float64": [18, 19, 20, 22, 24, 25, 26], "ndim": 18, "reduc": [18, 24], "terminolog": 18, "suscept": [18, 26], "data1": 18, "correct": [18, 28], "data2": 18, "eye": 18, "diag": 18, "interval": [18, 26], "defult_rng": 18, "standard": [18, 26], "deviation": [18, 26], "float_": 18, "int32": 18, "iinf": 18, "finf": 18, "2147483648": 18, "2147483647": 18, "uint8": 18, "255": 18, "resolution": [18, 26], "7976931348623157e": 18, "308": 18, "astype": [18, 19], "int64": [18, 19, 20, 22, 26], "float_arr": 18, "numeric_strings": 18, "string_": 18, "broadcasting": 18, "efectu": 18, "escalar": 18, "33333333": 18, "16666667": 18, "dis": 19, "inspir": 19, "sql": [19, 20], "groupby": 19, "dataset": [19, 21, 22, 23, 26], "mattharrison": [19, 20], "datasets": [19, 20, 26], "raw": [19, 20, 26], "mast": [19, 20, 26], "2020": 19, "jetbrains": 19, "survey": 19, "jb": 19, "read_csv": [19, 20, 21, 22, 26], "lib": [19, 20, 25, 27, 28], "cor": [19, 20, 22, 26, 27, 28], "interactiveshell": [19, 20], "3326": [19, 20], "dtypewarning": [19, 20], "152": 19, "hav": [19, 20, 25], "mix": [19, 20], "types": [19, 20], "specify": [19, 20], "option": [19, 20], "low_memory": [19, 20], "exec": [19, 20], "code_obj": [19, 20], "user_global_ns": [19, 20], "user_ns": [19, 20], "pipelin": [19, 21], "cols": [19, 21, 22], "datascientist": 19, "country": 19, "liv": 19, "employment": 19, "about": 19, "how": [19, 25], "job": [19, 21], "team": 19, "purp": 19, "missing": 19, "nps": 19, "years": 19, "python2": 19, "several": 19, "projects": 19, "coding": 19, "jb2": 19, "renam": 19, "assign": 19, "df_": 19, "are_you_datascientist": 19, "nan": [19, 20], "company_siz": 19, "sur": 19, "5000": [19, 20], "500": [19, 21, 22, 26], "501": 19, "001": [19, 23], "1001": 19, "country_liv": 19, "category": [19, 20], "employment_status": 19, "filln": [19, 20, 26], "other": 19, "is_python_main": 19, "team_siz": 19, "iloc": [19, 21, 22, 26], "peopl": 19, "wher": [19, 26], "years_of_coding": 19, "less": 19, "extract": [19, 21, 22], "python_years": 19, "python3_v": 19, "python3_version_most": 19, "use_python_most": 19, "unknown": [19, 22], "drop": [19, 20, 21, 22, 26], "python2_version_most": 19, "first_learn_about_main_id": 19, "how_often_use_main_id": 19, "ide_main": 19, "job_team": 19, "main_purp": 19, "missing_features_main_id": 19, "nps_main_id": 19, "several_projects": 19, "partially": 19, "employ": [19, 21], "organization": 19, "conferenc": 19, "group": [19, 28], "weekly": 19, "community": 19, "work": 19, "external": 19, "consultant": 19, "train": [19, 23], "need": 19, "3_7": 19, "many": 19, "different": 19, "indi": 19, "fully": 19, "school": [19, 21, 22], "university": [19, 22], "daily": [19, 25], "both": 19, "personal": [19, 21, 22], "3_6": 19, "softwar": [19, 24], "prototyping": 19, "unit": 19, "stat": [19, 20], "friend": 19, "colleag": 19, "own": 19, "independently": 19, "devops": 19, "system": 19, "administration": 19, "writing": 19, "autom": 19, "lt": [19, 26], "na": 19, "gt": [19, 20], "ple": 19, "3_8": 19, "italy": 19, "student": 19, "search": 19, "engin": 19, "educational": 19, "54457": 19, "russi": 19, "federation": 19, "54458": 19, "54459": 19, "earning": 19, "incom": 19, "directl": 19, "54460": 19, "spain": 19, "54461": 19, "algeri": 19, "onlin": 19, "platform": 19, "cours": [19, 22], "54462": 19, "dataframegroupby": 19, "gb": [19, 21], "generic": 19, "seriesgroupby": 19, "0x7fab4deee2b0": 19, "_groupby": 19, "528736": 19, "argentin": 19, "65641": 19, "armeni": 19, "967742": 19, "australi": 19, "527578": 19, "austri": 19, "914894": 19, "023162": 19, "uruguay": 19, "30303": 19, "uzbekist": 19, "290323": 19, "venezuel": 19, "909091": 19, "viet": 19, "421053": 19, "length": [19, 22], "76": [19, 20], "freelanc": 19, "pursuing": 19, "profession": 19, "without": [19, 28], "long": 19, "term": 19, "commitment": 19, "285714": 19, "344828": 19, "333333": 19, "181818": 19, "directly": 19, "business": 19, "trad": 19, "384615": 19, "working": 19, "571429": 19, "608": 19, "unstack": 19, "411765": 19, "4375": 19, "954545": 19, "209524": 19, "913043": 19, "842105": 19, "818182": 19, "074468": 19, "21875": 19, "828571": 19, "470588": 19, "857143": 19, "318182": 19, "615385": 19, "8125": 19, "318471": 19, "343223": 19, "534884": 19, "894737": 19, "920635": 19, "446512": 19, "947791": 19, "89375": 19, "125": [19, 20], "888889": 19, "826087": 19, "454545": 19, "833333": 19, "025641": 19, "nosotr": [19, 28], "agg": 19, "per_emacs": 19, "emacs": 19, "000000": [19, 20, 22, 26], "102564": 19, "877698": 19, "595745": 19, "025157": 19, "428571": 19, "192053": 19, "076923": 19, "710884": 19, "448000": 19, "391337": 19, "692308": 19, "160000": 19, "812500": 19, "comb": 19, "750000": [19, 20, 26], "666667": 19, "df1": [19, 20], "georg": 19, "ring": 19, "purpl": 19, "df2": [19, 20], "paul": 19, "carcolor": 19, "inner": 19, "left": [19, 22], "cruz": [19, 21], "columans": 19, "colum": 19, "left_on": 19, "right_on": 19, "name_x": 19, "name_y": 19, "inidic": 19, "introduccion": 20, "analiz": [20, 21], "rap": [20, 26], "escritur": 20, "excel": 20, "graci": [20, 23], "subyacent": 20, "veloc": 20, "interfaz": 20, "amig": 20, "tabular": 20, "eleg": [20, 21, 22, 28], "seran": 20, "rangeindex": [20, 22, 26], "s2": 20, "nocion": 20, "subseri": 20, "directem": 20, "598150": 20, "1096": 20, "633158": 20, "403": [20, 22], "428793": 20, "085537": 20, "sdat": 20, "ohi": 20, "35000": 20, "tex": 20, "71000": 20, "oregon": 20, "16000": 20, "utah": 20, "s3": 20, "californi": [20, 26], "s4": 20, "pes": [20, 21, 22], "inexistent": [20, 21], "isnull": 20, "32000": 20, "142000": 20, "xs": 20, "xl": 20, "categori": 20, "city_mpg": 20, "highway_mpg": 20, "vehicl": 20, "df": [20, 21, 22, 27, 28], "city08": 20, "highway08": 20, "median": [20, 26], "cut": 20, "preci": [20, 21, 22, 25, 26], "categor": [20, 21], "cuartil": 20, "value_counts": [20, 22, 26], "barr": [20, 21, 26], "compart": [20, 28], "2001": 20, "2002": 20, "2003": 20, "fram": [20, 22, 26], "infom": 20, "info": [20, 22, 26, 27, 28], "entri": [20, 22, 26], "null": [20, 22, 26], "dtypes": [20, 22, 26], "memory": [20, 22, 26], "usag": [20, 22, 26], "272": 20, "head": [20, 26], "muest": 20, "thre": 20, "four": 20, "six": [20, 25, 27, 28], "debt": 20, "deten": 20, "parcial": 20, "eastern": 20, "colunm": 20, "extern": 20, "constitu": 20, "df3": 20, "vicevers": 20, "pdat": 20, "acomod": 20, "refier": 20, "new_s": 20, "new": [20, 28], "york": 20, "indicand": 20, "destruct": 20, "anter": 20, "hab": [20, 26], "admit": 20, "particular": [20, 26], "refir": 20, "filt": 20, "subtabl": 20, "inclusiv": 20, "complic": 20, "set_index": 20, "mak": 20, "ferrari": 20, "abcde": 20, "POr": 20, "operand": 20, "fill_valu": 20, "sub": 20, "mul": 20, "div": [20, 23, 27, 28], "pow": 20, "relacion": [20, 21, 23], "reindex": 20, "bde": 20, "497856": 20, "100599": 20, "044469": 20, "006873": 20, "508566": 20, "075500": 20, "468307": 20, "198138": 20, "652674": 20, "376750": 20, "278911": 20, "017388": 20, "apply": 20, "383623": 20, "407967": 20, "670062": 20, "opracion": 20, "734510": 20, "376317": 20, "811918": 20, "867884": 20, "adapt": 20, "68": 20, "73": [20, 22], "74": [20, 22], "gt20": 20, "88": [20, 26], "226": [20, 22], "63": 20, "10000": 20, "select_dtyp": [20, 21, 22, 26], "comenz": 20, "sort_index": 20, "ascending": [20, 22, 26], "ascendent": 20, "descendent": 20, "sort_valu": [20, 22, 26], "situ": 20, "lexicograf": 20, "skipn": 20, "exclu": 20, "275": 20, "idxmax": 20, "083333": 20, "900000": 20, "493685": 20, "262742": 20, "500000": 20, "075000": 20, "700000": 20, "400000": 20, "250000": 20, "300000": 20, "uniqu": 20, "top": [20, 27, 28], "freq": 20, "housing": [20, 21, 26], "tarfil": [20, 26], "urllib": [20, 21, 22, 26], "download_root": [20, 26], "githubusercontent": [20, 26], "ageron": [20, 26], "handson": [20, 26], "ml2": [20, 26], "housing_path": [20, 26], "housing_url": [20, 26], "tgz": [20, 26], "fetch_housing_dat": [20, 26], "makedirs": [20, 21, 22, 26], "exist_ok": [20, 21, 22, 26], "tgz_path": [20, 26], "urlretriev": [20, 21, 22, 26], "housing_tgz": [20, 26], "open": [20, 21, 26], "extractall": [20, 26], "clos": [20, 25, 26], "load_housing_dat": [20, 26], "csv_path": [20, 21, 22, 26], "faltant": [20, 22, 25, 26], "clasific": 21, "client": [21, 26], "subscrib": 21, "plaz": [21, 22], "represet": [21, 22], "candidat": [21, 22], "marital": 21, "civil": [21, 22], "education": 21, "educ": [21, 22], "incumpl": [21, 22], "credit": [21, 22], "hipotec": [21, 22], "loan": 21, "campa\u00f1": [21, 22], "comunic": [21, 22], "mes": [21, 22], "present": [21, 22], "a\u00f1o": [21, 22, 24], "day_of_week": 21, "dia": [21, 22, 28], "seman": [21, 22], "duration": 21, "duracion": [21, 22], "historial": 21, "campaign": 21, "pdays": 21, "dias": [21, 22], "hub": [21, 22], "previous": 21, "poutcom": 21, "socioeconom": 21, "emp": 21, "rat": [21, 23], "tas": [21, 22, 23], "variacion": [21, 22], "cuatrimestral": [21, 22], "idx": 21, "consum": [21, 22, 26], "mensual": [21, 22], "conf": 21, "confianz": [21, 22, 28], "consumidor": [21, 22], "euribor3m": 21, "euribor": [21, 22], "diari": [21, 22, 25], "nr": 21, "mil": [21, 22], "Ha": [21, 22], "contrat": [21, 22], "zipfil": [21, 22], "typing": [21, 25], "sns": [21, 22, 26], "stats": [21, 22], "ss": [21, 22], "working_d": [21, 22], "download_url": [21, 22], "ics": [21, 22], "uci": [21, 22], "edu": [21, 22], "ml": [21, 22, 26], "datab": [21, 22], "00222": [21, 22], "bank": [21, 22], "additional": [21, 22], "bank_path": [21, 22], "raw_data_rel_path": [21, 22], "data_raw": [21, 22], "zip_path": [21, 22], "full": [21, 22], "raw_data_path": [21, 22], "fetch_dat": [21, 22], "zip_file_path": [21, 22], "zip_ref": [21, 22], "load_dat": [21, 22], "auxiliar": [21, 22], "filter_cols": 21, "rem_cols": 21, "estratific": 21, "desbalanc": [21, 22], "sklearn": [21, 26], "model_selection": [21, 26], "stratifiedshufflesplit": [21, 26], "sss": 21, "n_splits": 21, "test_siz": 21, "random_stat": [21, 26], "train_idx": 21, "test_idx": 21, "bank_train": 21, "bank_test": 21, "loc": [21, 22], "y_train": [21, 23], "y_test": [21, 23, 26], "centran": 21, "proces": [21, 26], "cab": 21, "dispong": [21, 26], "produccion": [21, 24, 28], "alta": [21, 22], "correl": 21, "detriment": 21, "reduccion": 21, "codific": [21, 22], "priori": 21, "preprocess": 21, "bank_train_preprocess": 21, "tendran": 21, "num_cols": [21, 26], "to_list": 21, "cat_cols": [21, 22, 26], "nuniqu": [21, 22], "compos": [21, 26], "columntransform": [21, 26], "preprocessing": [21, 26], "standardscal": [21, 26], "onehotencod": [21, 26], "col_transform": 21, "fit": [21, 26], "transformers": 21, "process": 21, "one_hot_attr": 21, "transformers_": 21, "get_feature_names_out": 21, "df_process": 21, "bank_train_process": 21, "job_admin": 21, "job_blu": 21, "coll": [21, 22], "job_entrepreneur": 21, "job_housem": 21, "job_management": 21, "job_retir": 21, "month_oct": 21, "month_sep": 21, "day_of_week_fri": 21, "day_of_week_mon": 21, "day_of_week_thu": 21, "day_of_week_tu": 21, "day_of_week_w": 21, "poutcome_failur": 21, "poutcome_nonexistent": 21, "poutcome_success": 21, "863739": 21, "648967": 21, "322269": 21, "398990": 21, "289722": 21, "651268": 21, "103451": 21, "045048": 21, "420139": 21, "385843": 21, "721890": 21, "887717": 21, "332723": 21, "824956": 21, "058152": 21, "062987": 21, "252175": 21, "32945": 21, "154817": 21, "32946": 21, "152104": 21, "32947": 21, "344347": 21, "590675": 21, "473517": 21, "844915": 21, "32948": 21, "058695": 21, "32949": 21, "481965": 21, "535081": 21, "279055": 21, "32950": 21, "57": [21, 22], "tipolog": 21, "x_train": [21, 23], "metrics": [21, 26], "make_scor": 21, "precision_scor": 21, "recall_scor": 21, "balanced_accuracy_scor": 21, "scorers": 21, "balanced_accuracy": 21, "metric": [21, 26], "ensembl": [21, 26], "randomforestclassifi": 21, "cross_validat": 21, "rf_clf": 21, "criterion": 21, "entropy": 21, "rf_clf_scor": 21, "cv": [21, 26], "scoring": [21, 26], "fit_tim": 21, "48525953": 21, "17371225": 21, "45561767": 21, "score_tim": 21, "27095628": 21, "4005754": 21, "27123022": 21, "test_precision_scor": 21, "47959184": 21, "44352617": 21, "44786096": 21, "test_recall_scor": 21, "26575121": 21, "26030719": 21, "27081649": 21, "test_balanced_accuracy": 21, "6145604": 21, "60942715": 21, "61422007": 21, "feature_importances_": 21, "feature_selection": 21, "selectfrommodel": 21, "feature_selection_from_model": 21, "estimator": [21, 26], "x_df": 21, "improt": 21, "selector": 21, "estimator_": 21, "model_selection_featur": 21, "n_featur": 21, "importanc": 21, "barh": 21, "align": [21, 22, 24], "cent": [21, 22], "set_yticks": 21, "set_yticklabels": [21, 26], "rf_selected_featur": 21, "marital_marri": 21, "education_high": 21, "education_university": 21, "degre": [21, 22], "housing_n": 21, "housing_y": 21, "x_train_select": 21, "valid": [21, 23], "entorpec": 21, "linear_model": [21, 26], "logisticregression": 21, "tre": 21, "decisiontreeclassifi": 21, "neighbors": 21, "kneighborsclassifi": 21, "naive_bay": 21, "gaussiannb": 21, "gradientboostingclassifi": 21, "rmse": 21, "compare_models": 21, "models": 21, "seed": 21, "algoritm": [21, 23], "results": 21, "estadist": 21, "folds": [21, 26], "kfold": 21, "shuffl": 21, "cv_results": 21, "cross_val_scor": [21, 26], "bigot": 21, "boxplot": 21, "set_xticklabels": 21, "lr": 21, "solv": 21, "liblin": 21, "knn": 21, "cart": 21, "nb": 21, "rf": 21, "sharey": 21, "suptitl": [21, 22, 23], "6537112298575428": 21, "04505003208388039": 21, "5018652402303204": 21, "017209994309733422": 21, "3180014187727558": 21, "014477673941583336": 21, "29607913342044667": 21, "006642479028008792": 21, "6557179158970226": 21, "02554074375762445": 21, "4706481877959618": 21, "023514602653537234": 21, "7066021820666908": 21, "03573849702901917": 21, "49532590839127505": 21, "04187479920970608": 21, "3688983946420342": 21, "030458546012721608": 21, "4777581713827562": 21, "005469361156502378": 21, "6550707550732731": 21, "04180027581532745": 21, "4269423459620458": 21, "021015429977438067": 21, "recall": 21, "2181927445186544": 21, "00299329691407742": 21, "2569701580658597": 21, "011060885052020235": 21, "3175880615281605": 21, "010211354267065343": 21, "6394285864341301": 21, "09181451156932478": 21, "23316212233899022": 21, "010782454118125475": 21, "2832720540623217": 21, "016312265193180863": 21, "17434248939036084": 21, "00856237991888306": 21, "20916454680004642": 21, "014521324732371808": 21, "2801874703780247": 21, "012346156945975564": 21, "3311612535402707": 21, "01689304370542162": 21, "19166178422028926": 21, "01490506071856976": 21, "28177760801998747": 21, "006915906622225526": 21, "exactitud": 21, "6022452548722621": 21, "0037558003497701296": 21, "613613063836481": 21, "003682816043533694": 21, "6108162164514364": 21, "00966980158477819": 21, "7077842371100556": 21, "009353313726109064": 21, "6078863379057845": 21, "004313713893399986": 21, "6139460361771683": 21, "00537866142233999": 21, "5824039704510712": 21, "004556580545801131": 21, "5880966994693504": 21, "006482306581873072": 21, "6110935971110217": 21, "007027948334326948": 21, "6426314240409645": 21, "015560118763834835": 21, "5909814283906842": 21, "007376079306978728": 21, "6078209274807143": 21, "004496774742152602": 21, "lleg": [21, 22], "pregunt": 21, "maximiz": [21, 24, 26], "aport": 21, "tir": 21, "afloj": 21, "ambas": [21, 22, 26], "deteccion": 21, "potencial": [21, 22], "ofrec": 21, "banc": [21, 22], "contraposicion": 21, "dig": [21, 24], "detect": [21, 22, 28], "enfermed": 21, "peligr": 21, "atras": 21, "elij": 21, "escog": 21, "logist": 21, "tun": 21, "decision": [21, 22, 24, 28], "negoci": 21, "gridsearchcv": [21, 26], "lr_param_gr": 21, "penalty": 21, "l1": 21, "l2": 21, "tol": 21, "max_it": 21, "rnd_grid_search": 21, "return_train_scor": [21, 26], "param_gr": [21, 26], "0001": [21, 23], "cvres": [21, 26], "cv_results_": [21, 26], "mean_scor": [21, 26], "params": [21, 26], "mean_test_scor": [21, 26], "6580703259473997": 21, "6562492553776148": 21, "fit_intercept": 21, "intercept_scaling": 21, "7101945130327021": 21, "7109031075990554": 21, "7096805080481928": 21, "711212812857085": 21, "7098581755196406": 21, "7095464591885067": 21, "7100138221518663": 21, "clf": 21, "best_estimator_": [21, 26], "precision_recall_curv": 21, "plot_precision_recall_threshold": 21, "threshold": 21, "clf_probs": 21, "predict_prob": 21, "precisions": 21, "recalls": 21, "thresholds": 21, "umbral": 21, "threshold_index": 21, "valid_threshold": 21, "precision_threshold": 21, "recall_threshold": 21, "markersiz": 21, "set_xlim": 21, "712": [21, 28], "175": 21, "x_test": [21, 23, 26], "y_test_pr": 21, "predict": [21, 22, 26], "confusion_matrix": [21, 22], "7256": 21, "769": 21, "159": 21, "7464788732394366": 21, "1713362068965517": 21, "joblib": [21, 26], "dump": [21, 26], "model_path": 21, "transformer_path": 21, "feature_names_in_": 21, "et": 22, "2014": 22, "cortez": 22, "rit": 22, "driv": 22, "approach": 22, "success": [22, 24], "telemarketing": 22, "support": 22, "systems": 22, "elsevi": 22, "62": 22, "uc": 22, "irvin": 22, "repository": 22, "provin": 22, "telefon": 22, "marketing": 22, "portugues": 22, "set_option": 22, "display": 22, "max_columns": 22, "create_hist_plot": 22, "bins_total": 22, "bins_y": 22, "bins_n": 22, "create_bar_plot": 22, "drop_duplicat": 22, "dropn": [22, 25], "tick_params": 22, "labelrotation": 22, "describe_num_col": 22, "df_describ": 22, "create_corr_mat_plot": [22, 26], "corr_matrix": [22, 26], "heatmap": [22, 26], "annot": [22, 26], "linewidths": [22, 26], "fmt": [22, 26], "2f": [22, 26], "cramers_v": 22, "crosstab": 22, "chi2": 22, "chi2_contingency": 22, "phi2": 22, "phi2corr": 22, "rcorr": 22, "kcorr": 22, "56": [22, 26, 28], "housem": 22, "marri": 22, "4y": 22, "telephon": 22, "mon": 22, "261": 22, "nonexistent": 22, "93": 22, "994": 22, "857": 22, "5191": 22, "servic": 22, "high": 22, "149": 22, "admin": 22, "6y": 22, "151": 22, "307": 22, "41183": 22, "cellul": 22, "fri": 22, "334": 22, "94": 22, "767": 22, "028": [22, 28], "4963": 22, "41184": 22, "383": 22, "41185": 22, "189": 22, "41186": 22, "technici": 22, "442": 22, "41187": 22, "239": 22, "failur": 22, "41188": 22, "conte": 22, "infer": [22, 23], "cuantit": 22, "clar": 22, "calid": 22, "dise\u00f1": [22, 26], "36548": 22, "4640": 22, "11265417111780131": 22, "client_cols": 22, "client_num_cols": 22, "client_cat_cols": 22, "examin": 22, "supuest": 22, "n_rows": 22, "n_cols": 22, "minoritari": 22, "notori": 22, "porcentaj": 22, "segment": 22, "motiv": 22, "unknown_mask": 22, "isin": 22, "2403855491890842": 22, "jubil": 22, "torn": 22, "percentil": 22, "024060": 22, "421250": 22, "913147": 22, "837476": 22, "911185": 22, "898132": 22, "contact_cols": 22, "contact_cat_cols": 22, "contact_num_cols": 22, "mayoritari": 22, "movil": [22, 25], "juli": 22, "agost": 22, "juni": 22, "uniform": 22, "radical": 22, "diciembr": 22, "marz": 22, "abril": 22, "septiembr": 22, "decrec": 22, "epoc": [22, 23], "258": 22, "285010": 22, "259": [22, 26], "279249": 22, "102": 22, "180": 22, "319": 22, "4918": 22, "553": 22, "191164": 22, "401": 22, "171871": 22, "253": 22, "449": 22, "741": 22, "4199": 22, "220": 22, "844807": 22, "207": 22, "096293": 22, "163": 22, "279": 22, "prometedor": 22, "tare": [22, 26], "agrup": 22, "history_cols": 22, "894": 22, "479": 22, "962": 22, "475454": 22, "186": 22, "910907": 22, "792": 22, "035560": 22, "407181": 22, "984": 22, "113878": 22, "656868": 22, "963217": 22, "010658": 22, "010003": 22, "96": 22, "registr": [22, 28], "apreci": [22, 26], "967": 22, "548": 22, "actual": 22, "172963": 22, "494901": 22, "492672": 22, "860344": 22, "132374": 22, "409199": 22, "coherent": 22, "particip": [22, 24], "863431": 22, "089735": 22, "008473": 22, "006070": 22, "005341": 22, "000024": 22, "hipotesis": 22, "sim": 22, "cramer": 22, "320416": 22, "235922": 22, "328857": 22, "567593": 22, "770014": 22, "051724": 22, "666245": 22, "633085": 22, "873438": 22, "06571461554226031": 22, "economic_cols": 22, "316": 22, "histor": [22, 25], "ener": 22, "febrer": 22, "pearson": 22, "y_num": 22, "000866": 22, "004594": 22, "034369": 22, "024365": 22, "000371": 22, "000857": 22, "129372": 22, "010767": 22, "017725": 22, "030399": 22, "071699": 22, "047577": 22, "020640": 22, "027968": 22, "005312": 22, "008173": 22, "032897": 22, "044703": 22, "405274": 22, "052584": 22, "079141": 22, "150754": 22, "127836": 22, "013733": 22, "135133": 22, "144095": 22, "066357": 22, "587514": 22, "271004": 22, "078889": 22, "091342": 22, "296899": 22, "372605": 22, "324914": 22, "420489": 22, "203130": 22, "050936": 22, "454494": 22, "501333": 22, "230181": 22, "775334": 22, "196041": 22, "972245": 22, "906970": 22, "298334": 22, "058986": 22, "688230": 22, "522034": 22, "136211": 22, "277686": 22, "100513": 22, "054878": 22, "945154": 22, "307771": 22, "354678": 22, "009458": 22, "023188": 22, "053900": 22, "067220": 22, "099111": 22, "144611": 22, "151893": 22, "274000": 22, "plant": [23, 24], "cerr": 23, "h_": 23, "peque\u00f1": [23, 28], "cost": [23, 24], "cuadrat": [23, 26], "mse": 23, "algorim": 23, "inicializ": 23, "nabla_": 23, "nabl": 23, "aprendizaj": 23, "simplic": 23, "deriv": 23, "partial": 23, "theta_j": 23, "x_j": [23, 24], "qqu": 23, "1_1": 23, "1_n": 23, "2_1": 23, "2_n": 23, "m_1": [23, 24], "m_n": 23, "dencens": 23, "hiperparametr": 23, "n_it": 23, "regresionlinealdg": 23, "predic": 23, "x_on": 23, "a\u00f1ade_un": 23, "f_cost": 23, "calcula_gr": 23, "grad": [23, 26], "pinta_dat": 23, "pinta_datos2d": 23, "pinta_datos3d": 23, "convergent": 23, "x_min": 23, "x_max": 23, "x_sampl": 23, "y_sampl": 23, "x1_min": 23, "x1_max": 23, "x2_min": 23, "x2_max": 23, "x1_sampl": 23, "x2_sampl": 23, "meshgr": 23, "plot_surfac": 23, "x_2": [23, 24], "set_zlabel": 23, "pinta_cost": 23, "pinta_thet": 23, "colorb": [23, 26], "set_label": [23, 26], "proyeccion": 23, "3d": 23, "projection": 23, "get_titl": 23, "regresion_lineal_dg": 23, "rng_test": 23, "test_thet": 23, "decrecient": 23, "disminu": 23, "regresionlinealdg2": 23, "regresion_lineal_dg2": 23, "cuald": 23, "aletori": 23, "costes_val": 23, "regresionlinealdg3": 23, "x_val": 23, "y_val": 23, "separa_val": 23, "calcula_cost": 23, "val_rati": 23, "val_set_siz": 23, "permutation": [23, 26], "index_train": 23, "index_val": 23, "regresion_lineal_dg3": 23, "contribu": 23, "enfoqu": 23, "elig": 23, "azar": 23, "remplaz": 23, "siend": 23, "convencional": [23, 26], "n_epoc": 23, "quit": 23, "entrena_estocast": 23, "intermedi": 23, "tram": 23, "mini": 23, "batch": 23, "descent": 23, "salv": 23, "regresionlinealdgmb": 23, "fabric": 24, "man": [24, 28], "obra": 24, "vend": 24, "benefici": 24, "pong": 24, "unid": [24, 28], "unidad": 24, "monetari": 24, "destin": 24, "minimiz": [24, 25, 28], "igualdad": 24, "desigualdad": 24, "quad": 24, "3x_1": 24, "4x_2": 24, "2x_1": 24, "5x_2": 24, "4x_1": 24, "2x_2": 24, "geq": 24, "intercal": 24, "c_ix_i": 24, "factibl": 24, "sujet": 24, "restriccion": 24, "a_i": 24, "b_i": 24, "m_2": 24, "m_3": 24, "n_1": 24, "n_2": 24, "n_3": 24, "n_k": 24, "m_k": 24, "satisfac": 24, "condicin": 24, "region": 24, "infact": 24, "intu": 24, "patch": 24, "polygon": 24, "range1": 24, "range2": 24, "hlin": 24, "vlin": 24, "feasible_set": 24, "add_patch": 24, "875": 24, "orang": 24, "375": 24, "arrow": 24, "head_width": 24, "head_length": 24, "unific": 24, "metodolog": 24, "resolu": 24, "consegu": 24, "adit": 24, "desiguald": 24, "sustitu": 24, "a_ix_i": 24, "holgur": 24, "s_j": 24, "tranform": 24, "s_1": 24, "s_2": 24, "linprog": 24, "a_": 24, "ub": 24, "b_": 24, "eq": [24, 25], "utilizamor": 24, "a_ub": 24, "b_ub": 24, "probl": 24, "method": [24, 25], "simplex": 24, "messag": [24, 28], "optimization": 24, "terminat": 24, "nit": 24, "slack": 24, "negr": 24, "debaj": 24, "aun": 24, "resuelvel": 24, "a_eq": 24, "b_eq": 24, "resuelv": 24, "inversion": 24, "disposicion": 24, "rent": 24, "va": [24, 28], "pag": 24, "130": 24, "capital": 24, "prest": 24, "deud": 24, "bon": [24, 25], "corpor": 24, "yfinanc": 25, "financier": 25, "yaho": 25, "financ": 25, "accion": 25, "criptomoned": 25, "volatil": 25, "dividend": 25, "splits": 25, "looking": [25, 27, 28], "pypi": [25, 27, 28], "us": [25, 27, 28], "pkg": [25, 27, 28], "wheels": [25, 27, 28], "public": [25, 27, 28], "requirement": [25, 27, 28], "already": [25, 27, 28], "satisfi": [25, 27, 28], "lxml": 25, "frozendict": 25, "multitasking": 25, "beautifulsoup4": 25, "appdirs": 25, "cryptography": 25, "html5lib": 25, "pytz": 25, "2022": 25, "soupsiev": 25, "post1": 25, "cffi": 25, "webencodings": 25, "dateutil": 25, "charset": 25, "certifi": 25, "2017": 25, "idna": 25, "urllib3": 25, "pycpars": 25, "datetim": 25, "yf": 25, "whitegr": 25, "symbols": 25, "tsm": 25, "tsla": 25, "mtn": 25, "idxx": 25, "figs": 25, "start_dat": 25, "imports": [25, 26, 28], "compa\u00f1": 25, "tra": 25, "generate_stocks": 25, "stocks": 25, "downl": [25, 26], "progress": 25, "get_returns": 25, "returns": 25, "shift": 25, "generate_weights": 25, "w_norm": 25, "get_portfolio_return": 25, "get_risk": 25, "cov": 25, "cierr": 25, "impresion": 25, "progres": 25, "retorn": 25, "generate_weight": 25, "covari": 25, "omeg": 25, "ij": 25, "w_iw_j": 25, "sigma_": 25, "_subplots": 25, "axessubplot": 25, "0x7f519580f070": 25, "0x7f51952b7610": 25, "0x7f519523d760": 25, "0x7f51951f3910": 25, "0x7f519521fd30": 25, "0x7f51951d9160": 25, "0x7f5195185580": 25, "0x7f5195132a00": 25, "get_optimal_portfolio_weights": 25, "constraints": 25, "ineq": 25, "every": 25, "stock": 25, "can": 25, "weight": 25, "bounds": 25, "initializ": 25, "weights": 25, "beginning": 25, "objectiv": 25, "optimized_results": 25, "slsqp": 25, "generate_plot": 25, "w_opt": 25, "individual_returns": 25, "individual_risks": 25, "portfolio_returns": 25, "portfolio_risks": 25, "equally": 25, "distribut": 25, "w_eq": 25, "eq_portfolio_returns": 25, "eq_portfolio_risk": 25, "optimal": 25, "opt_portfolio_returns": 25, "opt_portfolio_risk": 25, "annotat": 25, "expect": 25, "risk": 25, "327376e": 25, "109383e": 25, "760101e": 25, "000000e": 25, "130515e": 25, "0x7f51951930d0": 25, "optimalportfoli": 25, "timedelt": 25, "end_dat": 25, "optimal_portfoli": 25, "nvda": 25, "amzn": 25, "jnj": 25, "0x7fae5b77a2b0": 25, "viviend": 26, "apoy": 26, "vean": 26, "persisit": 26, "version_inf": 26, "__version__": 26, "common": 26, "pretty": 26, "project_root_d": 26, "chapter_": 26, "end_to_end_project": 26, "images_path": 26, "save_fig": 26, "fig_": 26, "fig_extension": 26, "saving": 26, "dpi": 26, "descomprim": 26, "rut": 26, "isdir": 26, "leer": 26, "latitud": 26, "housing_median_ag": 26, "total_rooms": 26, "total_bedrooms": 26, "population": 26, "households": 26, "median_incom": 26, "median_house_valu": 26, "ocean_proximity": 26, "122": 26, "880": 26, "129": 26, "322": 26, "126": 26, "3252": 26, "452600": 26, "near": 26, "bay": 26, "86": 26, "7099": 26, "1106": 26, "2401": 26, "1138": 26, "3014": 26, "358500": 26, "85": 26, "1467": 26, "190": 26, "496": 26, "177": 26, "2574": 26, "352100": 26, "1274": 26, "235": 26, "558": 26, "219": 26, "6431": 26, "341300": 26, "1627": 26, "280": 26, "565": 26, "8462": 26, "342200": 26, "echem": 26, "vistaz": 26, "20640": 26, "20639": 26, "20433": 26, "predec": 26, "barri": 26, "1h": 26, "oce": 26, "7345": 26, "inland": 26, "5241": 26, "2118": 26, "1806": 26, "island": 26, "119": 26, "569704": 26, "631861": 26, "639486": 26, "2635": 26, "763081": 26, "537": 26, "870553": 26, "1425": 26, "476744": 26, "499": 26, "539680": 26, "870671": 26, "206855": 26, "816909": 26, "003532": 26, "135952": 26, "585558": 26, "2181": 26, "615252": 26, "421": 26, "385070": 26, "1132": 26, "462122": 26, "382": 26, "329753": 26, "899822": 26, "115395": 26, "615874": 26, "124": 26, "350000": 26, "540000": 26, "499900": 26, "14999": 26, "121": 26, "800000": 26, "930000": 26, "1447": 26, "296": 26, "787": 26, "563400": 26, "119600": 26, "118": 26, "490000": 26, "260000": 26, "2127": 26, "435": 26, "1166": 26, "409": 26, "534800": 26, "179700": 26, "010000": 26, "710000": 26, "3148": 26, "647": 26, "1725": 26, "605": 26, "743250": 26, "264725": 26, "114": 26, "310000": 26, "950000": 26, "39320": 26, "6445": 26, "35682": 26, "6082": 26, "000100": 26, "500001": 26, "razon": 26, "historgram": 26, "conclusion": 26, "sac": [26, 28], "particion": 26, "train_test_split": 26, "split_train_test": 26, "test_rati": 26, "shuffled_indic": 26, "test_set_siz": 26, "test_indic": 26, "train_indic": 26, "train_set": 26, "test_set": 26, "16512": 26, "4128": 26, "solvent": 26, "conclu": 26, "geograf": 26, "kind": 26, "transparent": 26, "zon": 26, "densid": 26, "veng": 26, "poblacion": 26, "distrit": 26, "cmap": 26, "get_cmap": 26, "jet": 26, "sharex": 26, "map": 26, "httpmessag": 26, "0x7f79825043d0": 26, "mpimg": 26, "california_img": 26, "extent": 26, "113": 26, "tick_valu": 26, "cbar": 26, "ticks": 26, "hous": 26, "california_housing_prices_plot": 26, "correlacion": 26, "689550": 26, "139098": 26, "096332": 26, "068899": 26, "054104": 26, "022032": 26, "041585": 26, "147904": 26, "scatter_matrix": 26, "plotting": 26, "attribut": 26, "zoom": 26, "550000": 26, "horizontal": 26, "350": 26, "450": 26, "tampoc": 26, "int64index": 26, "15048": 26, "16947": 26, "16356": 26, "aliment": 26, "rendimient": 26, "habit": 26, "cuart": 26, "rooms_per_household": 26, "bedrooms_per_room": 26, "population_per_household": 26, "156987": 26, "019747": 26, "252534": 26, "prepar": 26, "const": 26, "desacopl": 26, "housing_labels": 26, "exclud": 26, "lidi": 26, "defectu": 26, "imput": 26, "simpleimput": 26, "reliz": 26, "hot": 26, "encoding": 26, "numur": 26, "nuest": 26, "cat_encod": 26, "housing_cat_1hot": 26, "fit_transform": 26, "16512x5": 26, "stor": 26, "elements": 26, "compress": 26, "row": 26, "dispers": 26, "toarray": 26, "baseestimator": 26, "transformermixin": 26, "col_nam": 26, "rooms_ix": 26, "bedrooms_ix": 26, "population_ix": 26, "households_ix": 26, "get_loc": 26, "combinedattributesadd": 26, "c_": 26, "attr_add": 26, "housing_extra_attribs": 26, "116": 26, "3308": 26, "1201": 26, "414": 26, "3191": 26, "990338": 26, "900966": 26, "1845": 26, "516": 26, "1148": 26, "507": 26, "3538": 26, "293886": 26, "2643": 26, "14215": 26, "117": 26, "06": 26, "67": 26, "4047": 26, "754": 26, "2353": 26, "730": 26, "0505": 26, "543836": 26, "223288": 26, "12142": 26, "83": 26, "1424": 26, "251": 26, "681": 26, "192": 26, "0833": 26, "416667": 26, "546875": 26, "2740": 26, "115": 26, "78": 26, "1568": 26, "283": 26, "848": 26, "245": 26, "1597": 26, "461224": 26, "estrategi": 26, "minmaxscal": 26, "encaj": 26, "organiz": 26, "num_pipelin": 26, "strategy": 26, "attribs_add": 26, "std_scal": 26, "full_pipelin": 26, "housing_prepar": 26, "linearregression": 26, "lin_reg": 26, "procesmient": 26, "some_dat": 26, "some_labels": 26, "some_data_prepar": 26, "predictions": 26, "304799": 26, "63119659": 26, "352686": 26, "42138702": 26, "230949": 26, "80769489": 26, "136880": 26, "13091381": 26, "108599": 26, "29634079": 26, "labels": 26, "303400": 26, "333700": 26, "125000": 26, "76200": 26, "mean_squared_error": 26, "housing_predictions": 26, "lin_ms": 26, "lin_rms": 26, "68541": 26, "78429904411": 26, "206489": 26, "00569282947": 26, "cross": 26, "validation": 26, "display_scor": 26, "scor": 26, "lin_scor": 26, "neg_mean_squared_error": 26, "lin_rmse_scor": 26, "70985": 26, "81228196": 26, "71310": 26, "48962891": 26, "69496": 26, "58205441": 26, "70550": 26, "86214639": 26, "67014": 26, "31535795": 26, "69780": 26, "0679086": 26, "66411": 26, "42050625": 26, "66642": 26, "15439509": 26, "69372": 26, "52774294": 26, "67046": 26, "03355837": 26, "68861": 26, "0265580875": 26, "1803": 26, "0206490443086": 26, "performanc": 26, "forest": 26, "randomforestregressor": 26, "forest_reg": 26, "n_estimators": 26, "forest_scor": 26, "forest_rmse_scor": 26, "51474": 26, "38478632": 26, "48193": 26, "08020118": 26, "50812": 26, "42064106": 26, "49274": 26, "45101704": 26, "53064": 26, "12563367": 26, "49376": 26, "78995722": 26, "46606": 26, "48415971": 26, "47636": 26, "20326317": 26, "51744": 26, "70747484": 26, "49904": 26, "77308603": 26, "49808": 26, "74202202553": 26, "1902": 26, "4519943053801": 26, "arbol": 26, "bosqu": 26, "max_featur": 26, "usad": 26, "boostrap": 26, "descart": 26, "inten": 26, "bootstrap": 26, "grid_search": 26, "best": 26, "predictor": 26, "best_score_": 26, "best_params_": 26, "63209": 26, "57169007521": 26, "54629": 26, "41611107519": 26, "50761": 26, "76398069109": 26, "58426": 26, "43946436258": 26, "51625": 26, "15513929953": 26, "48725": 26, "76684682313": 26, "58251": 26, "40366599946": 26, "51116": 26, "34123484911": 26, "48378": 26, "04810100928": 26, "56861": 26, "04930211982": 26, "51418": 26, "50567419344": 26, "48666": 26, "54721730705": 26, "62599": 26, "75865660849": 26, "49925": 26, "75022638753": 26, "59686": 26, "79865147426": 26, "48282": 26, "39391442684": 26, "56823": 26, "71764893351": 26, "47852": 26, "58880126845": 26, "final_model": 26, "x_test_prepar": 26, "final_predictions": 26, "final_ms": 26, "final_rms": 26, "48246": 26, "96474133582": 26, "sobreentren": 26, "full_pipeline_with_predictor": 26, "preparation": 26, "disc": 26, "pkl": 26, "full_pipeline_with_predictor_copy": 26, "framework": [27, 28], "interact": [27, 28], "flask": [27, 28], "plotly": [27, 28], "js": [27, 28], "react": [27, 28], "dashboards": [27, 28], "interfac": [27, 28], "desliz": [27, 28], "8050": [27, 28], "32m9": [27, 28], "31m58": [27, 28], "25hcollecting": [27, 28], "dash_tabl": [27, 28], "components": [27, 28], "dash_html_components": [27, 28], "dash_core_components": [27, 28], "itsdangerous": [27, 28], "werkzeug": [27, 28], "jinja2": [27, 28], "click": [27, 28], "tenacity": [27, 28], "markupsaf": [27, 28], "installing": [27, 28], "dcc": [27, 28], "express": [27, 28], "px": [27, 28], "app": [27, 28], "apples": [27, 28], "cherri": [27, 28], "layout": [27, 28], "childr": [27, 28], "h1": [27, 28], "dashboard": [27, 28], "graph": [27, 28], "exampl": [27, 28], "run_serv": [27, 28], "running": [27, 28], "127": [27, 28], "serving": [27, 28], "lazy": [27, 28], "loading": [27, 28], "production": [27, 28], "warning": [27, 28], "deployment": [27, 28], "2m": [27, 28], "wsgi": [27, 28], "inste": [27, 28], "propiedad": [27, 28], "callback": [27, 28], "output": [27, 28], "h6": [27, 28], "chang": [27, 28], "see": [27, 28], "callbacks": [27, 28], "action": [27, 28], "br": [27, 28], "component_": [27, 28], "component_property": [27, 28], "update_output_div": [27, 28], "input_valu": [27, 28], "recopilatori": 28, "estandariz": 28, "amplic": 28, "expong": 28, "pipenv": 28, "lenguanj": 28, "go": 28, "rust": 28, "nativ": 28, "curl": 28, "ssl": 28, "py4d": 28, "carpet": 28, "readm": 28, "md": 28, "pyproject": 28, "toml": 28, "toc": 28, "tests": 28, "unitari": 28, "ficher": 28, "virtual": 28, "mac": 28, "library": 28, "pypoetry": 28, "users": 28, "usernam": 28, "appdat": 28, "unix": 28, "virtualenvs": 28, "tool": 28, "dependenci": 28, "cli": 28, "expecif": 28, "ric": 28, "replic": 28, "deseabl": 28, "testing": 28, "adicional": 28, "minimal": 28, "pytest": 28, "mock": 28, "optional": 28, "qur": 28, "script": 28, "run": 28, "your_script": 28, "Del": 28, "build": 28, "publish": 28, "lint": 28, "herrone": 28, "inadecu": 28, "pycodestyl": 28, "pep8": 28, "fichero_que_queremos_format": 28, "linters": 28, "formatt": 28, "ventaj": 28, "Son": 28, "git": 28, "pre": 28, "commit": 28, "logging": 28, "depur": 28, "audit": 28, "stdout": 28, "sofistic": 28, "des": 28, "consol": 28, "logg": 28, "getlogg": 28, "setlevel": 28, "console_handl": 28, "streamhandl": 28, "asctim": 28, "levelnam": 28, "setformatt": 28, "addhandl": 28, "critical": 28, "720": 28, "723": 28, "726": 28, "permanec": 28, "034": 28, "040": 28, "consolt": 28, "handl": 28, "file_handl": 28, "filehandl": 28, "629": 28, "635": 28, "638": 28, "automatiz": 28, "porcion": 28, "tempran": 28, "unittest": 28, "compon": 28, "area_circl": 28, "radius": 28, "testareacircl": 28, "testc": 28, "test_are": 28, "assertisinstanc": 28, "assertalmostequal": 28, "setup": 28, "area_on": 28}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"contribu": [0, 1], "curs": 1, "python": [1, 6, 8, 12, 28], "us": 1, "introduccion": [1, 6, 8, 14, 18], "numpy": [1, 16, 18], "matplotlib": [1, 14], "pand": [1, 20], "cas": 1, "practic": 1, "gestion": [1, 28], "proyect": [1, 28], "bilbiograf": 1, "cuad": 1, "trabaj": [1, 11], "ejercici": [1, 6, 16], "Se": 1, "agradec": 1, "discord": 1, "referent": 1, "bibliograf": 2, "boolean": [3, 15, 17], "oper": [3, 10, 15, 17, 18, 20], "logic": 3, "Los": 3, "enter": [3, 10], "El": [3, 5], "tip": [3, 7, 10, 18], "non": [3, 6], "clas": [4, 25], "metod": [4, 15], "especial": 4, "subcl": 4, "herenci": 4, "atribut": 4, "estructur": [5, 11], "control": 5, "bloqu": 5, "condicional": [5, 15], "declar": 5, "if": 5, "else": 5, "line": 5, "bucl": 5, "for": 5, "whil": 5, "break": 5, "continu": 5, "modul": 5, "itertools": 5, "rang": 5, "enumerat": 5, "zip": 5, "product": [5, 15], "label": 6, "return": 6, "funcion": [7, 13, 15, 20], "solution": [7, 15, 16, 24, 26], "to": [7, 15, 16, 24, 26], "exercis": [7, 15, 16, 24, 26], "32": 7, "argument": 7, "defect": 7, "variacional": 7, "nombr": 7, "posicional": 7, "33": 7, "document": 7, "indic": [7, 11], "llam": 7, "alcanc": 7, "lambd": 7, "map": 7, "filt": 7, "reduc": 7, "37": 7, "descarg": [8, 26], "dond": 8, "ejecut": 8, "notebooks": 8, "jupyt": 8, "colab": 8, "mas": 8, "sobr": [8, 15], "list": 9, "Las": 9, "iter": 9, "secuenci": [9, 11], "mutabl": 9, "numer": [10, 11, 22], "flotant": 10, "asign": 10, "aument": 10, "Otros": 10, "Otras": 11, "dat": [11, 18, 22, 26], "tupl": 11, "comprob": 11, "pertenent": 11, "obten": 11, "primer": 11, "instanci": 11, "objet": [11, 14, 22], "cont": 11, "ocurrent": 11, "index": [11, 17, 20], "slicing": [11, 17], "diccionari": 11, "conjunt": [11, 26], "gener": [11, 26], "compar": 11, "complej": 11, "computacional": 11, "borr": 11, "element": 11, "principi": 12, "basic": [12, 15, 17, 20], "variabl": [12, 21, 22, 26], "expresion": [12, 15], "comentari": 12, "strings": 13, "par": [13, 15, 24], "manipul": 13, "caden": 13, "f": 13, "dos": 14, "interfac": 14, "posibl": 14, "estil": 14, "matlab": 14, "bas": 14, "grafic": 14, "simpl": 14, "plot": 14, "nub": 14, "punt": 14, "parametr": 14, "global": 14, "trasposicion": 15, "arrays": [15, 16, 18], "matricial": 15, "universal": 15, "component": [15, 18], "vectoriz": [15, 20], "wher": 15, "53": 15, "estadist": [15, 20], "entrad": [15, 20], "sal": 15, "ficher": 15, "convolu": 16, "54": 16, "proces": 16, "imagen": 16, "55": 16, "56": 16, "regresion": [16, 23, 26], "lineal": [16, 23, 24, 26], "57": 16, "usand": [17, 28], "slic": 17, "Por": 18, "homogen": 18, "creacion": 18, "array": 18, "dtype": 18, "aritmet": [18, 20], "agreg": 19, "merge": 19, "datafram": [19, 20], "seri": 20, "resum": 20, "algun": 20, "maner": 20, "cre": [20, 26, 28], "funcional": 20, "elimin": 20, "eje": 20, "seleccion": [20, 21], "filtr": 20, "loc": 20, "iloc": 20, "valor": 20, "rellen": 20, "aplic": 20, "orden": 20, "descript": 20, "prob": 21, "model": [21, 26], "clasif": 21, "binari": 21, "train": 21, "test": [21, 26], "preproces": 21, "random": 21, "forest": 21, "randomforest": 21, "eleccion": 21, "tune": 21, "hiperparametr": [21, 26], "curv": 21, "precision": 21, "sensibil": 21, "guard": 21, "transform": [21, 26], "ejempl": 22, "analisis": 22, "exploratori": 22, "carg": 22, "client": 22, "age": 22, "job": 22, "marital": 22, "education": 22, "default": 22, "housing": 22, "loan": 22, "relacion": 22, "contact": 22, "month": 22, "day_of_week": 22, "duration": 22, "historial": 22, "campaign": 22, "pdays": 22, "previous": 22, "poutcom": 22, "socioeconom": 22, "emp": 22, "var": 22, "rat": 22, "cons": 22, "pric": 22, "idx": 22, "conf": 22, "euribor3m": 22, "nr": 22, "employ": 22, "correl": [22, 26], "Entre": 22, "categor": [22, 26], "descens": 23, "gradient": 23, "estocast": 23, "program": 24, "La": 24, "form": 24, "estand": 24, "utiliz": 24, "scipy": 24, "resolv": 24, "problem": 24, "69": 24, "optimiz": 25, "portfoli": 25, "busc": [25, 26], "vector": 25, "pes": 25, "optim": 25, "minimic": 25, "riesg": 25, "visualiz": [25, 26], "encapsul": 25, "tod": 25, "sol": 25, "constru": 26, "profundiz": 26, "nuev": [26, 28], "75": 26, "limpiez": 26, "ingeni": 26, "escal": 26, "defin": 26, "pipelin": 26, "entren": 26, "evalu": 26, "mejor": 26, "tun": 26, "dash": [27, 28], "paquet": 28, "poetry": 28, "instal": 28, "manej": 28, "dependent": 28, "limpi": 28, "codig": 28, "flake8": 28, "black": 28, "logs": 28}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["CONTRIBUTING", "README", "bibliography", "notebooks/introduction-python/booleans", "notebooks/introduction-python/classes", "notebooks/introduction-python/control-flow", "notebooks/introduction-python/exercises", "notebooks/introduction-python/functions", "notebooks/introduction-python/introduction-python", "notebooks/introduction-python/lists", "notebooks/introduction-python/numeric-types", "notebooks/introduction-python/other-data-structures", "notebooks/introduction-python/python-basics", "notebooks/introduction-python/strings", "notebooks/matplotlib/introduction-matplotlib", "notebooks/numpy/basic-operations", "notebooks/numpy/exercises", "notebooks/numpy/index-slicing", "notebooks/numpy/introduction-numpy", "notebooks/pandas/groupby-merge", "notebooks/pandas/introduction-pandas", "notebooks/practicas/classification-models", "notebooks/practicas/eda", "notebooks/practicas/gradient-descent", "notebooks/practicas/linear-programming", "notebooks/practicas/portfolio-optimization", "notebooks/practicas/regression-model", "notebooks/proyecto-ejemplo/dash", "notebooks/proyecto-ejemplo/project-management"], "filenames": ["CONTRIBUTING.md", "README.md", "bibliography.md", "notebooks/introduction-python/booleans.ipynb", "notebooks/introduction-python/classes.ipynb", "notebooks/introduction-python/control-flow.ipynb", "notebooks/introduction-python/exercises.ipynb", "notebooks/introduction-python/functions.ipynb", "notebooks/introduction-python/introduction-python.ipynb", "notebooks/introduction-python/lists.ipynb", "notebooks/introduction-python/numeric-types.ipynb", "notebooks/introduction-python/other-data-structures.ipynb", "notebooks/introduction-python/python-basics.ipynb", "notebooks/introduction-python/strings.ipynb", "notebooks/matplotlib/introduction-matplotlib.ipynb", "notebooks/numpy/basic-operations.ipynb", "notebooks/numpy/exercises.ipynb", "notebooks/numpy/index-slicing.ipynb", "notebooks/numpy/introduction-numpy.ipynb", "notebooks/pandas/groupby-merge.ipynb", "notebooks/pandas/introduction-pandas.ipynb", "notebooks/practicas/classification-models.ipynb", "notebooks/practicas/eda.ipynb", "notebooks/practicas/gradient-descent.ipynb", "notebooks/practicas/linear-programming.ipynb", "notebooks/practicas/portfolio-optimization.ipynb", "notebooks/practicas/regression-model.ipynb", "notebooks/proyecto-ejemplo/dash.ipynb", "notebooks/proyecto-ejemplo/project-management.ipynb"], "titles": ["Contribuye \ud83d\udcbb", "Curso de Python US", "Bibliograf\u00eda", "Booleanos", "Clases", "Estructuras de control", "Ejercicios de Introducci\u00f3n a Python", "Funciones", "Introducci\u00f3n a Python", "Listas", "Tipos num\u00e9ricos", "Otras estructuras de datos", "Principios b\u00e1sicos de Python", "Strings", "Introducci\u00f3n a matplotlib", "Operaciones B\u00e1sicas", "Ejercicios", "Indexado, Slicing y operaciones b\u00e1sicas", "Introducci\u00f3n a Numpy", "Agregaci\u00f3n y mergeo de dataframes", "Pandas", "Probando modelos de clasificaci\u00f3n binaria", "Ejemplo de an\u00e1lisis exploratorio", "Descenso del gradiente: Regresi\u00f3n Lineal", "Programaci\u00f3n Lineal", "Optimizaci\u00f3n de portfolio", "Construyendo un modelo de regresi\u00f3n lineal", "Dash", "Gesti\u00f3n de proyectos en Python"], "terms": {"par": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "curs": [0, 5, 8, 28], "propon": [0, 1, 7, 23, 26], "solucion": [0, 1, 5, 8, 16, 23, 24], "algun": [0, 1, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28], "ejercici": [0, 9, 23, 26], "nuev": [0, 1, 4, 6, 9, 10, 12, 16, 18, 19, 20, 22, 23, 24], "correg": [0, 1], "errat": [0, 1], "mejor": [0, 1, 6, 12, 14, 18, 21, 22, 23, 28], "conten": [0, 1, 15], "cualqui": [0, 1, 5, 7, 11, 13, 17, 18, 20, 24, 26], "cos": [0, 1, 7, 8, 9, 14, 28], "ocurr": [0, 1], "pued": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28], "segu": [0, 1, 4, 5, 7, 8, 12, 19, 26], "siguient": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 26, 27, 28], "pas": [0, 1, 5, 6, 7, 9, 11, 13, 18, 19, 20, 21, 22, 23, 24, 26], "cre": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 22, 23, 24, 27], "bifurc": [0, 1], "repositori": [0, 1, 8], "cuent": [0, 1, 4, 7, 17, 20, 22, 24], "github": [0, 1, 19, 20], "puls": [0, 1, 5], "boton": [0, 1, 27, 28], "fork": [0, 1], "aparec": [0, 1, 5, 6, 7, 12, 20, 22], "arrib": [0, 1, 17, 20], "derech": [0, 1, 3, 5, 12], "modif": [0, 1, 9, 17], "notebooks": [0, 1, 28], "antoj": [0, 1], "pull": [0, 1], "request": [0, 1, 20, 21, 22, 26], "contr": [0, 1], "ram": [0, 1], "main": [0, 1, 8, 19], "principal": [0, 1, 8, 11, 18, 21], "tras": [0, 1, 5, 6, 7, 12, 22], "revis": [0, 1, 24], "propuest": [0, 1, 23], "si": [0, 1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28], "cambi": [0, 1, 6, 7, 9, 10, 12, 14, 16, 17, 18, 22, 23, 24, 26, 28], "oportun": [0, 1], "acept": [0, 1, 4, 5, 6, 7, 9, 11, 23, 24], "pr": [0, 1], "despleg": [0, 1], "automat": [0, 1, 5, 14, 28], "pagin": [0, 1, 26], "No": [0, 1, 3, 4, 6, 8, 9, 11, 12, 13, 15, 19, 21, 28], "exist": [0, 1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 26, 28], "ningun": [0, 1, 5, 7, 8, 10, 20, 22], "polit": [0, 1], "per": [0, 1, 4, 5, 7, 8, 11, 12, 14, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "intent": [0, 1, 3, 4, 5, 11, 12, 21, 26], "dar": [0, 1, 14, 17, 20, 22, 26, 28], "context": [0, 1, 7, 14, 15], "archiv": [0, 1, 4, 8, 15, 21, 22, 26, 28], "modific": [0, 1, 4, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 23, 26, 27, 28], "esten": [0, 1], "dentr": [0, 1, 7, 11, 12, 14, 15, 22], "directori": [0, 1, 28], "ten": [0, 1, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "cuant": [0, 1, 4, 5, 7, 9, 11, 12, 14, 20, 22, 24], "etiquet": [0, 1, 14, 20], "unic": [0, 1, 7, 11, 17, 21, 22, 26], "just": [0, 1, 13, 19, 28], "empez": [0, 1, 5, 6, 7, 13, 18, 28], "referenci": [0, 1, 12, 21], "correspondient": [0, 1, 3, 4, 7, 8, 11, 13, 14, 15, 16, 17, 18, 20, 25, 26], "El": [1, 4, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28], "material": [1, 24], "gui": [1, 12, 16, 28], "A": [1, 2, 3, 5, 7, 9, 11, 13, 15, 16, 18, 22, 24, 26], "larg": [1, 13, 15, 17, 18, 20, 21, 22, 24], "mism": [1, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 28], "ver": [1, 3, 5, 8, 9, 11, 14, 15, 17, 18, 19, 20, 22, 23, 26], "capitul": 1, "principi": [1, 7, 14, 18, 21, 22, 24, 26, 28], "basic": [1, 3, 11, 14, 22, 26, 28], "tip": [1, 5, 6, 8, 9, 11, 12, 13, 14, 15, 19, 20, 21, 22, 24, 25, 26, 28], "numer": [1, 4, 5, 6, 7, 8, 12, 13, 14, 15, 16, 17, 18, 20, 21, 23, 25, 26, 27, 28], "strings": [1, 18], "boolean": [1, 4, 5, 7, 12, 18, 20, 23], "list": [1, 5, 6, 7, 8, 11, 13, 15, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28], "Otras": [1, 12, 16, 26], "estructur": [1, 4, 7, 9, 14, 17, 18, 20, 22, 24, 28], "dat": [1, 2, 3, 4, 7, 8, 9, 12, 14, 15, 16, 17, 19, 20, 21, 23, 25, 28], "control": [1, 3, 10, 21, 28], "funcion": [1, 3, 4, 5, 6, 9, 10, 11, 12, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28], "clas": [1, 3, 5, 6, 12, 16, 23, 26, 28], "index": [1, 2, 5, 8, 9, 13, 15, 19, 22, 23, 25, 26, 27, 28], "slicing": [1, 5, 7, 15, 20], "oper": [1, 4, 5, 7, 8, 9, 11, 12, 13, 16, 19, 23], "agreg": [1, 16, 28], "merge": 1, "datafram": [1, 21, 22, 25, 26, 27, 28], "descens": 1, "gradient": [1, 24], "regresion": [1, 21], "lineal": [1, 5, 18], "program": [1, 4, 5, 7, 8, 9, 12, 19, 28], "optimiz": [1, 5, 11, 18, 24], "portfoli": 1, "constru": [1, 4, 8, 9, 16, 17, 18, 21, 27, 28], "model": [1, 16, 18, 22, 23], "ejempl": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 24, 26, 27, 28], "analisis": [1, 8, 20, 21, 25, 26], "exploratori": [1, 21], "prob": [1, 26], "clasif": [1, 22], "binari": [1, 15, 22], "dash": [1, 14, 18], "bibliograf": 1, "seri": [1, 2, 4, 5, 7, 12, 15, 16, 17, 19, 21, 22, 24, 25, 28], "divid": [1, 3, 10, 13, 16, 20, 21, 25], "seccion": [1, 5, 11, 12, 19, 20, 23, 26, 28], "abrir": 1, "desd": [1, 5, 8, 11, 14, 18, 21, 22, 26, 28], "googl": [1, 2, 8, 25, 28], "colab": [1, 25, 27, 28], "direct": [1, 4, 7, 8, 9, 10, 11, 12, 13, 16, 18, 20, 23, 25, 26, 28], "descarg": [1, 6, 20, 22, 25], "local": [1, 7, 19, 20, 23, 25, 27, 28], "En": [1, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "cad": [1, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28], "cuadern": [1, 8], "encontr": [1, 5, 7, 8, 13, 16, 23, 24], "celdill": [1, 5, 8, 9, 12], "ejecut": [1, 5, 6, 7, 23, 28], "markdown": [1, 8], "ultim": [1, 5, 7, 8, 10, 12, 14, 15, 19, 20, 21, 22, 23, 26], "bloqu": [1, 7], "text": [1, 6, 7, 8, 15, 21, 24, 25, 26, 27, 28], "estaran": [1, 28], "exercis": 1, "label": [1, 11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "my": [1, 27, 28], "your": [1, 19], "cod": [1, 5, 8, 19], "for": [1, 2, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26], "the": [1, 8, 11, 16, 19, 22, 25, 26, 27, 28], "tambien": [1, 3, 4, 5, 7, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "solution": 1, "class": [1, 4, 12, 16, 20, 22, 23, 25, 26, 28], "dropdown": 1, "sirv": [1, 4, 5, 7, 11, 14, 15], "renderiz": [1, 26], "format": [1, 4, 7, 13, 14, 15, 16, 20, 21, 24, 26, 28], "mas": [1, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 28], "visual": [1, 8], "tod": [1, 4, 5, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 28], "ello": [1, 3, 4, 5, 7, 8, 10, 11, 16, 18, 19, 20, 23, 24, 26, 28], "aloj": [1, 8], "incident": 1, "dud": 1, "escrib": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 23, 27, 28], "apart": [1, 11, 26], "issu": 1, "gust": 1, "result": [1, 3, 5, 7, 12, 15, 16, 17, 18, 20, 21, 22, 27, 28], "util": [1, 5, 7, 9, 10, 11, 12, 14, 15, 16, 20, 26, 28], "olvid": [1, 21, 22], "premi": 1, "estrell": 1, "servidor": [1, 8], "inform": [1, 4, 7, 11, 12, 18, 20, 22, 25, 26, 28], "contact": [1, 21], "corre": 1, "electron": 1, "direccion": [1, 12, 24], "bas": [1, 4, 7, 8, 18, 19, 21, 26, 28], "bea21": [1, 2], "sok": [1, 2], "pyt": [1, 2], "mck12": [1, 2], "har21": [1, 2], "gerons19": [1, 2], "ss15": [1, 2], "python": [2, 3, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 23, 25, 26, 27], "official": 2, "sit": 2, "https": [2, 6, 19, 20, 21, 22, 25, 26, 27, 28], "www": [2, 11], "org": [2, 6, 11, 25, 27, 28], "dav": [2, 5, 11], "beazley": 2, "distill": 2, "addison": 2, "wesley": 2, "professional": [2, 19, 22], "2021": 2, "g": [2, 7, 14, 15, 16, 21], "\u00e9": 2, "ron": 2, "and": [2, 3, 4, 5, 6, 8, 12, 15, 17, 18, 19, 22], "an": [2, 14, 19, 25], "O": [2, 14, 15, 18, 20, 28], "reilly": 2, "medi": [2, 4, 14, 15, 18, 20, 21, 22, 23, 25, 26], "company": [2, 19], "safari": 2, "hands": 2, "on": [2, 8, 19, 20, 27, 28], "machin": [2, 8, 21, 22], "learning": [2, 8, 19, 21, 22, 23], "with": [2, 12, 14, 15, 21, 22, 25, 26, 28], "scikit": [2, 18, 26], "learn": [2, 18, 19, 26], "ker": 2, "tensorflow": 2, "2nd": 2, "edition": [2, 19], "incorporat": 2, "2019": 2, "url": [2, 6, 19, 20, 26], "books": 2, "id": [2, 12, 27, 28], "o2vjzqeacaaj": 2, "m": [2, 11, 12, 15, 16, 18, 20, 23, 24], "harrison": 2, "effectiv": 2, "pand": [2, 3, 14, 18, 19, 21, 22, 25, 26, 27, 28], "patterns": 2, "manipulation": 2, "treading": 2, "matt": 2, "isbn": 2, "9798772692936": 2, "byp0zgeacaaj": 2, "wes": 2, "mckinney": 2, "analysis": [2, 19], "wrangling": 2, "numpy": [2, 3, 9, 11, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26], "ipython": [2, 3, 7, 9, 11, 16, 19, 20], "inc": 2, "2012": 2, "thom": 2, "sargent": 2, "john": [2, 19], "stachurski": 2, "quantitativ": 2, "economics": 2, "technical": 2, "report": 2, "lectur": [2, 20], "not": [2, 3, 5, 6, 7, 8, 9, 11, 12, 14, 17, 19, 20, 21, 22, 24, 26, 27, 28], "2015": 2, "ryan": 2, "soklaski": 2, "lik": [2, 14], "you": [2, 8, 19], "mean": [2, 11, 15, 18, 19, 20, 21, 22, 23, 25, 26], "it": [2, 8, 19, 27, 28], "pythonlikeyoumeanit": 2, "com": [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, 28], "html": [2, 14, 27, 28], "dos": [3, 4, 5, 6, 7, 9, 10, 12, 15, 16, 17, 18, 20, 21, 22, 23, 24, 27, 28], "objet": [3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26], "bool": [3, 5, 6, 11, 12, 13, 18, 20, 25], "tru": [3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "fals": [3, 4, 5, 7, 9, 10, 11, 12, 13, 15, 17, 18, 19, 20, 21, 22, 25, 26], "hem": [3, 4, 5, 9, 10, 11, 12, 14, 17, 18, 19, 20, 22, 24, 25, 26, 28], "vist": [3, 4, 5, 9, 10, 11, 17, 18, 19, 20, 22, 24, 26], "anterior": [3, 4, 6, 7, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26], "devuelv": [3, 4, 5, 6, 7, 9, 11, 16, 17, 20, 25, 26, 28], "valor": [3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 21, 22, 23, 24, 25, 26], "isinstanc": [3, 5, 6, 10, 11, 12, 13], "is": [3, 5, 7, 8, 9, 11, 12, 16, 19, 21, 22, 26, 27, 28], "type": [3, 4, 7, 8, 9, 10, 11, 12, 13, 19, 25, 26, 27, 28], "inclu": [3, 4, 6, 7, 8, 9, 11, 12, 13, 14, 20, 26, 27, 28], "estand": [3, 4, 5, 7, 8, 10, 12, 15, 17, 21, 23, 26, 28], "realiz": [3, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28], "simbol": [3, 12, 25], "or": [3, 8, 12, 15, 17, 19, 20], "hor": [3, 4, 8, 9, 10, 11, 12, 17, 22, 23, 25, 28], "evalu": [3, 4, 5, 7, 9, 11, 12, 13, 18, 19, 21], "hac": [3, 4, 5, 6, 8, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28], "calcul": [3, 4, 5, 7, 10, 12, 15, 16, 20, 22, 23, 25, 26, 28], "necesari": [3, 4, 5, 10, 11, 12, 15, 24, 28], "comput": [3, 9, 11, 18], "argument": [3, 4, 5, 9, 11, 15, 19, 20, 23, 24, 25, 26], "izquierd": [3, 5], "cas": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 20, 22, 24, 25, 26, 28], "ser": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 26, 28], "comport": [3, 4, 5, 7, 10, 13], "igual": [3, 5, 7, 9, 10, 11, 12, 13, 14, 17, 18, 20, 21, 24, 28], "cuand": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 18, 19, 20, 21, 22, 23, 26], "utiliz": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28], "Sin": [3, 4, 12, 14, 15, 17, 19, 20, 21], "embarg": [3, 4, 12, 14, 15, 17, 19, 20, 22], "emple": [3, 18, 19, 21, 22, 23, 28], "represent": [3, 4, 6, 10, 13, 14, 16, 18, 21, 22, 23, 24, 25, 26], "nivel": [3, 9, 19, 21, 22, 28], "bits": [3, 10], "Por": [3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 24, 26, 27, 28], "bitwis": 3, "2": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "1": [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], "0": [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], "bastant": [3, 4, 5, 11, 14, 15, 20, 22, 28], "comun": [3, 4, 5, 7, 8, 9, 11, 13, 14, 18, 19, 21, 22, 28], "encont": [3, 5], "inesper": [3, 10, 12], "tien": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28], "orden": [3, 6, 7, 9, 10, 11, 12, 13, 16, 28], "distint": [3, 5, 11, 14, 15, 17, 18], "siempr": [3, 4, 5, 7, 11, 12, 15, 16, 17, 18, 19, 21, 26, 28], "posibl": [3, 5, 7, 9, 12, 16, 18, 22, 23, 24, 26], "usar": [3, 4, 5, 6, 7, 11, 13, 15, 17, 18, 19, 20, 21, 23, 24, 26, 28], "consider": [3, 5, 6, 7, 11, 13, 15, 16, 20, 23, 25], "estil": [3, 12, 28], "pythonic": 3, "defin": [3, 4, 5, 7, 9, 10, 11, 12, 13, 16, 19, 20, 21, 22, 23, 25], "especial": [3, 7, 8, 28], "nuestr": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 21, 22, 23, 24, 26, 27, 28], "ahi": [3, 8, 22], "paquet": [3, 8, 18, 24], "preferent": 3, "alter": [3, 7, 28], "pod": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "paretesis": 3, "compar": [3, 5, 18, 21, 26], "usual": [3, 10, 11, 18, 19, 26], "frent": [3, 14], "mal": [3, 5, 12], "a\u00f1ad": [3, 4, 5, 6, 7, 9, 11, 14, 20, 21, 24, 26, 28], "parentesis": [3, 7, 11], "redund": 3, "ayud": [3, 8, 10, 16, 28], "legibil": [3, 8, 12], "expresion": [3, 5, 7, 9, 11, 13], "3": [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], "10": [3, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "5": [3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "4": [3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "7": [3, 4, 6, 10, 11, 12, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28], "realid": [3, 12, 17, 20, 23, 24], "particul": [3, 4, 20, 28], "precis": [3, 28], "subcl": 3, "int": [3, 5, 6, 7, 9, 10, 11, 12, 16, 22, 23, 25, 26], "tal": [3, 6, 16, 23, 24], "usarl": [3, 26], "matemat": [3, 8, 12, 13, 14, 20], "form": [3, 4, 5, 7, 11, 12, 14, 16, 17, 18, 19, 20, 23, 26, 28], "total": [3, 4, 5, 7, 9, 11, 15, 18, 20, 22, 23, 24, 25, 26], "intercambi": [3, 16], "zerodivisionerror": 3, "traceback": [3, 7, 9, 11], "most": [3, 7, 9, 11, 19], "recent": [3, 7, 9, 11], "call": [3, 7, 9, 11, 22], "last": [3, 7, 9, 11], "input": [3, 7, 9, 11, 16, 23, 27, 28], "97": 3, "f8487d9d0863": 3, "in": [3, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 28], "modul": [3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 16, 20, 26, 28], "division": [3, 21], "by": [3, 8, 14, 19, 20], "zer": [3, 16, 18], "supon": 3, "x": [3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28], "rest": [3, 4, 7, 10, 12, 16, 18, 20, 21, 22, 25, 26, 28], "contrari": [3, 7], "variabl": [3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 20, 23, 24, 25, 28], "flotant": [3, 6, 12, 18, 22], "dad": [3, 5, 7, 9, 11, 15, 16, 21, 22, 24, 25, 26], "arregl": 3, "suel": [3, 7, 17, 18, 20, 23, 28], "junt": [3, 4, 19, 20], "nonetyp": 3, "Este": [3, 4, 11, 12, 16, 24], "sol": [3, 5, 6, 7, 10, 12, 13, 14, 15, 18, 20, 21, 22, 23, 28], "vaci": [3, 5, 7, 11, 24], "desconoc": [3, 7], "contien": [3, 7, 11, 13, 25], "comprob": [3, 5, 7, 9, 10, 12, 15, 26, 28], "pertenec": [3, 4], "verific": [3, 11, 12, 28], "dich": [3, 4, 5, 6, 9, 11, 16, 17, 18, 20, 21, 22, 24, 26], "record": [3, 20, 21, 24], "ident": [3, 5], "mientr": [3, 5, 8, 20], "usam": [3, 9, 14, 19, 26, 28], "22": [3, 5, 7, 8, 14, 18, 19, 20, 22, 26], "ahor": [3, 5, 9, 11, 12, 14, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "suficient": [3, 15], "sep": [3, 6, 8, 13, 21, 22], "habl": [3, 28], "fluj": [3, 5], "trat": [4, 11, 12, 19, 20, 26], "predefin": [4, 9, 10, 12, 14, 18, 26], "caden": [4, 5, 6, 7, 9, 10, 11, 12], "enter": [4, 5, 6, 7, 9, 11, 12, 13, 17, 18, 20, 22, 23, 26], "etc": [4, 5, 7, 9, 10, 25, 28], "encapsul": 4, "conjunt": [4, 5, 7, 9, 10, 12, 13, 14, 16, 21, 22, 23, 24], "permit": [4, 5, 7, 8, 9, 11, 13, 14, 16, 18, 19, 20, 25, 27, 28], "gestion": [4, 19, 20], "interactu": [4, 19], "imagin": 4, "quer": [4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 20, 21, 22, 23, 24, 26, 28], "trabaj": [4, 5, 7, 8, 10, 18, 19, 20, 21, 22, 25], "punt": [4, 18, 21, 22, 24, 26], "plan": [4, 6, 24], "interes": [4, 5, 16, 17, 18, 20, 21, 22, 24, 27, 28], "import": [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], "math": [4, 10, 12, 13, 28], "def": [4, 5, 6, 7, 11, 12, 15, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "__init__": [4, 6, 23, 25, 28], "self": [4, 16, 19, 20, 23, 25, 26, 28], "distancia_al_orig": 4, "dist": [4, 19, 20, 25, 27, 28], "sqrt": [4, 8, 15, 21, 22, 25, 26], "return": [4, 5, 7, 11, 12, 15, 16, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28], "Al": [4, 5, 9, 11, 13, 20, 24], "estam": [4, 10, 12, 14, 17, 19, 20, 24, 28], "describ": [4, 7, 19, 20, 22, 26], "patron": 4, "instanci": [4, 6, 20, 22, 23], "definicion": [4, 7, 9, 12, 16, 24], "referent": [4, 7, 8, 11, 12, 17, 21], "propi": [4, 11, 14, 16, 17, 20], "prim": [4, 5, 9, 11, 15, 20, 22, 24, 26], "har": [4, 11, 14, 17, 20, 28], "explicit": [4, 7, 8, 12, 20], "use": [4, 14, 19, 22, 25, 27, 28], "sino": [4, 17, 18], "tom": [4, 5, 7, 12, 14, 16, 17, 20, 21, 22, 23, 24, 25, 28], "sobr": [4, 5, 6, 7, 11, 12, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 28], "inicial": [4, 16, 24, 25], "constructor": [4, 11], "recib": [4, 7, 23, 24, 25], "entrad": [4, 6, 7, 28], "defect": [4, 8, 11, 13, 14, 15, 19, 20, 21, 23, 24, 26, 28], "Esos": 4, "almacen": [4, 5, 6, 7, 9, 10, 11, 13, 15, 16], "respect": [4, 7, 13, 15, 16, 20, 23, 28], "nombr": [4, 5, 8, 11, 12, 13, 14, 17, 19, 20, 21, 22], "asi": [4, 7, 8, 14, 15, 17, 20, 28], "llam": [4, 5, 8, 10, 11, 12, 13, 14, 21, 22, 24, 25, 26, 28], "simplement": [4, 7, 18, 24, 28], "except": [4, 12, 20], "Lo": [4, 5, 11, 14, 17, 18, 20, 27, 28], "sig": [4, 7, 18, 28], "asign": [4, 5, 7, 9, 11, 12, 17, 20, 28], "p": [4, 22], "general": [4, 5, 8, 10, 11, 17, 20, 24], "atr": 4, "acced": [4, 7, 9, 11, 12, 13, 15, 17, 18, 20], "notacion": [4, 10, 17, 20], "f": [4, 6, 7, 8, 9, 10, 14, 15, 16, 18, 20, 21, 22, 23, 26, 27, 28], "aplic": [4, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 26, 27, 28], "proporcion": [4, 8, 16, 20, 28], "getattr": 4, "setattr": 4, "delattr": 4, "parametr": [4, 7, 15, 16, 20, 23, 24, 25, 28], "segund": [4, 5, 9, 11, 14, 15, 17, 19, 20, 21, 22, 23, 24], "605551275463989": 4, "La": [4, 5, 7, 8, 10, 11, 14, 15, 16, 17, 18, 19, 20, 22, 23, 25, 26], "dir": 4, "obj": 4, "dispon": [4, 10, 11, 13, 20, 21, 22, 24, 25, 26], "__class__": 4, "__delattr__": 4, "__dict__": 4, "__dir__": 4, "__doc__": [4, 7], "__eq__": 4, "__format__": 4, "__ge__": 4, "__getattribute__": 4, "__gt__": 4, "__hash__": [4, 11], "__init_subclass__": 4, "__le__": 4, "__lt__": 4, "__module__": 4, "__ne__": 4, "__new__": 4, "__reduce__": 4, "__reduce_ex__": 4, "__repr__": 4, "__setattr__": 4, "__sizeof__": 4, "__str__": 4, "__subclasshook__": 4, "__weakref__": 4, "perr": 4, "teng": [4, 5, 6, 13, 16, 18, 19, 20, 22, 23, 28], "edad": [4, 13, 20, 21, 22], "ladr": 4, "mensaj": [4, 7, 25, 28], "pantall": [4, 7], "crec": [4, 23], "aument": [4, 28], "adecu": [4, 8, 20, 22], "Hay": [4, 8, 18, 20, 26, 28], "reserv": [4, 5, 10, 11, 12, 26], "obligatori": [4, 26], "final": [4, 5, 6, 7, 11, 12, 14, 16, 17, 19, 20, 24, 25, 26, 28], "especif": [4, 8, 18, 20, 26], "dobl": [4, 13, 22], "guin": 4, "baj": [4, 7, 12, 14, 20, 24], "comp": [4, 16, 20], "puntov2": 4, "3f": [4, 21], "q": 4, "r": [4, 5, 6, 9, 14, 15, 16, 19, 21, 22, 23, 24], "print": [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 21, 22, 23, 25, 26, 28], "__main__": [4, 27, 28], "object": [4, 9, 19, 20, 21, 22, 25, 26], "at": [4, 5, 8, 19, 25, 26], "0x7daf29671450": 4, "000": [4, 19, 24, 26], "pointv3": 4, "copi": [4, 6, 7, 17], "codig": [4, 5, 7, 8, 11, 12, 14, 18, 20, 24, 25, 27], "pointv2": 4, "__add__": 4, "sum": [4, 5, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 25], "norm": [4, 6, 28], "dot": [4, 15], "implement": [4, 7, 8, 10, 18, 21, 23], "product": [4, 6, 7, 10, 16, 24], "escal": [4, 14, 15, 18], "vector": [4, 14, 15, 16, 24], "puntov3": 4, "normap": 4, "2599210498948732": 4, "6": [4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28], "mecan": [4, 18, 28], "especializ": [4, 8, 20], "existent": 4, "via": [4, 5, 8, 10, 25], "hered": [4, 23], "posibil": [4, 13, 18, 20], "ampli": [4, 8, 13, 28], "redefin": 4, "parantesis": 4, "enunci": [4, 24], "circul": [4, 14, 28], "radi": 4, "sup": [4, 23], "abs": [4, 10, 15, 20, 21], "calcula_are": 4, "are": [4, 8, 19, 28], "pi": [4, 8, 12, 13, 14, 18, 28], "son_igual": 4, "mediant": [4, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 23], "bancari": [4, 24], "tendr": [4, 7, 8, 10, 22, 24, 26], "deposit": [4, 21, 22, 24], "retir": [4, 19, 22], "cantidad": 4, "retira_tod": 4, "diner": [4, 24], "hij": 4, "cuentainversion": 4, "riesg": 4, "multipl": [4, 7, 12, 14, 15, 16, 18, 19, 25, 27, 28], "distribu": [4, 8, 15, 18, 22, 28], "normal": [4, 5, 7, 14, 15, 16, 17, 18, 20, 28], "desviacion": [4, 14, 15, 18, 21], "veas": [4, 12, 20, 26, 28], "random": [4, 14, 15, 16, 17, 18, 20, 23, 25, 26], "pseudoaleatori": 4, "cantid": [4, 14, 16, 24, 27, 28], "inter": 4, "tipo_de_inter": 4, "pepit": 4, "1000": [4, 7, 21, 23, 26], "50": [4, 5, 6, 11, 12, 14, 15, 16, 19, 20, 22, 23, 24, 25, 26], "100": [4, 5, 6, 10, 11, 14, 16, 18, 19, 20, 21, 23, 24, 25, 26], "1050": 4, "950": 4, "1045": 4, "gauss": [4, 11], "1172": 4, "4324788606912": 4, "asum": [4, 5, 24], "van": [4, 12], "tant": [4, 7, 10, 11, 14, 15, 17, 20, 21, 22, 23, 24, 28], "manipul": [4, 9, 11, 14, 20, 25], "podr": [4, 8, 11, 15, 17, 18, 20, 22, 26, 28], "llev": [4, 10, 17, 21], "contandor": 4, "mir": [4, 7], "account": 4, "num_accounts": 4, "Esto": [4, 7, 8, 10, 12, 14, 16, 17, 20, 26, 28], "owner": 4, "balanc": [4, 21], "__name__": [4, 7, 27, 28], "amount": [4, 27, 28], "withdraw": 4, "denomin": [4, 7, 11, 12, 15, 18, 20, 23, 24], "fuer": [4, 5, 9, 15], "init": 4, "account_pepit": 4, "aunqu": [4, 5, 8, 10, 11, 14, 17, 18, 20, 22, 28], "tamb": [4, 20], "traves": [4, 11, 13, 14, 16, 17, 20, 28], "account_alici": 4, "alici": [4, 11], "2000": [4, 6, 20], "uns": 4, "busc": [4, 7, 11, 21, 24], "primer": [4, 5, 7, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 25], "encuentr": [4, 9, 11, 24, 28], "nad": [4, 7, 28], "Un": [4, 5, 6, 7, 11, 14, 20, 24, 26, 28], "uso": [4, 5, 7, 8, 10, 18, 20, 26, 28], "altern": [4, 20, 23], "supong": [4, 15, 20, 23, 24], "part": [4, 5, 6, 7, 9, 11, 13, 14, 15, 17, 18, 20, 22, 23, 24, 25, 26, 28], "xml": 4, "escrutur": 4, "javi": [4, 13], "decor": 4, "classmethod": 4, "cls": 4, "from": [4, 5, 7, 13, 14, 16, 18, 19, 21, 24, 25, 26, 27, 28], "inspect": 4, "classify_class_attrs": 4, "from_xml": 4, "etre": 4, "elementtre": 4, "doc": 4, "findtext": 4, "float": [4, 6, 10, 12, 18, 19, 28], "javi_account": 4, "vari": [4, 5, 7, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 28], "manej": [4, 8, 12, 20], "formate": [4, 28], "fech": [4, 25], "favorec": 4, "tim": [4, 7, 8, 9, 10, 11, 16, 18, 24], "datefmt": 4, "year": [4, 19, 20], "month": [4, 21], "02d": 4, "day": 4, "from_timestamp": 4, "ts": 4, "tm": 4, "localtim": 4, "tm_ye": 4, "tm_mon": 4, "tm_mday": 4, "today": [4, 25], "mdydat": 4, "ymddat": 4, "b": [4, 6, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 21, 24, 26], "2023": [4, 8, 28], "c": [4, 5, 7, 8, 9, 11, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 28], "02": [4, 8, 15, 28], "07": [4, 10, 15], "hast": [5, 7, 9, 10, 11, 17, 18, 19, 22, 24], "escrit": 5, "secuencial": [5, 11, 13, 18], "introduc": [5, 11, 19, 20, 24], "logic": [5, 28], "hag": [5, 21, 26], "vam": [5, 11, 12, 14, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28], "elif": [5, 12, 23], "Antes": [5, 12, 26], "indent": [5, 8], "alcanc": 5, "fragment": 5, "corchet": [5, 8, 9, 11, 17], "delimit": 5, "espaci": [5, 7, 12, 16, 18, 26], "blanc": 5, "interpret": [5, 7, 8, 12, 17, 28], "fundamental": [5, 7, 12, 17], "buen": [5, 8, 12, 22], "my_func": 5, "z": [5, 7, 9, 10, 24, 26], "deb": [5, 6, 7, 8, 9, 10, 11, 12, 18, 20, 21, 22, 23, 24, 26, 28], "viend": 5, "Los": [5, 7, 9, 10, 11, 14, 15, 16, 17, 18, 20, 22, 28], "ciert": [5, 20, 24, 28], "condicion": [5, 15, 17], "cumpl": [5, 15, 22], "palabr": [5, 6, 11], "cuy": [5, 6, 9, 11, 13, 16, 18, 20, 23, 26], "elev": [5, 10], "cuadr": [5, 10, 15, 16], "negat": [5, 6, 11, 21, 22, 24], "cub": 5, "posit": [5, 7, 15, 16, 17, 22, 26], "pertenent": [5, 9], "anid": [5, 9, 18], "conversion": [5, 10], "cer": [5, 6, 9, 11, 12, 20, 24], "non": [5, 7, 9, 11, 12, 16, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28], "0j": [5, 16], "secuenci": [5, 6, 7, 8, 17, 20, 26], "vac": [5, 9], "tupl": [5, 7, 9, 14, 18, 20, 25], "np": [5, 11, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26], "array": [5, 14, 15, 16, 17, 20, 21, 23, 24, 25, 26], "longitud": [5, 9, 10, 11, 12, 20, 26], "k": [5, 6, 11, 14, 16, 20, 22, 26], "diccionari": [5, 6, 7, 9, 15, 20], "dict": [5, 11, 22], "set": [5, 9, 11, 14, 19, 20, 21, 23], "nul": [5, 22], "coleccion": [5, 11, 24], "foo": [5, 6, 7, 8, 9, 10, 11, 12, 13], "lad": [5, 7, 8, 12, 21], "encaden": 5, "num_health": 5, "80": [5, 11, 16, 20, 23, 26], "status": [5, 19, 24], "good": [5, 8], "okay": 5, "dang": 5, "dead": 5, "my_list": [5, 11], "first_item": 5, "val": [5, 13, 16, 17, 20, 21, 22, 24], "comprension": [5, 7, 11], "soport": [5, 7, 8, 14, 18], "sintaxis": [5, 7, 8, 9, 11, 12, 13, 28], "num": [5, 21, 26], "sign": [5, 10, 24], "positiv": [5, 15], "negativ": 5, "equivalent": [5, 14, 17, 20], "isupp": 5, "str": [5, 6, 7, 12, 13, 19, 21, 22, 25], "haz": [5, 10, 14], "mayuscul": [5, 12, 13], "Qu\u00e9": [5, 11, 12, 26], "problem": [5, 8, 15, 21, 23, 26], "Con": [5, 10, 14, 15, 20, 21, 24, 25, 28], "iter": [5, 6, 7, 11, 16, 17, 23], "items": [5, 6, 7, 9, 11], "vez": [5, 6, 7, 9, 11, 12, 13, 14, 15, 20, 21, 22, 23, 26, 28], "8": [5, 6, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "var": [5, 11, 15, 21], "block": 5, "of": [5, 8, 9, 15, 18, 19, 20, 22, 26], "dond": [5, 6, 7, 14, 15, 16, 17, 20, 23, 24, 28], "acab": [5, 20, 22], "cuerp": [5, 6, 7], "men": [5, 6, 10, 22], "maner": [5, 14, 15, 16, 17, 18, 28], "pid": [5, 24], "sal": 5, "vuelv": 5, "Una": [5, 7, 8, 11, 12, 16, 18, 19, 20, 22, 24, 26, 28], "observ": [5, 16, 20, 22, 23], "importat": 5, "persist": 5, "despues": [5, 7, 26], "depend": [5, 7, 12, 14, 21], "string": [5, 13], "ascii_lowerc": [5, 13], "abcdefghijklmnopqrstuvwxyz": 5, "letr": [5, 12, 13, 20], "conson": 5, "abecedari": [5, 13], "repet": [5, 11, 14, 22], "instruccion": [5, 11, 14], "verdader": [5, 9, 23], "condition": [5, 11], "vien": [5, 21, 28], "Se": [5, 7, 11, 13, 14, 15, 18, 22, 28], "vuelt": [5, 16], "error": [5, 7, 11, 12, 23, 26, 28], "infit": 5, "interrump": 5, "reinici": 5, "kernel": [5, 8, 16], "terminal": [5, 8, 28], "ctrl": 5, "estrict": [5, 10], "mayor": [5, 7, 10, 16, 20, 22, 26], "comand": [5, 28], "personaliz": 5, "concret": [5, 9, 10, 11, 13, 17, 20, 21, 24, 28], "cuestion": 5, "salt": [5, 13, 22], "item": [5, 6, 9], "next": [5, 11], "iteration": 5, "conjuncion": 5, "estudi": [5, 11, 21, 22], "libr": [5, 6, 8, 10, 14, 16, 20, 25, 26], "herramient": [5, 7, 8, 12, 20, 22, 25, 28], "tres": [5, 6, 11, 14, 17, 18, 20, 22, 24], "hech": [5, 9, 10, 20, 22, 26], "inmut": [5, 11, 13], "ocup": [5, 12, 21, 22], "poc": [5, 15, 22, 26], "memori": [5, 10, 11, 12, 18, 20], "diferent": [5, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 26, 28], "guard": [5, 6, 7, 9, 10, 11, 12, 14, 15, 16, 17, 18, 23, 26], "atribut": [5, 7, 15, 16, 18, 19, 20, 21, 22, 23, 26], "start": [5, 9, 11, 18, 20, 25], "stop": [5, 11, 20], "step": [5, 11, 20], "metod": [5, 6, 7, 9, 11, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 28], "len": [5, 7, 9, 11, 16, 19, 21, 26], "Es": [5, 7, 8, 11, 12, 15, 18, 22, 24, 26, 27, 28], "20": [5, 7, 12, 14, 16, 18, 19, 20, 22, 23, 24, 26, 28], "11": [5, 7, 8, 9, 13, 15, 16, 17, 18, 19, 20, 22, 25, 26, 27, 28], "18": [5, 14, 18, 19, 20, 22, 25, 26], "da": [5, 8, 9, 11, 14, 18, 20, 23, 24], "r1": 5, "r2": 5, "obten": [5, 7, 9, 12, 14, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28], "dupl": [5, 11], "element": [5, 6, 7, 9, 15, 17, 18, 20, 23, 27, 28], "indic": [5, 6, 9, 12, 14, 15, 17, 18, 19, 20, 21, 22, 24, 25, 28], "my_enum": 5, "apple": [5, 9, 11], "banan": [5, 27, 28], "cat": [5, 11, 21, 26], "dog": 5, "condens": [5, 26], "devolv": [5, 7, 11], "coincid": [5, 7, 20, 24], "comprim": [5, 15, 16], "nam": [5, 7, 11, 14, 19, 20, 21, 22, 26, 28], "angi": 5, "bri": 5, "cassi": 5, "exam_1_scor": 5, "90": [5, 11, 22], "82": 5, "79": [5, 20], "87": 5, "exam_2_scor": 5, "95": [5, 22, 26], "84": 5, "72": [5, 20], "91": [5, 11], "my_zip": 5, "chain": 5, "concaten": [5, 6, 7, 9, 15], "gen_1": 5, "gen_2": 5, "i": [5, 6, 7, 11, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25], "iter_3": 5, "moo": [5, 11], "cow": [5, 11], "iter_4": 5, "him": 5, "0x7fdd9e4f23d0": 5, "Nos": 5, "gener": [5, 7, 9, 15, 16, 18, 21, 22, 23, 24, 25], "combin": [5, 7, 12, 15, 16, 17, 20, 26, 28], "evit": [5, 7, 8, 18, 25], "loops": [5, 20], "my_comb": 5, "Otros": [5, 9], "much": [5, 8, 9, 10, 11, 13, 15, 16, 18, 20, 22, 24, 28], "document": [5, 13, 28], "usa": [5, 17], "combinations": 5, "repeticion": 5, "ascii_lowec": 5, "vocal": 5, "x_vals": 5, "9": [5, 6, 7, 9, 11, 13, 15, 16, 17, 18, 20, 22, 25, 26, 27, 28], "lueg": [5, 9, 11, 14, 16, 20, 21, 22, 25], "guardal": 5, "merg": [6, 19], "arbitrari": [6, 7, 10, 11, 12], "clav": [6, 7, 11, 14, 15, 18, 19, 20], "union": [6, 11], "original": [6, 16, 17, 20, 24, 26], "dict1": 6, "bar": [6, 7, 8, 9, 10, 11, 13, 22, 27, 28], "baz": [6, 7, 9, 11], "dict2": 6, "hell": [6, 9, 13], "world": [6, 9, 13], "fiv": [6, 20], "dict3": 6, "yes": [6, 19, 21, 22], "d": [6, 7, 9, 11, 14, 15, 19, 20], "args": [6, 7, 16, 18], "merge_dict": 6, "dictionary": 6, "key": [6, 7, 9, 11, 21], "if": [6, 7, 8, 11, 12, 15, 16, 21, 22, 23, 25, 26, 27, 28], "append": [6, 7, 9, 11, 18, 21, 23, 25], "else": [6, 7, 12, 15, 16, 21, 22, 23], "Y": [6, 15, 17, 20, 23], "concat_to_str": 6, "conviert": [6, 13, 20, 26], "transcripcion": 6, "sigu": [6, 15], "entonc": [6, 14, 17, 20, 22, 25], "digit": [6, 10, 12], "espa\u00f1ol": 6, "separ": [6, 7, 9, 11, 12, 17, 18, 21, 26], "guion": [6, 7, 12], "142": 6, "cuatr": [6, 14, 20], "12": [6, 8, 15, 17, 18, 20, 21, 22, 24, 25, 26], "qued": [6, 7, 10, 12, 16, 17, 20, 21, 22, 26], "decimal": [6, 10, 13, 18], "324": 6, "dej": [6, 21, 24, 26, 28], "OTRO": 6, "Las": [6, 7, 11, 13, 15, 20, 21], "s": [6, 7, 8, 9, 11, 14, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28], "14": [6, 7, 8, 12, 15, 18, 20, 22, 26], "23": [6, 8, 12, 14, 19, 22, 26, 27, 28], "cinc": 6, "5438543": 6, "traduc": [6, 10], "traduce_enter": 6, "traduce_flot": 6, "n": [6, 7, 9, 11, 12, 13, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26], "n_str": 6, "digits": 6, "join": [6, 13, 19, 20, 21, 22, 26], "traduce_digit": 6, "traductor_digit": 6, "seis": 6, "siet": 6, "ocho": 6, "f_round": 6, "round": [6, 26], "traduccion": 6, "visit": [6, 8], "siti": [6, 8], "web": [6, 19, 27, 28], "enlac": 6, "eleccion": [6, 16, 17, 24], "orgull": 6, "prejuici": 6, "requests": [6, 25], "peticion": 6, "http": [6, 26, 27, 28], "respuest": 6, "book": 6, "continu": [6, 11, 12, 13, 14, 17, 18, 19, 26], "gutenberg": 6, "cach": [6, 28], "epub": 6, "1342": 6, "pg1342": 6, "txt": [6, 18], "book_request": 6, "get": [6, 11, 25], "count_words": 6, "frecuent": [6, 11, 15, 18, 20], "aparicion": 6, "ebooks": 6, "utf": [6, 13], "book_process": 6, "replac": [6, 13, 19], "words": 6, "split": [6, 13, 19, 21, 23, 25], "w": [6, 7, 9, 16, 21, 25], "low": [6, 13], "results": [6, 21], "word": 6, "sort": [6, 7, 9], "lambd": [6, 12, 18, 19, 20, 21, 23, 25], "rev": [6, 11], "carritocompr": 6, "necesit": [6, 18, 20, 23, 24], "compr": 6, "ademas": [6, 7, 8, 11, 12, 15, 17, 18, 20, 23, 24, 25], "a\u00f1ade_necesti": 6, "carrit": 6, "marc": [6, 14], "elimina_necesit": 6, "elimina_compr": 6, "elimin": [6, 21, 25], "lista_necesti": 6, "lista_compr": 6, "alfabet": [6, 7, 13], "lee": 6, "blog": [6, 12], "incu": 6, "pon": [6, 14, 17], "reutiliz": 7, "troz": 7, "add": [7, 11, 20, 28], "cabecer": [7, 8], "especific": [7, 14, 18, 20, 26, 28], "declar": [7, 11], "vec": [7, 10, 14, 15, 16, 19, 22, 23, 24], "ejecu": [7, 9, 12, 18, 20, 28], "termin": [7, 16, 20], "\u00e9sta": [7, 20], "count_ev": 7, "numbers": 7, "conteng": [7, 11], "l": [7, 9, 11, 17, 20, 24], "opcional": [7, 20], "De": [7, 14, 17, 20], "mod": [7, 9, 11, 12, 16, 19, 23, 24, 27, 28], "pass": [7, 8, 12], "fil": [7, 15, 16, 17, 18, 20, 22, 25, 26], "6eed9b32205d": 7, "lin": [7, 13, 14, 23, 24, 26, 28], "syntaxerror": 7, "default": [7, 21], "follows": 7, "Otra": [7, 13, 14, 16, 17, 20, 23, 28], "alt": [7, 8, 11, 28], "recomend": [7, 11, 18], "asterisc": 7, "conveni": 7, "first": [7, 8, 19], "200": [7, 25], "extra": [7, 18, 20], "localiz": [7, 20], "desempaquet": 7, "invoc": [7, 11], "ambos": [7, 14, 15, 16, 17, 20, 21], "ir": [7, 8, 11, 26, 28], "typeerror": [7, 9, 11], "79c55e15d211": 7, "got": 7, "valu": [7, 11, 15, 16, 20, 21, 26, 27, 28], "oblig": 7, "scal": 7, "read_dat": 7, "filenam": [7, 26], "debug": [7, 27, 28], "csv": [7, 19, 20, 21, 22, 26], "17": [7, 10, 15, 18, 20, 21, 22, 24, 25, 28], "875c77499821": 7, "tak": 7, "positional": 7, "but": 7, "wer": 7, "giv": 7, "prefij": 7, "kwargs": [7, 18], "make_t": 7, "font_color": 7, "pop": [7, 9, 11, 20], "black": [7, 14, 24], "bg_color": 7, "whit": 7, "width": [7, 24], "lanz": [7, 8, 28], "configur": [7, 8, 14, 25, 26, 28], "combination": 7, "usand": [7, 9, 10, 13, 14, 15, 18, 19, 20, 21, 23, 24, 26], "consid": [7, 23, 24], "begin": [7, 15, 16, 23, 24], "3n": 7, "end": [7, 9, 11, 15, 16, 18, 23, 24, 25], "orbit": 7, "obtien": [7, 15, 18], "reiter": 7, "collatz": 7, "conjetur": 7, "finit": [7, 10, 18], "compute_orbit": 7, "whil": [7, 12], "ret": [7, 10, 15], "convencion": 7, "snake_c": 7, "pretend": 7, "detall": [7, 14, 21, 28], "intern": [7, 13, 20], "conoc": [7, 14, 24, 28], "squar": 7, "factorial": 7, "120": [7, 22], "menud": 7, "consult": [7, 12], "jupyt": [7, 9, 14, 20, 28], "ides": 7, "mostr": [7, 10, 11, 13, 14, 20, 27, 28], "usuari": [7, 20, 27, 28], "recurs": [7, 17, 24], "dec": [7, 9, 11, 12, 13, 14, 15, 17, 18, 20, 22, 24, 28], "anot": [7, 8], "vim": [7, 9, 11, 19], "ignor": [7, 12], "pylint": 7, "comprueb": [7, 24], "consistent": [7, 11, 12], "Esta": [7, 10, 11, 12, 26], "__annotations__": 7, "apunt": [7, 12], "init_fo": 7, "arg1": 7, "arg2": 7, "nameerror": 7, "45": [7, 13, 14, 15, 22, 26], "42cd4c5c2b13": 7, "precaucion": 7, "mutabl": [7, 11], "enumerat": [7, 14, 17, 22, 25], "16": [7, 10, 12, 15, 18, 20, 21, 22, 25, 26], "25": [7, 9, 14, 15, 17, 18, 19, 20, 22, 23, 26], "mut": 7, "dic": [7, 11, 12], "sid": [7, 9, 19, 20, 21, 22], "effects": 7, "indicardor": 7, "identific": [7, 24], "reasign": 7, "square_ns": 7, "entorn": [7, 8, 28], "fucnion": [7, 14], "dinam": [7, 8, 12], "durant": [7, 9, 12, 21, 22, 26], "global": [7, 12, 22], "unboundedlocalerror": 7, "todav": 7, "mencion": [7, 20], "unboundlocalerror": 7, "70": [7, 16, 20], "d227933f6b14": 7, "referenc": 7, "befor": 7, "assignment": 7, "non_defined_v": 7, "69": 7, "9a9aa7a53d93": 7, "global_v": 7, "h": [7, 9, 11, 15, 16], "scop": 7, "restring": [7, 22, 24], "acces": [7, 8, 17, 20], "42": [7, 12, 13, 14, 17, 18, 21, 26], "13": [7, 9, 11, 15, 18, 20, 21, 22, 28], "fibonacci": 7, "pud": 7, "anonim": 7, "expression": [7, 11], "bucl": [7, 18], "superior": [7, 20, 26, 28], "menor": [7, 10, 16, 22, 28], "order": 7, "concept": 7, "signif": [7, 8], "after": [7, 14], "seconds": [7, 9], "sleep": 7, "incorport": 7, "filtr": [7, 11, 22], "segun": [7, 12, 16, 20, 23, 28], "nums": 7, "rang": [7, 9, 11, 14, 16, 17, 18, 20, 21, 23, 25], "itertools": [7, 16], "functools": [7, 18], "55": [7, 14, 18, 19, 20, 26], "initial": [7, 9], "wrapp": [7, 18], "realic": [7, 17, 26], "tar": [7, 11, 21, 28], "my_reduc": 7, "lenguaj": [8, 18, 19], "popul": 8, "sencill": [8, 28], "facil": [8, 12, 18, 24, 26, 27, 28], "experiment": 8, "obstant": [8, 12], "potent": 8, "resolv": [8, 23], "indol": [8, 18], "Entre": 8, "caracterist": [8, 13, 17, 18, 21], "destac": [8, 20, 22], "vs": [8, 18, 19, 21, 25], "compil": [8, 28], "fuert": [8, 12], "adel": [8, 9, 11, 18, 20, 26], "multiplataform": 8, "capaz": [8, 23, 24], "disposit": 8, "sistem": [8, 14, 26, 28], "proposit": 8, "usars": 8, "varied": [8, 18], "extens": [8, 18], "tercer": [8, 12, 14, 17, 24, 28], "packag": [8, 18, 19, 20, 25, 27, 28], "encuest": [8, 19], "anual": [8, 22], "stackoverflow": 8, "opinion": 8, "tecnolog": [8, 25], "ide": [8, 19, 22, 23, 26], "presenci": 8, "mund": 8, "desarroll": [8, 18, 26, 28], "camp": [8, 11], "cercan": [8, 21], "cienci": [8, 14, 18], "oficial": [8, 13], "noviembr": 8, "version": [8, 11, 13, 15, 16, 19, 23, 26, 28], "establ": 8, "sys": [8, 9, 12, 18, 26], "jun": [8, 22], "05": [8, 21, 23, 24, 26], "26": [8, 13, 14, 16, 19, 22, 25], "28": [8, 12, 14, 19, 25, 26], "gcc": 8, "gestor": [8, 14], "pip": [8, 18, 25, 27, 28], "instal": [8, 25], "desinstal": 8, "actualiz": [8, 9, 10, 11, 19, 28], "project": [8, 19, 28], "u": [8, 13, 16, 24, 28], "anacond": 8, "facilit": [8, 28], "preocup": [8, 11, 21], "dependent": 8, "gran": [8, 13, 14, 17, 18, 23, 27, 28], "funcional": [8, 18, 28], "ecosistem": [8, 14, 18], "corr": [8, 22, 26], "integrat": 8, "development": [8, 19, 27, 28], "environment": [8, 27, 28], "studi": 8, "pycharm": [8, 19], "sublim": 8, "naveg": 8, "python3": [8, 19, 20, 25, 27, 28], "prompt": 8, "clang": 8, "1403": 8, "darwin": 8, "help": 8, "copyright": 8, "credits": 8, "licens": 8, "mor": [8, 19, 22], "information": 8, "install": [8, 18, 25, 27, 28], "notebook": [8, 14, 25], "puert": [8, 27, 28], "8888": 8, "localhost": [8, 27, 28], "feedback": 8, "casi": [8, 22], "inmediant": 8, "familiariz": [8, 12, 14], "neces": [8, 9, 11, 18, 23], "maquin": 8, "perd": 8, "capac": [8, 10, 11, 21], "alin": [8, 20], "Ya": [8, 11, 24], "cuad": 8, "extension": [8, 15], "ipynb": [8, 15], "py": [8, 19, 20, 28], "compuest": 8, "cendill": 8, "celd": [8, 14], "resalt": 8, "negrit": 8, "cursiv": 8, "inclus": [8, 14, 15, 17, 18, 20, 22], "incorpor": [8, 12, 13, 18, 19, 20], "formul": [8, 14, 16, 23, 25], "latex": 8, "frac": [8, 10, 16, 23, 26], "sigm": [8, 16, 18, 25, 26], "mu": [8, 18, 26], "explic": [8, 14], "1991": 8, "rossum": 8, "famos": 8, "grup": [8, 28], "comedi": 8, "britan": 8, "monty": 8, "dummy": 8, "spam": 8, "eggs": 8, "lug": [8, 10, 11, 13, 14, 15, 16, 19, 20, 22, 23, 26, 28], "tipic": [8, 14, 18], "Su": 8, "popular": [8, 25], "aprend": 8, "tratamient": 8, "big": 8, "enfasis": 8, "semicolons": 8, "favor": 8, "filosof": 8, "pythonist": 8, "leers": 8, "zen": 8, "this": [8, 27, 28], "peters": 8, "beautiful": 8, "bett": 8, "than": [8, 19], "ugly": 8, "implicit": [8, 12, 18], "simpl": [8, 11, 13, 25, 27, 28], "complex": [8, 12], "complicat": 8, "flat": 8, "nest": 8, "spars": [8, 21, 26], "dens": 8, "readability": 8, "counts": 8, "special": 8, "aren": 8, "t": [8, 9, 13, 15, 16, 20, 21, 23, 24, 25], "enough": 8, "to": [8, 19, 20, 22, 25, 27, 28], "break": [8, 12], "rul": 8, "although": 8, "practicality": 8, "beats": 8, "purity": 8, "errors": 8, "should": 8, "nev": [8, 20], "silently": 8, "unless": 8, "explicitly": 8, "silenc": 8, "fac": [8, 16], "ambiguity": 8, "refus": 8, "temptation": 8, "guess": [8, 25], "ther": 8, "be": 8, "one": [8, 19, 20, 26], "preferably": 8, "only": 8, "obvious": 8, "way": 8, "do": [8, 27, 28], "that": 8, "may": [8, 22], "re": 8, "dutch": 8, "now": 8, "often": [8, 19], "right": [8, 19], "implementation": 8, "hard": 8, "explain": 8, "bad": 8, "easy": 8, "namespac": 8, "honking": 8, "great": 8, "let": 8, "thos": 8, "borr": [9, 12, 20, 21], "item1": 9, "item2": 9, "itemn": 9, "capitaliz": [9, 13], "convert": [9, 10, 12, 16, 18, 19, 24, 26], "aquell": [9, 17, 19, 20, 21, 22], "7ade7017386b": 9, "compat": [9, 16], "buqu": 9, "arrays": [9, 17, 20, 23], "descripcion": [9, 21, 22, 28], "vars": 9, "deshac": [9, 11], "expand": [9, 19], "veam": [9, 14, 15, 17, 18, 20, 22, 25, 26], "aqu": [9, 14, 18, 20, 24, 25, 28], "expon": [9, 27, 28], "min": [9, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26], "minim": [9, 14, 15, 16, 20, 22, 24], "max": [9, 15, 16, 18, 19, 20, 21, 22, 23, 24, 26], "maxim": [9, 10, 14, 15, 16, 20, 24, 26], "any": [9, 15, 18, 19, 25, 27, 28], "all": [9, 11, 14, 15, 19], "empiez": [9, 11], "d7736ab3e6": 9, "veamosl": [9, 13, 15, 20], "col": [9, 21, 22, 25], "extend": 9, "Estos": [9, 15, 28], "inplac": [9, 20, 21, 26], "sent": [9, 11, 15, 18, 20, 22, 26], "esim": [9, 17], "indexerror": 9, "remov": [9, 11, 23], "coinc": 9, "valueerror": [9, 11], "insert": 9, "posicion": [9, 17, 20], "cond": [9, 15], "magic": 9, "tiemp": [9, 11, 18, 22, 27, 28], "999": [9, 21, 22], "cpu": [9, 18], "user": [9, 19], "\u00b5s": [9, 20], "ns": 9, "wall": 9, "440690273160268878963485086584048121988474010917382722554973456075609532448901633180259437950202687321303259232290860785316984860700206303955114241752651224675873408399440267959338258076321613758130133372529539347042982605207698146020522057684695558163502059375160114801849018132346298605821789418305378740276756187926194096742805466102629298972852134694966312536457747390615453312898505588339646862703020142029890479621367604783461882915721944003538122044057700922967618406667": 9, "execution": 9, "8f": 9, "00009036": 9, "tama\u00f1": [9, 11, 14, 15, 16, 18, 26], "estim": [9, 16, 21, 23, 26], "complej": [9, 16, 27, 28], "computacional": [9, 23], "resum": [10, 22], "tabl": [10, 20, 27, 28], "operation": 10, "description": 10, "cocient": [10, 12, 13], "absolut": [10, 20], "negacion": [10, 11], "verif": [10, 11], "mathbb": [10, 16, 24], "dots": [10, 16, 17, 23, 24], "grand": [10, 20], "trunc": [10, 16, 18], "floor": 10, "real": [10, 16, 24, 26, 27, 28], "determin": [10, 17, 20, 28], "cifr": 10, "43784": 10, "cientif": 10, "medient": [10, 14], "caract": 10, "simboliz": 10, "5e3": 10, "34": [10, 14, 19, 26], "34e": 10, "2500": [10, 12], "vem": [10, 14, 18, 20, 22, 26], "decid": [10, 24], "tan": [10, 22], "cant": 10, "limit": [10, 14, 20], "64": [10, 15], "reten": 10, "llen": 10, "1s": 10, "digit_str": 10, "convertirm": 10, "digit_int": 10, "digit_float": 10, "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111": 10, "111111111111111e": 10, "99": 10, "alla": [10, 11, 28], "precision": 10, "caus": [10, 12], "efect": [10, 22, 26], "precesicion": 10, "551115123125783e": 10, "nunc": [10, 22, 28], "estan": [10, 11, 13, 17, 18, 20, 22], "cerc": [10, 26], "cont": 10, "isclos": 10, "abs_tol": 10, "1e": [10, 18, 21], "ajat": 10, "aritmet": [10, 12, 15], "utilz": 10, "asoci": [10, 14, 15, 17, 20, 25, 28], "posterior": [10, 12, 26], "tecnic": [10, 16, 25], "foob": 10, "extiend": 10, "fractions": 10, "exact": 10, "racional": 10, "magnitud": 10, "invers": [10, 24], "planck": 10, "decimals": 10, "77": [10, 26], "314": 10, "conjut": 11, "investig": 11, "convenient": [11, 15], "similar": [11, 18, 20, 24], "fjkdsljfd": 11, "islow": 11, "reemplez": 11, "zero_tupl": 11, "one_tupl": 11, "holding": 11, "goog": 11, "490": 11, "address": 11, "shar": 11, "pric": [11, 21, 26], "host": 11, "port": 11, "funion": 11, "dedic": 11, "repas": 11, "hat": [11, 16, 23], "1566917e62a3": 11, "count": [11, 20, 22, 26], "individual": [11, 14, 17, 18, 25], "21": [11, 14, 16, 19, 22, 25, 26], "ped": [11, 18, 22, 24], "subconjunt": [11, 17, 19], "sucenci": 11, "seq": 11, "abcdefg": 11, "abcd": [11, 20], "aceg": 11, "invert": [11, 24], "gfedcb": 11, "bien": [11, 14, 15, 20, 21, 24, 26], "sab": [11, 22], "slic": [11, 19], "seleccion": [11, 14, 17, 19, 26], "independient": [11, 14, 16, 19, 28], "slid": 11, "reemplaz": [11, 13], "aapl": [11, 25], "123": 11, "ibm": 11, "msft": [11, 25], "52": [11, 14, 26], "empty_dict": 11, "empaquet": 11, "fruit_or_veggi": 11, "fruit": [11, 27, 28], "carrot": 11, "veget": 11, "comill": [11, 13], "indiqu": [11, 12, 13, 22], "levant": 11, "keyerror": [11, 21], "amz": 11, "31": [11, 13, 14, 19, 22], "a5e5920f828": 11, "98": [11, 21, 22], "updat": [11, 14, 28], "grap": 11, "onion": 11, "levent": 11, "eva": 11, "manol": 11, "virgini": 11, "calif": 11, "mape": 11, "albert": 11, "hasheabl": 11, "example_dict": 11, "floats": 11, "key1": 11, "value1": 11, "key2": 11, "value2": 11, "key3": 11, "value3": 11, "constant": 11, "incopor": 11, "parec": [11, 17, 22, 26], "my_set": 11, "4fd79aa68f5c": 11, "unhash": 11, "interseccion": 11, "intersection": 11, "differenc": 11, "simetr": 11, "symmetric_differenc": 11, "iguald": 11, "fronzenset": 11, "bohr": 11, "curi": 11, "eul": 11, "fermi": 11, "feynm": 11, "heisenberg": 11, "noeth": 11, "bohm": 11, "einstein": 11, "hopp": 11, "montalcini": 11, "einsteins": 11, "collections": 11, "promes": 11, "miembr": 11, "vay": [11, 23], "requir": [11, 26], "contru": 11, "even_g": 11, "evolucion": 11, "my_tupl": 11, "simil": [11, 14, 15, 17, 19, 20, 22, 23, 26, 28], "keys": 11, "my_dict": 11, "zip": [11, 15, 20, 21, 22, 26], "respectivamet": 11, "101": 11, "Cu\u00e1l": 11, "eficient": [11, 15, 18, 20], "yield": [11, 12], "prueb": [11, 16, 28], "pint": [11, 14, 22, 23], "grafic": [11, 18, 20, 21, 25, 26, 27, 28], "config": [11, 14, 18, 22, 23, 24, 25, 26, 28], "inlinebackend": [11, 14, 18, 22, 23, 24, 25, 26], "figure_format": [11, 14, 18, 22, 23, 24, 25, 26], "retin": [11, 14, 18, 22, 23, 24, 25, 26], "as": [11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28], "matplotlib": [11, 16, 18, 20, 21, 22, 23, 24, 25, 26], "pyplot": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "plt": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "get_membership_time_from_rang": 11, "execution_tim": 11, "get_membership_time_from_iter": 11, "get_membership_time_from_list": 11, "get_membership_time_from_set": 11, "get_membership_time_from_tupl": 11, "repeat": 11, "_": [11, 12, 18, 19, 25], "mean_execution_tim": 11, "t_rang": 11, "t_list": 11, "t_set": 11, "t_tupl": 11, "fig": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28], "ax": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "subplots": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "plot": [11, 16, 18, 21, 23, 24, 25, 26], "set_xscal": [11, 18], "log": [11, 18, 23, 25, 28], "set_yscal": [11, 18, 23], "set_xlabel": [11, 14, 18, 21, 23, 25], "set_ylabel": [11, 14, 18, 21, 23, 25], "set_titl": [11, 14, 18, 21, 22, 23, 25, 26], "grid": [11, 14, 16, 18, 21, 23, 24], "legend": [11, 14, 16, 18, 21, 22, 23, 24, 25, 26], "show": [11, 14, 16, 18, 24, 26], "get_deletion_time_from_list": 11, "get_deletion_time_from_set": 11, "get_len_time_from_rang": 11, "get_len_time_from_iter": 11, "get_len_time_from_list": 11, "get_len_time_from_set": 11, "get_len_time_from_tupl": 11, "transform": [12, 15, 16, 17, 18, 19, 24], "primit": 12, "forty": 12, "two": [12, 20], "1j": 12, "cu\u00e1l": [12, 24], "infier": 12, "utilic": [12, 20, 23], "exponencial": [12, 15], "logaritm": [12, 25], "trigonometr": 12, "fin": [12, 24], "mer": 12, "complet": [12, 17, 18, 20, 23, 26], "manual": [12, 24, 26], "verifiqu": [12, 28], "punter": 12, "300": [12, 20, 26], "bytes": [12, 20], "getsizeof": [12, 18], "140598752835760": 12, "utliz": 12, "400": 12, "140598672148560": 12, "cicl": 12, "vid": 12, "comienz": [12, 16], "inacces": 12, "recolector": 12, "basur": 12, "garbag": 12, "collector": 12, "encarg": 12, "reclam": 12, "innacces": 12, "minuscul": [12, 13], "empiec": [12, 17], "pep": 12, "snak": 12, "numberofcollegegraduat": 12, "upperc": 12, "camel": 12, "number_of_college_graduat": 12, "rais": [12, 21], "try": 12, "assert": [12, 26], "finally": 12, "nonlocal": 12, "produc": [12, 20, 24], "habitual": [12, 17, 20], "potenci": 12, "256": 12, "coment": [12, 14], "simplific": [12, 21], "line": [12, 14, 28], "estem": 12, "car": [12, 21, 26], "futur": [12, 22], "entend": [12, 22], "centr": [12, 21], "legibl": 12, "practic": [12, 21, 26], "caracter": 13, "tripl": 13, "codif": [13, 26], "gam": [13, 28], "tild": 13, "\u00f1": 13, "chin": 13, "\u4f60\u597d": 13, "sentenc": 13, "manch": 13, "quier": [13, 17, 20], "acord": 13, "15": [13, 14, 15, 18, 20, 22, 25, 26, 27, 28], "E": [13, 15], "acor": 13, "Estas": [13, 15, 18], "exclus": 13, "tabul": 13, "obvi": 13, "repr": 13, "ahorr": [13, 20], "bye": 13, "89fdshjfjl43fd92": 13, "upper": 13, "une": 13, "univers": 13, "sevill": 13, "facult": 13, "fisic": 13, "incrust": 13, "comod": [13, 20], "antoni": 13, "msg": [13, 21], "Me": 13, "a\u00f1os": [13, 22, 24], "584930589": 13, "formated": 13, "antigu": 13, "opcion": [13, 24, 26, 28], "10pi": 13, "5f": 13, "41593": 13, "diferenci": [13, 15], "rsplit": 13, "nbar": 13, "decimosegund": 13, "contains": [13, 19], "Mi": 13, "prncipal": 14, "bibliotec": [14, 18, 25, 27, 28], "visualiz": [14, 16, 18, 20], "pd": [14, 19, 20, 21, 22, 25, 26, 27, 28], "usr": [14, 19, 20, 25, 27, 28], "interaccion": 14, "integr": [14, 20, 28], "imagen": [14, 26], "saldran": 14, "aperit": 14, "figur": [14, 16, 17, 25, 26, 27, 28], "comenteri": 14, "dam": [14, 18, 20], "brev": 14, "contenedor": 14, "ax1": 14, "add_subplot": [14, 23], "rejill": [14, 26], "2x2": 14, "caj": [14, 21, 24], "axes": [14, 22, 25, 26], "ax2": 14, "activ": [14, 22], "moment": 14, "dibuj": [14, 24], "randn": [14, 18, 20], "cumsum": [14, 15, 20], "volv": [14, 24], "histogram": [14, 20, 22, 25, 26], "hist": [14, 22, 25, 26], "bins": [14, 22, 26], "color": [14, 16, 19, 20, 23, 24, 26], "alpha": [14, 22, 23, 26], "coloc": 14, "scatt": [14, 16, 23, 25, 26], "arang": [14, 15, 16, 17, 18, 20, 21], "30": [14, 16, 19, 24], "mezcl": [14, 17], "subplot": 14, "rellen": [14, 16], "linspac": [14, 18, 23, 24, 26], "subfigur": 14, "plor": 14, "sen": 14, "rows": [14, 19, 21, 22], "columns": [14, 19, 20, 21, 22, 25, 26], "panel": 14, "numb": [14, 15, 20, 21, 26, 27, 28], "creat": 14, "cosen": 14, "inconvenient": [14, 28], "proced": [14, 20, 26], "creacion": 14, "cuales": 14, "pens": [14, 28], "eventual": 14, "antrior": 14, "dependient": 14, "diez": 14, "corresponient": 14, "rect": [14, 24], "bast": [14, 18, 26], "ajust": [14, 21, 28], "He": 14, "blu": [14, 19, 22], "cort": [14, 26], "rgbcmyk": 14, "75": [14, 19, 20, 22, 24], "gris": 14, "ffdd44": 14, "hex": 14, "rrggbb": 14, "00": [14, 15, 18, 20, 22, 25, 27, 28], "ff": 14, "rgb": 14, "chartreus": 14, "linestyl": 14, "dashdot": 14, "dott": 14, "compact": 14, "catacterist": 14, "gre": 14, "cyan": [14, 24], "red": [14, 19], "deduc": [14, 22], "xlim": 14, "ylim": 14, "axis": [14, 15, 16, 18, 20, 21, 22, 23, 26], "tight": 14, "asegur": [14, 21, 28], "rati": [14, 26], "aspect": 14, "proporcional": 14, "ejes": [14, 17, 18, 20], "equal": [14, 25], "Otro": [14, 18, 28], "titl": 14, "curv": [14, 23], "xlabel": [14, 26], "ylabel": [14, 26], "getters": 14, "setters": 14, "axs": 14, "looks": 14, "ellips": 14, "fontsiz": [14, 22, 26], "circl": 14, "still": 14, "even": [14, 25], "changing": 14, "limits": 14, "set_aspect": 14, "box": [14, 27, 28], "aut": 14, "adjust": 14, "tight_layout": [14, 18, 22, 26], "muestr": [14, 18, 20], "leyend": 14, "consig": [14, 18], "notes": [14, 17, 18, 20, 28], "keyword": 14, "aleatori": [14, 15, 18, 23, 25], "acumul": [14, 15, 20], "sumand": [14, 23], "titul": 14, "grill": [14, 16], "unir": 14, "mark": [14, 23], "facecolor": 14, "edgecolor": 14, "aefect": 14, "ilustr": 14, "aspact": 14, "v": [14, 16, 17, 18, 22, 25, 26], "rcparams": [14, 25, 26], "mpl": [14, 25, 26], "linewidth": 14, "rand": [14, 25], "rcparamsdefault": 14, "temporal": 14, "rc_context": 14, "style": [14, 22, 25], "bmh": 14, "fuent": [14, 22], "gros": 14, "fond": [14, 17, 24], "plots": 14, "xkcd": 14, "ages_x": 14, "19": [14, 15, 18, 19, 20, 22], "24": [14, 15, 18, 19, 20, 25, 26, 27, 28], "27": [14, 19, 24, 25], "29": [14, 19, 26], "32": [14, 19, 22, 26], "33": [14, 15, 19, 26], "35": [14, 19, 26], "36": [14, 15, 18, 19, 22], "37": [14, 22, 26], "38": [14, 19, 22, 28], "39": [14, 15, 18, 19, 22, 25], "40": [14, 16, 19, 20, 22], "41": [14, 19, 26], "43": [14, 19], "44": [14, 18, 22], "46": [14, 22], "47": [14, 22], "48": [14, 19], "49": [14, 15, 26], "51": [14, 19], "53": 14, "54": [14, 19, 20, 21], "py_dev_y": 14, "20046": 14, "17100": 14, "20000": 14, "24744": 14, "30500": 14, "37732": 14, "41247": 14, "45372": 14, "48876": 14, "53850": 14, "57287": 14, "63016": 14, "65998": 14, "70003": 14, "70000": [14, 20], "71496": 14, "75370": 14, "83640": 14, "84666": 14, "84392": 14, "78254": 14, "85000": 14, "87038": 14, "91991": 14, "100000": [14, 20, 26], "94796": 14, "97962": 14, "93302": 14, "99240": 14, "102736": 14, "112285": 14, "100771": 14, "104708": 14, "108423": 14, "101407": 14, "112542": 14, "122870": 14, "120000": 14, "js_dev_y": 14, "16446": 14, "16791": 14, "18942": 14, "21780": 14, "25704": 14, "29000": 14, "34372": 14, "37810": 14, "43515": 14, "46823": 14, "49293": 14, "53437": 14, "56373": 14, "62375": 14, "66674": 14, "68745": 14, "68746": 14, "74583": 14, "79000": 14, "78508": 14, "79996": 14, "80403": 14, "83820": 14, "88833": 14, "91660": 14, "87892": 14, "96243": 14, "90000": 14, "99313": 14, "102264": 14, "108000": 14, "105000": 14, "104000": 14, "javascript": 14, "dev_y": 14, "17784": 14, "16500": 14, "18012": 14, "20628": 14, "25206": 14, "30252": 14, "34368": 14, "38496": 14, "42000": 14, "46752": 14, "49320": 14, "53200": 14, "56000": 14, "62316": 14, "64928": 14, "67317": 14, "68748": 14, "73752": 14, "77232": 14, "78000": 14, "79536": 14, "82488": 14, "88935": 14, "90056": 14, "95000": 14, "91633": 14, "98150": 14, "98964": 14, "98988": 14, "108923": 14, "103117": 14, "444444": 14, "devs": 14, "ages": 14, "salary": 14, "usd": 14, "age": [14, 19, 21], "svg": 14, "savefig": [14, 26], "traspuest": [15, 20], "reshap": [15, 17, 18, 20], "usos": 15, "rng": [15, 16, 17, 18, 23], "default_rng": [15, 16, 17, 18, 23], "97734426": 15, "34168783": 15, "54370593": 15, "09067281": 15, "38656466": 15, "42387283": 15, "6809858": 15, "79495013": 15, "6643198": 15, "11542681": 15, "23222994": 15, "29016714": 15, "48905073": 15, "4287645": 15, "12921964": 15, "54877746": 15, "53484643": 15, "38120392": 15, "column": [15, 16, 17, 18, 19, 20, 21, 22, 25, 26], "1684198013823905": 15, "565673422517082": 15, "matriz": [15, 16, 24, 25, 26], "13835602": 15, "59077327": 15, "1402564": 15, "9597364": 15, "18216807": 15, "93447353": 15, "matric": [15, 16, 18], "3427873": 15, "1684198": 15, "49677525": 15, "03255648": 15, "75784613": 15, "84572115": 15, "matmul": 15, "dimension": [15, 16, 17, 18, 23, 24], "shap": [15, 16, 17, 18, 21, 22, 23, 25, 26], "x1": [15, 23], "x2": [15, 23], "x3": 15, "y1": 15, "y2": 15, "y3": 15, "radic": 15, "eje": [15, 17, 18, 23], "penultim": 15, "ufunc": 15, "actu": [15, 18, 20], "raiz": 15, "41421356": [15, 18], "73205081": [15, 18], "23606798": [15, 18], "44948974": [15, 18], "64575131": 15, "82842712": 15, "exp": [15, 20, 23], "00000000e": 15, "71828183e": 15, "38905610e": 15, "00855369e": 15, "01": [15, 18, 25], "45981500e": 15, "48413159e": 15, "03428793e": 15, "09663316e": 15, "03": 15, "98095799e": 15, "10308393e": 15, "87429038": 15, "60146503": 15, "78618126": 15, "39004253": 15, "71614978": 15, "39805865": 15, "49221638": 15, "44731592": 15, "18653805": 15, "0021312": 15, "18674062": 15, "54596008": 15, "09953302": 15, "6774103": 15, "24323459": 15, "78876074": 15, "maximum": 15, "6014650336830638": 15, "unidimensional": [15, 16, 17, 18, 20], "xarr": 15, "yarr": 15, "mask": [15, 17, 22], "quis": 15, "trasl": 15, "multidimensional": [15, 17, 18, 21], "afortun": 15, "terc": [15, 24], "904584": 15, "47681661": 15, "85527621": 15, "23259456": 15, "15959159": 15, "98360584": 15, "19441186": 15, "18022266": 15, "4686294": 15, "20309533": 15, "69897494": 15, "34110354": 15, "14021694": 15, "73078875": 15, "35924888": 15, "37697319": 15, "select": 15, "masc": 15, "consecut": [15, 18], "probabl": 15, "Algo": 15, "dtype": [15, 16, 19, 20, 21, 22, 24, 25, 26], "u13": 15, "leq": [15, 16, 23, 24], "fun": [15, 24, 25], "arr": [15, 17, 18], "ndarray": [15, 16, 22], "std": [15, 18, 20, 21, 22, 25, 26], "varianz": [15, 22], "resp": 15, "argmin": 15, "argmax": 15, "09112171": 15, "08230266": 15, "89863545": 15, "52677635": 15, "54990182": 15, "07619354": 15, "75797502": 15, "860579": 15, "09303698": 15, "44922159": 15, "33924061": 15, "10457966": 15, "1117293": 15, "90753648": 15, "05131964": 15, "62497588": 15, "93907081": 15, "15168268": 15, "01746402": 15, "41960373": 15, "27278425211733": 15, "0636392126058665": 15, "aplan": 15, "00881904": 15, "90745449": 15, "43423084": 15, "88432903": 15, "96052256": 15, "20254755": 15, "06312655": 15, "97008957": 15, "52086797": 15, "18162736": 15, "28620701": 15, "39793631": 15, "49039984": 15, "54171947": 15, "08325641": 15, "02232721": 15, "87064453": 15, "85318052": 15, "27278425": 15, "recorr": [15, 20, 23], "60855771": 15, "15722393": 15, "44422988": 15, "34236586": 15, "29738196": 15, "3791586": 15, "21118452": 15, "12979653": 15, "44735539": 15, "54121989": 15, "00610913": 15, "14066043": 15, "38735535": 15, "55181709": 15, "45533072": 15, "19858018": 15, "49193501": 15, "44008779": 15, "3628672": 15, "14726055": 15, "86695913": 15, "alcanz": [15, 20], "27853877": 15, "17616873": 15, "08639434": 15, "71179482": 15, "49584663": 15, "3110513": 15, "45771891": 15, "8344855": 15, "29078383": 15, "01771914": 15, "28984018": 15, "29882205": 15, "30483596": 15, "62936796": 15, "3178527": 15, "48674387": 15, "12290782": 15, "84551946": 15, "59530505": 15, "73887554": 15, "68253372": 15, "3045412": 15, "15765242": 15, "10783287": 15, "65411545": 15, "46806825": 15, "24073242": 15, "44623373": 15, "18700595": 15, "21069342": 15, "04472487": 15, "56415783": 15, "97661418": 15, "35211161": 15, "42571366": 15, "18813283": 15, "0133082": 15, "30901811": 15, "36809575": 15, "49092016": 15, "29272923": 15, "35134416": 15, "54762578": 15, "35406801": 15, "32778901": 15, "59953407": 15, "57534093": 15, "30190145": 15, "5022292": 15, "59797817": 15, "ontar": 15, "aprovech": 15, "identif": 15, "generaliz": [15, 20], "bools": 15, "recuper": [15, 26], "tard": [15, 18], "sav": [15, 26], "load": [15, 26], "npy": 15, "j": [15, 16, 17, 20, 23, 24, 25], "un_array": 15, "savez": 15, "npz": 15, "array_arch": 15, "carg": [15, 18, 19, 20, 21], "perez": 15, "arch": 15, "81": 15, "savez_compress": 15, "arrays_comprim": 15, "ls": [15, 18], "lah": 15, "520": 15, "drwxr": 15, "xr": 15, "javlintor": 15, "staff": 15, "320b": 15, "1m": 15, "36m": [15, 18], "160b": 15, "nov": [15, 22], "08": [15, 28], "rw": 15, "650b": 15, "424b": 15, "28k": 15, "operations": 15, "0k": 15, "42k": 15, "164k": 15, "introduction": 15, "798b": 15, "oct": 15, "nn": 15, "208b": 15, "rm": 15, "int_": [16, 18], "dt": 16, "discret": 16, "f_0": 16, "f_": 16, "g_0": 16, "g_": 16, "conv": 16, "component": [16, 17], "sum_": [16, 23, 24, 25], "f_ig_j": 16, "inputs": [16, 17, 23], "arr1": [16, 18], "arr2": [16, 18], "60": [16, 19, 20, 22], "conv_dim": 16, "arr_conv": 16, "my_gen": 16, "matrix": [16, 22, 24, 26], "exterior": 16, "diagonal": [16, 18], "conv2": 16, "outer_mat": 16, "out": [16, 19, 25], "trac": 16, "offset": 16, "imag": [16, 26], "descomposicion": [16, 24], "svd": 16, "singul": 16, "decomposition": 16, "expres": [16, 20], "singular": 16, "recuerd": [16, 26], "intens": 16, "pixel": 16, "roj": 16, "verd": 16, "azul": 16, "cons": [16, 20, 21, 24, 25], "alto": [16, 20, 28], "ancho": 16, "aproxima_img": 16, "aproxim": [16, 21, 23], "scipy": [16, 18, 21, 22, 25], "misc": 16, "im": [16, 23], "cv2": 16, "imre": [16, 26], "img": 16, "jpg": 16, "imshow": [16, 26], "canal": [16, 21, 22], "linalg": 16, "cuid": [16, 18], "esper": [16, 22, 25, 28], "transpos": 16, "fill_diagonal": 16, "clip": 16, "transpon": 16, "im_t": 16, "im_c": 16, "normaliz": [16, 20, 22, 25, 26], "porqu": [16, 21, 24, 28], "transpuest": 16, "factoriz": 16, "usv": 16, "ortogonal": 16, "raic": 16, "aa": 16, "conjug": 16, "correspond": [16, 18, 20, 22], "matricial": [16, 23], "proyect": 16, "multiplic": [16, 18], "garantiz": 16, "signal": 16, "convolve2d": 16, "sam": 16, "pmatrix": [16, 23], "approx": 16, "windows": [16, 28], "gaussi": 16, "sharr": 16, "scharr": 16, "3j": 16, "10j": 16, "path": [16, 20, 21, 22, 26], "png": [16, 26], "ones": [16, 18, 23, 25], "img_convolv": 16, "zeros_lik": 16, "ponder": 16, "cojunt": 16, "regresor": [16, 22, 23, 26], "theta_0": [16, 23], "theta_1x_1": [16, 23], "theta_nx_n": [16, 23], "featur": [16, 19, 21], "x_i": [16, 17], "predich": 16, "theta_i": 16, "ecuacion": 16, "x_1": [16, 17, 23, 24], "cdots": [16, 23], "x_n": [16, 17, 23, 24], "theta_1": [16, 23], "vdots": [16, 23], "theta_n": [16, 23], "boldsymbol": 16, "cdot": [16, 23], "thet": [16, 23], "minimic": 16, "_i": [16, 23], "y_i": 16, "optim": [16, 23, 24, 26], "ty": 16, "x_": 16, "1n": 16, "2n": 16, "m1": 16, "mn": 16, "y_0": 16, "y_1": 16, "y_n": 16, "regresionlineal": 16, "entren": [16, 21, 23], "coeficient": [16, 22], "_thet": 16, "y_hat": 16, "varibl": 16, "descrit": 16, "inv": 16, "pinv": 16, "vstack": 16, "hstack": 16, "array_lik": 16, "concatenat": [16, 23], "prediccion": [16, 23, 26], "test": [16, 20, 28], "rl": 16, "integers": [16, 23], "siz": [16, 18, 19, 23, 24], "standard_normal": [16, 23], "9973099": 16, "00645781": 16, "71": [16, 20], "33c21612b609": 16, "userwarning": 16, "currently": 16, "using": 16, "ipykernel": 16, "pylab": 16, "backend_inlin": 16, "which": 16, "backend": 16, "so": 16, "cannot": 16, "explor": [17, 18, 22], "flexibil": 17, "unidimensonal": 17, "consecuent": [17, 21, 22], "l_sublist": 17, "v_subarray": 17, "v_slic": 17, "12345": 17, "copy": [17, 26], "casuist": 17, "subarray": 17, "c2d": 17, "c3d": 17, "ndenumeart": 17, "ndenumerat": 17, "old_valu": 17, "reestablec": 17, "813": 17, "2100": 17, "slicings": 17, "bidimensional": [17, 18, 20], "pierd": 17, "mantien": [17, 21], "slice_1": 17, "slice_2": 17, "tridimensional": 17, "componenet": 17, "bob": 17, "joe": 17, "will": [17, 25], "00956514": 17, "25628708": 17, "18394276": 17, "28634546": 17, "85000431": 17, "04028551": 17, "20689953": 17, "25049682": 17, "46840893": 17, "57883228": 17, "7674367": 17, "3365187": 17, "85013471": 17, "44981425": 17, "17843139": 17, "05976842": 17, "87556869": 17, "23884001": 17, "41158185": 17, "11957846": 17, "51579891": 17, "32351957": 17, "43951358": 17, "02277686": 17, "621115": 17, "64728839": 17, "59761337": 17, "12366288": 17, "person": [17, 19, 20, 22], "complementari": 17, "jug": 17, "neativ": 17, "observes": [17, 18], "fij": [17, 23, 24], "char": 17, "startswith": 17, "flip": 17, "inviert": 17, "d_i": 17, "quizas": 18, "algebr": 18, "abiert": 18, "rivaliz": 18, "matlab": 18, "histori": 18, "alrededor": 18, "scikits": 18, "dask": 18, "opencv": 18, "seaborn": [18, 21, 22, 25, 26], "statsmodels": 18, "spacy": 18, "repot": 18, "streamlit": 18, "ali": [18, 20], "cund": 18, "serv": [18, 26, 27, 28], "rutin": 18, "lent": 18, "millon": 18, "analog": 18, "10000000": 18, "list1": 18, "timeit": [18, 20], "list2": 18, "448": 18, "ms": [18, 20], "loop": [18, 20], "dev": [18, 20, 25, 27, 28], "runs": [18, 20], "each": [18, 20, 25], "89": 18, "823": 18, "new_fil": 18, "sample_dat": 18, "pympler": 18, "collecting": [18, 27, 28], "downloading": [18, 26, 27, 28], "py3": [18, 27, 28], "whl": [18, 27, 28], "164": 18, "kb": [18, 27, 28], "25l": 18, "90m": [18, 27, 28], "0m": [18, 27, 28], "32m0": 18, "31m": [18, 27, 28], "eta": [18, 23, 27, 28], "2k": [18, 27, 28], "91m": 18, "32m163": 18, "31m5": 18, "mb": [18, 22, 26, 27, 28], "36m0": [18, 27, 28], "32m164": 18, "31m4": 18, "25hinstalling": 18, "collect": [18, 27, 28], "successfully": [18, 24, 27, 28], "asizeof": 18, "80000128": 18, "400000048": 18, "80000112": 18, "80000056": 18, "get_ex_tim": 18, "tri": 18, "ex_tim": 18, "mean_ex_tim": 18, "get_duplicate_time_python": 18, "get_duplicate_time_numpy": 18, "get_sum_time_python": 18, "get_sum_time_numpy": 18, "t_duplicate_python": 18, "t_duplicate_numpy": 18, "t_sum_python": 18, "t_sum_numpy": 18, "figsiz": [18, 21, 22, 23, 24, 25, 26], "pur": 18, "dimensional": [18, 21], "hic": 18, "psuedoaletori": 18, "58619635": 18, "30295786": 18, "11850167": 18, "98946757": 18, "5681518": 18, "67146183": 18, "8619635": 18, "02957863": 18, "1850167": 18, "89467569": 18, "68151804": 18, "71461827": 18, "1723927": 18, "60591573": 18, "23700334": 18, "97893514": 18, "13630361": 18, "34292365": 18, "homogene": 18, "float64": [18, 19, 20, 22, 24, 25, 26], "ndim": 18, "reduc": [18, 24], "terminolog": 18, "suscept": [18, 26], "data1": 18, "correct": [18, 28], "data2": 18, "eye": 18, "diag": 18, "interval": [18, 26], "defult_rng": 18, "standard": [18, 26], "deviation": [18, 26], "float_": 18, "int32": 18, "iinf": 18, "finf": 18, "2147483648": 18, "2147483647": 18, "uint8": 18, "255": 18, "resolution": [18, 26], "7976931348623157e": 18, "308": 18, "astype": [18, 19], "int64": [18, 19, 20, 22, 26], "float_arr": 18, "numeric_strings": 18, "string_": 18, "broadcasting": 18, "efectu": 18, "escalar": 18, "33333333": 18, "16666667": 18, "dis": 19, "inspir": 19, "sql": [19, 20], "groupby": 19, "dataset": [19, 21, 22, 23, 26], "mattharrison": [19, 20], "datasets": [19, 20, 26], "raw": [19, 20, 26], "mast": [19, 20, 26], "2020": 19, "jetbrains": 19, "survey": 19, "jb": 19, "read_csv": [19, 20, 21, 22, 26], "lib": [19, 20, 25, 27, 28], "cor": [19, 20, 22, 26, 27, 28], "interactiveshell": [19, 20], "3326": [19, 20], "dtypewarning": [19, 20], "152": 19, "hav": [19, 20, 25], "mix": [19, 20], "types": [19, 20], "specify": [19, 20], "option": [19, 20], "low_memory": [19, 20], "exec": [19, 20], "code_obj": [19, 20], "user_global_ns": [19, 20], "user_ns": [19, 20], "pipelin": [19, 21], "cols": [19, 21, 22], "datascientist": 19, "country": 19, "liv": 19, "employment": 19, "about": 19, "how": [19, 25], "job": [19, 21], "team": 19, "purp": 19, "missing": 19, "nps": 19, "years": 19, "python2": 19, "several": 19, "projects": 19, "coding": 19, "jb2": 19, "renam": 19, "assign": 19, "df_": 19, "are_you_datascientist": 19, "nan": [19, 20], "company_siz": 19, "sur": 19, "5000": [19, 20], "500": [19, 21, 22, 26], "501": 19, "001": [19, 23], "1001": 19, "country_liv": 19, "category": [19, 20], "employment_status": 19, "filln": [19, 20, 26], "other": 19, "is_python_main": 19, "team_siz": 19, "iloc": [19, 21, 22, 26], "peopl": 19, "wher": [19, 26], "years_of_coding": 19, "less": 19, "extract": [19, 21, 22], "python_years": 19, "python3_v": 19, "python3_version_most": 19, "use_python_most": 19, "unknown": [19, 22], "drop": [19, 20, 21, 22, 26], "python2_version_most": 19, "first_learn_about_main_id": 19, "how_often_use_main_id": 19, "ide_main": 19, "job_team": 19, "main_purp": 19, "missing_features_main_id": 19, "nps_main_id": 19, "several_projects": 19, "partially": 19, "employ": [19, 21], "organization": 19, "conferenc": 19, "group": [19, 28], "weekly": 19, "community": 19, "work": 19, "external": 19, "consultant": 19, "train": [19, 23], "need": 19, "3_7": 19, "many": 19, "different": 19, "indi": 19, "fully": 19, "school": [19, 21, 22], "university": [19, 22], "daily": [19, 25], "both": 19, "personal": [19, 21, 22], "3_6": 19, "softwar": [19, 24], "prototyping": 19, "unit": 19, "stat": [19, 20], "friend": 19, "colleag": 19, "own": 19, "independently": 19, "devops": 19, "system": 19, "administration": 19, "writing": 19, "autom": 19, "lt": [19, 26], "na": 19, "gt": [19, 20], "ple": 19, "3_8": 19, "italy": 19, "student": 19, "search": 19, "engin": 19, "educational": 19, "54457": 19, "russi": 19, "federation": 19, "54458": 19, "54459": 19, "earning": 19, "incom": 19, "directl": 19, "54460": 19, "spain": 19, "54461": 19, "algeri": 19, "onlin": 19, "platform": 19, "cours": [19, 22], "54462": 19, "dataframegroupby": 19, "gb": [19, 21], "generic": 19, "seriesgroupby": 19, "0x7fab4deee2b0": 19, "_groupby": 19, "528736": 19, "argentin": 19, "65641": 19, "armeni": 19, "967742": 19, "australi": 19, "527578": 19, "austri": 19, "914894": 19, "023162": 19, "uruguay": 19, "30303": 19, "uzbekist": 19, "290323": 19, "venezuel": 19, "909091": 19, "viet": 19, "421053": 19, "length": [19, 22], "76": [19, 20], "freelanc": 19, "pursuing": 19, "profession": 19, "without": [19, 28], "long": 19, "term": 19, "commitment": 19, "285714": 19, "344828": 19, "333333": 19, "181818": 19, "directly": 19, "business": 19, "trad": 19, "384615": 19, "working": 19, "571429": 19, "608": 19, "unstack": 19, "411765": 19, "4375": 19, "954545": 19, "209524": 19, "913043": 19, "842105": 19, "818182": 19, "074468": 19, "21875": 19, "828571": 19, "470588": 19, "857143": 19, "318182": 19, "615385": 19, "8125": 19, "318471": 19, "343223": 19, "534884": 19, "894737": 19, "920635": 19, "446512": 19, "947791": 19, "89375": 19, "125": [19, 20], "888889": 19, "826087": 19, "454545": 19, "833333": 19, "025641": 19, "nosotr": [19, 28], "agg": 19, "per_emacs": 19, "emacs": 19, "000000": [19, 20, 22, 26], "102564": 19, "877698": 19, "595745": 19, "025157": 19, "428571": 19, "192053": 19, "076923": 19, "710884": 19, "448000": 19, "391337": 19, "692308": 19, "160000": 19, "812500": 19, "comb": 19, "750000": [19, 20, 26], "666667": 19, "df1": [19, 20], "georg": 19, "ring": 19, "purpl": 19, "df2": [19, 20], "paul": 19, "carcolor": 19, "inner": 19, "left": [19, 22], "cruz": [19, 21], "columans": 19, "colum": 19, "left_on": 19, "right_on": 19, "name_x": 19, "name_y": 19, "inidic": 19, "introduccion": 20, "analiz": [20, 21], "rap": [20, 26], "escritur": 20, "excel": 20, "graci": [20, 23], "subyacent": 20, "veloc": 20, "interfaz": 20, "amig": 20, "tabular": 20, "eleg": [20, 21, 22, 28], "seran": 20, "rangeindex": [20, 22, 26], "s2": 20, "nocion": 20, "subseri": 20, "directem": 20, "598150": 20, "1096": 20, "633158": 20, "403": [20, 22], "428793": 20, "085537": 20, "sdat": 20, "ohi": 20, "35000": 20, "tex": 20, "71000": 20, "oregon": 20, "16000": 20, "utah": 20, "s3": 20, "californi": [20, 26], "s4": 20, "pes": [20, 21, 22], "inexistent": [20, 21], "isnull": 20, "32000": 20, "142000": 20, "xs": 20, "xl": 20, "categori": 20, "city_mpg": 20, "highway_mpg": 20, "vehicl": 20, "df": [20, 21, 22, 27, 28], "city08": 20, "highway08": 20, "median": [20, 26], "cut": 20, "preci": [20, 21, 22, 25, 26], "categor": [20, 21], "cuartil": 20, "value_counts": [20, 22, 26], "barr": [20, 21, 26], "compart": [20, 28], "2001": 20, "2002": 20, "2003": 20, "fram": [20, 22, 26], "infom": 20, "info": [20, 22, 26, 27, 28], "entri": [20, 22, 26], "null": [20, 22, 26], "dtypes": [20, 22, 26], "memory": [20, 22, 26], "usag": [20, 22, 26], "272": 20, "head": [20, 26], "muest": 20, "thre": 20, "four": 20, "six": [20, 25, 27, 28], "debt": 20, "deten": 20, "parcial": 20, "eastern": 20, "colunm": 20, "extern": 20, "constitu": 20, "df3": 20, "vicevers": 20, "pdat": 20, "acomod": 20, "refier": 20, "new_s": 20, "new": [20, 28], "york": 20, "indicand": 20, "destruct": 20, "anter": 20, "hab": [20, 26], "admit": 20, "particular": [20, 26], "refir": 20, "filt": 20, "subtabl": 20, "inclusiv": 20, "complic": 20, "set_index": 20, "mak": 20, "ferrari": 20, "abcde": 20, "POr": 20, "operand": 20, "fill_valu": 20, "sub": 20, "mul": 20, "div": [20, 23, 27, 28], "pow": 20, "relacion": [20, 21, 23], "reindex": 20, "bde": 20, "497856": 20, "100599": 20, "044469": 20, "006873": 20, "508566": 20, "075500": 20, "468307": 20, "198138": 20, "652674": 20, "376750": 20, "278911": 20, "017388": 20, "apply": 20, "383623": 20, "407967": 20, "670062": 20, "opracion": 20, "734510": 20, "376317": 20, "811918": 20, "867884": 20, "adapt": 20, "68": 20, "73": [20, 22], "74": [20, 22], "gt20": 20, "88": [20, 26], "226": [20, 22], "63": 20, "10000": 20, "select_dtyp": [20, 21, 22, 26], "comenz": 20, "sort_index": 20, "ascending": [20, 22, 26], "ascendent": 20, "descendent": 20, "sort_valu": [20, 22, 26], "situ": 20, "lexicograf": 20, "skipn": 20, "exclu": 20, "275": 20, "idxmax": 20, "083333": 20, "900000": 20, "493685": 20, "262742": 20, "500000": 20, "075000": 20, "700000": 20, "400000": 20, "250000": 20, "300000": 20, "uniqu": 20, "top": [20, 27, 28], "freq": 20, "housing": [20, 21, 26], "tarfil": [20, 26], "urllib": [20, 21, 22, 26], "download_root": [20, 26], "githubusercontent": [20, 26], "ageron": [20, 26], "handson": [20, 26], "ml2": [20, 26], "housing_path": [20, 26], "housing_url": [20, 26], "tgz": [20, 26], "fetch_housing_dat": [20, 26], "makedirs": [20, 21, 22, 26], "exist_ok": [20, 21, 22, 26], "tgz_path": [20, 26], "urlretriev": [20, 21, 22, 26], "housing_tgz": [20, 26], "open": [20, 21, 26], "extractall": [20, 26], "clos": [20, 25, 26], "load_housing_dat": [20, 26], "csv_path": [20, 21, 22, 26], "faltant": [20, 22, 25, 26], "clasific": 21, "client": [21, 26], "subscrib": 21, "plaz": [21, 22], "represet": [21, 22], "candidat": [21, 22], "marital": 21, "civil": [21, 22], "education": 21, "educ": [21, 22], "incumpl": [21, 22], "credit": [21, 22], "hipotec": [21, 22], "loan": 21, "campa\u00f1": [21, 22], "comunic": [21, 22], "mes": [21, 22], "present": [21, 22], "a\u00f1o": [21, 22, 24], "day_of_week": 21, "dia": [21, 22, 28], "seman": [21, 22], "duration": 21, "duracion": [21, 22], "historial": 21, "campaign": 21, "pdays": 21, "dias": [21, 22], "hub": [21, 22], "previous": 21, "poutcom": 21, "socioeconom": 21, "emp": 21, "rat": [21, 23], "tas": [21, 22, 23], "variacion": [21, 22], "cuatrimestral": [21, 22], "idx": 21, "consum": [21, 22, 26], "mensual": [21, 22], "conf": 21, "confianz": [21, 22, 28], "consumidor": [21, 22], "euribor3m": 21, "euribor": [21, 22], "diari": [21, 22, 25], "nr": 21, "mil": [21, 22], "Ha": [21, 22], "contrat": [21, 22], "zipfil": [21, 22], "typing": [21, 25], "sns": [21, 22, 26], "stats": [21, 22], "ss": [21, 22], "working_d": [21, 22], "download_url": [21, 22], "ics": [21, 22], "uci": [21, 22], "edu": [21, 22], "ml": [21, 22, 26], "datab": [21, 22], "00222": [21, 22], "bank": [21, 22], "additional": [21, 22], "bank_path": [21, 22], "raw_data_rel_path": [21, 22], "data_raw": [21, 22], "zip_path": [21, 22], "full": [21, 22], "raw_data_path": [21, 22], "fetch_dat": [21, 22], "zip_file_path": [21, 22], "zip_ref": [21, 22], "load_dat": [21, 22], "auxiliar": [21, 22], "filter_cols": 21, "rem_cols": 21, "estratific": 21, "desbalanc": [21, 22], "sklearn": [21, 26], "model_selection": [21, 26], "stratifiedshufflesplit": [21, 26], "sss": 21, "n_splits": 21, "test_siz": 21, "random_stat": [21, 26], "train_idx": 21, "test_idx": 21, "bank_train": 21, "bank_test": 21, "loc": [21, 22], "y_train": [21, 23], "y_test": [21, 23, 26], "centran": 21, "proces": [21, 26], "cab": 21, "dispong": [21, 26], "produccion": [21, 24, 28], "alta": [21, 22], "correl": 21, "detriment": 21, "reduccion": 21, "codific": [21, 22], "priori": 21, "preprocess": 21, "bank_train_preprocess": 21, "tendran": 21, "num_cols": [21, 26], "to_list": 21, "cat_cols": [21, 22, 26], "nuniqu": [21, 22], "compos": [21, 26], "columntransform": [21, 26], "preprocessing": [21, 26], "standardscal": [21, 26], "onehotencod": [21, 26], "col_transform": 21, "fit": [21, 26], "transformers": 21, "process": 21, "one_hot_attr": 21, "transformers_": 21, "get_feature_names_out": 21, "df_process": 21, "bank_train_process": 21, "job_admin": 21, "job_blu": 21, "coll": [21, 22], "job_entrepreneur": 21, "job_housem": 21, "job_management": 21, "job_retir": 21, "month_oct": 21, "month_sep": 21, "day_of_week_fri": 21, "day_of_week_mon": 21, "day_of_week_thu": 21, "day_of_week_tu": 21, "day_of_week_w": 21, "poutcome_failur": 21, "poutcome_nonexistent": 21, "poutcome_success": 21, "863739": 21, "648967": 21, "322269": 21, "398990": 21, "289722": 21, "651268": 21, "103451": 21, "045048": 21, "420139": 21, "385843": 21, "721890": 21, "887717": 21, "332723": 21, "824956": 21, "058152": 21, "062987": 21, "252175": 21, "32945": 21, "154817": 21, "32946": 21, "152104": 21, "32947": 21, "344347": 21, "590675": 21, "473517": 21, "844915": 21, "32948": 21, "058695": 21, "32949": 21, "481965": 21, "535081": 21, "279055": 21, "32950": 21, "57": [21, 22], "tipolog": 21, "x_train": [21, 23], "metrics": [21, 26], "make_scor": 21, "precision_scor": 21, "recall_scor": 21, "balanced_accuracy_scor": 21, "scorers": 21, "balanced_accuracy": 21, "metric": [21, 26], "ensembl": [21, 26], "randomforestclassifi": 21, "cross_validat": 21, "rf_clf": 21, "criterion": 21, "entropy": 21, "rf_clf_scor": 21, "cv": [21, 26], "scoring": [21, 26], "fit_tim": 21, "48525953": 21, "17371225": 21, "45561767": 21, "score_tim": 21, "27095628": 21, "4005754": 21, "27123022": 21, "test_precision_scor": 21, "47959184": 21, "44352617": 21, "44786096": 21, "test_recall_scor": 21, "26575121": 21, "26030719": 21, "27081649": 21, "test_balanced_accuracy": 21, "6145604": 21, "60942715": 21, "61422007": 21, "feature_importances_": 21, "feature_selection": 21, "selectfrommodel": 21, "feature_selection_from_model": 21, "estimator": [21, 26], "x_df": 21, "improt": 21, "selector": 21, "estimator_": 21, "model_selection_featur": 21, "n_featur": 21, "importanc": 21, "barh": 21, "align": [21, 22, 24], "cent": [21, 22], "set_yticks": 21, "set_yticklabels": [21, 26], "rf_selected_featur": 21, "marital_marri": 21, "education_high": 21, "education_university": 21, "degre": [21, 22], "housing_n": 21, "housing_y": 21, "x_train_select": 21, "valid": [21, 23], "entorpec": 21, "linear_model": [21, 26], "logisticregression": 21, "tre": 21, "decisiontreeclassifi": 21, "neighbors": 21, "kneighborsclassifi": 21, "naive_bay": 21, "gaussiannb": 21, "gradientboostingclassifi": 21, "rmse": 21, "compare_models": 21, "models": 21, "seed": 21, "algoritm": [21, 23], "estadist": 21, "folds": [21, 26], "kfold": 21, "shuffl": 21, "cv_results": 21, "cross_val_scor": [21, 26], "bigot": 21, "boxplot": 21, "set_xticklabels": 21, "lr": 21, "solv": 21, "liblin": 21, "knn": 21, "cart": 21, "nb": 21, "rf": 21, "sharey": 21, "suptitl": [21, 22, 23], "6537112298575428": 21, "04505003208388039": 21, "5018652402303204": 21, "017209994309733422": 21, "3180014187727558": 21, "014477673941583336": 21, "29607913342044667": 21, "006642479028008792": 21, "6557179158970226": 21, "02554074375762445": 21, "4706481877959618": 21, "023514602653537234": 21, "7066021820666908": 21, "03573849702901917": 21, "49532590839127505": 21, "04187479920970608": 21, "3688983946420342": 21, "030458546012721608": 21, "4777581713827562": 21, "005469361156502378": 21, "6550707550732731": 21, "04180027581532745": 21, "4269423459620458": 21, "021015429977438067": 21, "recall": 21, "2181927445186544": 21, "00299329691407742": 21, "2569701580658597": 21, "011060885052020235": 21, "3175880615281605": 21, "010211354267065343": 21, "6394285864341301": 21, "09181451156932478": 21, "23316212233899022": 21, "010782454118125475": 21, "2832720540623217": 21, "016312265193180863": 21, "17434248939036084": 21, "00856237991888306": 21, "20916454680004642": 21, "014521324732371808": 21, "2801874703780247": 21, "012346156945975564": 21, "3311612535402707": 21, "01689304370542162": 21, "19166178422028926": 21, "01490506071856976": 21, "28177760801998747": 21, "006915906622225526": 21, "exactitud": 21, "6022452548722621": 21, "0037558003497701296": 21, "613613063836481": 21, "003682816043533694": 21, "6108162164514364": 21, "00966980158477819": 21, "7077842371100556": 21, "009353313726109064": 21, "6078863379057845": 21, "004313713893399986": 21, "6139460361771683": 21, "00537866142233999": 21, "5824039704510712": 21, "004556580545801131": 21, "5880966994693504": 21, "006482306581873072": 21, "6110935971110217": 21, "007027948334326948": 21, "6426314240409645": 21, "015560118763834835": 21, "5909814283906842": 21, "007376079306978728": 21, "6078209274807143": 21, "004496774742152602": 21, "lleg": [21, 22], "pregunt": 21, "maximiz": [21, 24, 26], "aport": 21, "tir": 21, "afloj": 21, "ambas": [21, 22, 26], "deteccion": 21, "potencial": [21, 22], "ofrec": 21, "banc": [21, 22], "contraposicion": 21, "dig": [21, 24], "detect": [21, 22, 28], "enfermed": 21, "peligr": 21, "atras": 21, "elij": 21, "escog": 21, "logist": 21, "tun": 21, "decision": [21, 22, 24, 28], "negoci": 21, "gridsearchcv": [21, 26], "lr_param_gr": 21, "penalty": 21, "l1": 21, "l2": 21, "tol": 21, "max_it": 21, "rnd_grid_search": 21, "return_train_scor": [21, 26], "param_gr": [21, 26], "0001": [21, 23], "cvres": [21, 26], "cv_results_": [21, 26], "mean_scor": [21, 26], "params": [21, 26], "mean_test_scor": [21, 26], "6580703259473997": 21, "6562492553776148": 21, "fit_intercept": 21, "intercept_scaling": 21, "7101945130327021": 21, "7109031075990554": 21, "7096805080481928": 21, "711212812857085": 21, "7098581755196406": 21, "7095464591885067": 21, "7100138221518663": 21, "clf": 21, "best_estimator_": [21, 26], "precision_recall_curv": 21, "plot_precision_recall_threshold": 21, "threshold": 21, "clf_probs": 21, "predict_prob": 21, "precisions": 21, "recalls": 21, "thresholds": 21, "umbral": 21, "threshold_index": 21, "valid_threshold": 21, "precision_threshold": 21, "recall_threshold": 21, "markersiz": 21, "set_xlim": 21, "712": [21, 28], "175": 21, "x_test": [21, 23, 26], "y_test_pr": 21, "predict": [21, 22, 26], "confusion_matrix": [21, 22], "7256": 21, "769": 21, "159": 21, "7464788732394366": 21, "1713362068965517": 21, "joblib": [21, 26], "dump": [21, 26], "model_path": 21, "transformer_path": 21, "feature_names_in_": 21, "et": 22, "2014": 22, "cortez": 22, "rit": 22, "driv": 22, "approach": 22, "success": [22, 24], "telemarketing": 22, "support": 22, "systems": 22, "elsevi": 22, "62": 22, "uc": 22, "irvin": 22, "repository": 22, "provin": 22, "telefon": 22, "marketing": 22, "portugues": 22, "set_option": 22, "display": 22, "max_columns": 22, "create_hist_plot": 22, "bins_total": 22, "bins_y": 22, "bins_n": 22, "create_bar_plot": 22, "drop_duplicat": 22, "dropn": [22, 25], "tick_params": 22, "labelrotation": 22, "describe_num_col": 22, "df_describ": 22, "create_corr_mat_plot": [22, 26], "corr_matrix": [22, 26], "heatmap": [22, 26], "annot": [22, 26], "linewidths": [22, 26], "fmt": [22, 26], "2f": [22, 26], "cramers_v": 22, "crosstab": 22, "chi2": 22, "chi2_contingency": 22, "phi2": 22, "phi2corr": 22, "rcorr": 22, "kcorr": 22, "56": [22, 26, 28], "housem": 22, "marri": 22, "4y": 22, "telephon": 22, "mon": 22, "261": 22, "nonexistent": 22, "93": 22, "994": 22, "857": 22, "5191": 22, "servic": 22, "high": 22, "149": 22, "admin": 22, "6y": 22, "151": 22, "307": 22, "41183": 22, "cellul": 22, "fri": 22, "334": 22, "94": 22, "767": 22, "028": [22, 28], "4963": 22, "41184": 22, "383": 22, "41185": 22, "189": 22, "41186": 22, "technici": 22, "442": 22, "41187": 22, "239": 22, "failur": 22, "41188": 22, "conte": 22, "infer": [22, 23], "cuantit": 22, "clar": 22, "calid": 22, "dise\u00f1": [22, 26], "36548": 22, "4640": 22, "11265417111780131": 22, "client_cols": 22, "client_num_cols": 22, "client_cat_cols": 22, "examin": 22, "supuest": 22, "n_rows": 22, "n_cols": 22, "minoritari": 22, "notori": 22, "porcentaj": 22, "segment": 22, "motiv": 22, "unknown_mask": 22, "isin": 22, "2403855491890842": 22, "jubil": 22, "torn": 22, "percentil": 22, "024060": 22, "421250": 22, "913147": 22, "837476": 22, "911185": 22, "898132": 22, "contact_cols": 22, "contact_cat_cols": 22, "contact_num_cols": 22, "mayoritari": 22, "movil": [22, 25], "juli": 22, "agost": 22, "juni": 22, "uniform": 22, "radical": 22, "diciembr": 22, "marz": 22, "abril": 22, "septiembr": 22, "decrec": 22, "epoc": [22, 23], "258": 22, "285010": 22, "259": [22, 26], "279249": 22, "102": 22, "180": 22, "319": 22, "4918": 22, "553": 22, "191164": 22, "401": 22, "171871": 22, "253": 22, "449": 22, "741": 22, "4199": 22, "220": 22, "844807": 22, "207": 22, "096293": 22, "163": 22, "279": 22, "prometedor": 22, "tare": [22, 26], "agrup": 22, "history_cols": 22, "894": 22, "479": 22, "962": 22, "475454": 22, "186": 22, "910907": 22, "792": 22, "035560": 22, "407181": 22, "984": 22, "113878": 22, "656868": 22, "963217": 22, "010658": 22, "010003": 22, "96": 22, "registr": [22, 28], "apreci": [22, 26], "967": 22, "548": 22, "actual": 22, "172963": 22, "494901": 22, "492672": 22, "860344": 22, "132374": 22, "409199": 22, "coherent": 22, "particip": [22, 24], "863431": 22, "089735": 22, "008473": 22, "006070": 22, "005341": 22, "000024": 22, "hipotesis": 22, "sim": 22, "cramer": 22, "320416": 22, "235922": 22, "328857": 22, "567593": 22, "770014": 22, "051724": 22, "666245": 22, "633085": 22, "873438": 22, "06571461554226031": 22, "economic_cols": 22, "316": 22, "histor": [22, 25], "ener": 22, "febrer": 22, "pearson": 22, "y_num": 22, "000866": 22, "004594": 22, "034369": 22, "024365": 22, "000371": 22, "000857": 22, "129372": 22, "010767": 22, "017725": 22, "030399": 22, "071699": 22, "047577": 22, "020640": 22, "027968": 22, "005312": 22, "008173": 22, "032897": 22, "044703": 22, "405274": 22, "052584": 22, "079141": 22, "150754": 22, "127836": 22, "013733": 22, "135133": 22, "144095": 22, "066357": 22, "587514": 22, "271004": 22, "078889": 22, "091342": 22, "296899": 22, "372605": 22, "324914": 22, "420489": 22, "203130": 22, "050936": 22, "454494": 22, "501333": 22, "230181": 22, "775334": 22, "196041": 22, "972245": 22, "906970": 22, "298334": 22, "058986": 22, "688230": 22, "522034": 22, "136211": 22, "277686": 22, "100513": 22, "054878": 22, "945154": 22, "307771": 22, "354678": 22, "009458": 22, "023188": 22, "053900": 22, "067220": 22, "099111": 22, "144611": 22, "151893": 22, "274000": 22, "plant": [23, 24], "cerr": 23, "h_": 23, "peque\u00f1": [23, 28], "cost": [23, 24], "cuadrat": [23, 26], "mse": 23, "algorim": 23, "inicializ": 23, "nabla_": 23, "nabl": 23, "aprendizaj": 23, "simplic": 23, "deriv": 23, "partial": 23, "theta_j": 23, "x_j": [23, 24], "qqu": 23, "1_1": 23, "1_n": 23, "2_1": 23, "2_n": 23, "m_1": [23, 24], "m_n": 23, "dencens": 23, "hiperparametr": 23, "n_it": 23, "regresionlinealdg": 23, "predic": 23, "x_on": 23, "a\u00f1ade_un": 23, "f_cost": 23, "calcula_gr": 23, "grad": [23, 26], "pinta_dat": 23, "pinta_datos2d": 23, "pinta_datos3d": 23, "convergent": 23, "x_min": 23, "x_max": 23, "x_sampl": 23, "y_sampl": 23, "x1_min": 23, "x1_max": 23, "x2_min": 23, "x2_max": 23, "x1_sampl": 23, "x2_sampl": 23, "meshgr": 23, "plot_surfac": 23, "x_2": [23, 24], "set_zlabel": 23, "pinta_cost": 23, "pinta_thet": 23, "colorb": [23, 26], "set_label": [23, 26], "proyeccion": 23, "3d": 23, "projection": 23, "get_titl": 23, "regresion_lineal_dg": 23, "rng_test": 23, "test_thet": 23, "decrecient": 23, "disminu": 23, "regresionlinealdg2": 23, "regresion_lineal_dg2": 23, "cuald": 23, "aletori": 23, "costes_val": 23, "regresionlinealdg3": 23, "x_val": 23, "y_val": 23, "separa_val": 23, "calcula_cost": 23, "val_rati": 23, "val_set_siz": 23, "permutation": [23, 26], "index_train": 23, "index_val": 23, "regresion_lineal_dg3": 23, "contribu": 23, "enfoqu": 23, "elig": 23, "azar": 23, "remplaz": 23, "siend": 23, "convencional": [23, 26], "n_epoc": 23, "quit": 23, "entrena_estocast": 23, "intermedi": 23, "tram": 23, "mini": 23, "batch": 23, "descent": 23, "salv": 23, "regresionlinealdgmb": 23, "fabric": 24, "man": [24, 28], "obra": 24, "vend": 24, "benefici": 24, "pong": 24, "unid": [24, 28], "unidad": 24, "monetari": 24, "destin": 24, "minimiz": [24, 25, 28], "igualdad": 24, "desigualdad": 24, "quad": 24, "3x_1": 24, "4x_2": 24, "2x_1": 24, "5x_2": 24, "4x_1": 24, "2x_2": 24, "geq": 24, "intercal": 24, "c_ix_i": 24, "factibl": 24, "sujet": 24, "restriccion": 24, "a_i": 24, "b_i": 24, "m_2": 24, "m_3": 24, "n_1": 24, "n_2": 24, "n_3": 24, "n_k": 24, "m_k": 24, "satisfac": 24, "condicin": 24, "region": 24, "infact": 24, "intu": 24, "patch": 24, "polygon": 24, "range1": 24, "range2": 24, "hlin": 24, "vlin": 24, "feasible_set": 24, "add_patch": 24, "875": 24, "orang": 24, "375": 24, "arrow": 24, "head_width": 24, "head_length": 24, "unific": 24, "metodolog": 24, "resolu": 24, "consegu": 24, "adit": 24, "desiguald": 24, "sustitu": 24, "a_ix_i": 24, "holgur": 24, "s_j": 24, "tranform": 24, "s_1": 24, "s_2": 24, "linprog": 24, "a_": 24, "ub": 24, "b_": 24, "eq": [24, 25], "utilizamor": 24, "a_ub": 24, "b_ub": 24, "probl": 24, "method": [24, 25], "simplex": 24, "messag": [24, 28], "optimization": 24, "terminat": 24, "nit": 24, "slack": 24, "negr": 24, "debaj": 24, "aun": 24, "resuelvel": 24, "a_eq": 24, "b_eq": 24, "resuelv": 24, "inversion": 24, "disposicion": 24, "rent": 24, "va": [24, 28], "pag": 24, "130": 24, "capital": 24, "prest": 24, "deud": 24, "bon": [24, 25], "corpor": 24, "yfinanc": 25, "financier": 25, "yaho": 25, "financ": 25, "accion": 25, "criptomoned": 25, "volatil": 25, "dividend": 25, "splits": 25, "looking": [25, 27, 28], "pypi": [25, 27, 28], "us": [25, 27, 28], "pkg": [25, 27, 28], "wheels": [25, 27, 28], "public": [25, 27, 28], "requirement": [25, 27, 28], "already": [25, 27, 28], "satisfi": [25, 27, 28], "lxml": 25, "frozendict": 25, "multitasking": 25, "beautifulsoup4": 25, "appdirs": 25, "cryptography": 25, "html5lib": 25, "pytz": 25, "2022": 25, "soupsiev": 25, "post1": 25, "cffi": 25, "webencodings": 25, "dateutil": 25, "charset": 25, "certifi": 25, "2017": 25, "idna": 25, "urllib3": 25, "pycpars": 25, "datetim": 25, "yf": 25, "whitegr": 25, "symbols": 25, "tsm": 25, "tsla": 25, "mtn": 25, "idxx": 25, "figs": 25, "start_dat": 25, "imports": [25, 26, 28], "compa\u00f1": 25, "tra": 25, "generate_stocks": 25, "stocks": 25, "downl": [25, 26], "progress": 25, "get_returns": 25, "returns": 25, "shift": 25, "generate_weights": 25, "w_norm": 25, "get_portfolio_return": 25, "get_risk": 25, "cov": 25, "cierr": 25, "impresion": 25, "progres": 25, "retorn": 25, "generate_weight": 25, "covari": 25, "omeg": 25, "ij": 25, "w_iw_j": 25, "sigma_": 25, "_subplots": 25, "axessubplot": 25, "0x7f519580f070": 25, "0x7f51952b7610": 25, "0x7f519523d760": 25, "0x7f51951f3910": 25, "0x7f519521fd30": 25, "0x7f51951d9160": 25, "0x7f5195185580": 25, "0x7f5195132a00": 25, "get_optimal_portfolio_weights": 25, "constraints": 25, "ineq": 25, "every": 25, "stock": 25, "can": 25, "weight": 25, "bounds": 25, "initializ": 25, "weights": 25, "beginning": 25, "objectiv": 25, "optimized_results": 25, "slsqp": 25, "generate_plot": 25, "w_opt": 25, "individual_returns": 25, "individual_risks": 25, "portfolio_returns": 25, "portfolio_risks": 25, "equally": 25, "distribut": 25, "w_eq": 25, "eq_portfolio_returns": 25, "eq_portfolio_risk": 25, "optimal": 25, "opt_portfolio_returns": 25, "opt_portfolio_risk": 25, "annotat": 25, "expect": 25, "risk": 25, "327376e": 25, "109383e": 25, "760101e": 25, "000000e": 25, "130515e": 25, "0x7f51951930d0": 25, "optimalportfoli": 25, "timedelt": 25, "end_dat": 25, "optimal_portfoli": 25, "nvda": 25, "amzn": 25, "jnj": 25, "0x7fae5b77a2b0": 25, "viviend": 26, "apoy": 26, "vean": 26, "persisit": 26, "version_inf": 26, "__version__": 26, "common": 26, "pretty": 26, "project_root_d": 26, "chapter_": 26, "end_to_end_project": 26, "images_path": 26, "save_fig": 26, "fig_": 26, "fig_extension": 26, "saving": 26, "dpi": 26, "descomprim": 26, "rut": 26, "isdir": 26, "leer": 26, "latitud": 26, "housing_median_ag": 26, "total_rooms": 26, "total_bedrooms": 26, "population": 26, "households": 26, "median_incom": 26, "median_house_valu": 26, "ocean_proximity": 26, "122": 26, "880": 26, "129": 26, "322": 26, "126": 26, "3252": 26, "452600": 26, "near": 26, "bay": 26, "86": 26, "7099": 26, "1106": 26, "2401": 26, "1138": 26, "3014": 26, "358500": 26, "85": 26, "1467": 26, "190": 26, "496": 26, "177": 26, "2574": 26, "352100": 26, "1274": 26, "235": 26, "558": 26, "219": 26, "6431": 26, "341300": 26, "1627": 26, "280": 26, "565": 26, "8462": 26, "342200": 26, "echem": 26, "vistaz": 26, "20640": 26, "20639": 26, "20433": 26, "predec": 26, "barri": 26, "1h": 26, "oce": 26, "7345": 26, "inland": 26, "5241": 26, "2118": 26, "1806": 26, "island": 26, "119": 26, "569704": 26, "631861": 26, "639486": 26, "2635": 26, "763081": 26, "537": 26, "870553": 26, "1425": 26, "476744": 26, "499": 26, "539680": 26, "870671": 26, "206855": 26, "816909": 26, "003532": 26, "135952": 26, "585558": 26, "2181": 26, "615252": 26, "421": 26, "385070": 26, "1132": 26, "462122": 26, "382": 26, "329753": 26, "899822": 26, "115395": 26, "615874": 26, "124": 26, "350000": 26, "540000": 26, "499900": 26, "14999": 26, "121": 26, "800000": 26, "930000": 26, "1447": 26, "296": 26, "787": 26, "563400": 26, "119600": 26, "118": 26, "490000": 26, "260000": 26, "2127": 26, "435": 26, "1166": 26, "409": 26, "534800": 26, "179700": 26, "010000": 26, "710000": 26, "3148": 26, "647": 26, "1725": 26, "605": 26, "743250": 26, "264725": 26, "114": 26, "310000": 26, "950000": 26, "39320": 26, "6445": 26, "35682": 26, "6082": 26, "000100": 26, "500001": 26, "razon": 26, "historgram": 26, "conclusion": 26, "sac": [26, 28], "particion": 26, "train_test_split": 26, "split_train_test": 26, "test_rati": 26, "shuffled_indic": 26, "test_set_siz": 26, "test_indic": 26, "train_indic": 26, "train_set": 26, "test_set": 26, "16512": 26, "4128": 26, "solvent": 26, "conclu": 26, "geograf": 26, "kind": 26, "transparent": 26, "zon": 26, "densid": 26, "veng": 26, "poblacion": 26, "distrit": 26, "cmap": 26, "get_cmap": 26, "jet": 26, "sharex": 26, "map": 26, "httpmessag": 26, "0x7f79825043d0": 26, "mpimg": 26, "california_img": 26, "extent": 26, "113": 26, "tick_valu": 26, "cbar": 26, "ticks": 26, "hous": 26, "california_housing_prices_plot": 26, "correlacion": 26, "689550": 26, "139098": 26, "096332": 26, "068899": 26, "054104": 26, "022032": 26, "041585": 26, "147904": 26, "scatter_matrix": 26, "plotting": 26, "attribut": 26, "zoom": 26, "550000": 26, "horizontal": 26, "350": 26, "450": 26, "tampoc": 26, "int64index": 26, "15048": 26, "16947": 26, "16356": 26, "aliment": 26, "rendimient": 26, "habit": 26, "cuart": 26, "rooms_per_household": 26, "bedrooms_per_room": 26, "population_per_household": 26, "156987": 26, "019747": 26, "252534": 26, "prepar": 26, "const": 26, "desacopl": 26, "housing_labels": 26, "exclud": 26, "lidi": 26, "defectu": 26, "imput": 26, "simpleimput": 26, "reliz": 26, "hot": 26, "encoding": 26, "numur": 26, "nuest": 26, "cat_encod": 26, "housing_cat_1hot": 26, "fit_transform": 26, "16512x5": 26, "stor": 26, "elements": 26, "compress": 26, "row": 26, "dispers": 26, "toarray": 26, "baseestimator": 26, "transformermixin": 26, "col_nam": 26, "rooms_ix": 26, "bedrooms_ix": 26, "population_ix": 26, "households_ix": 26, "get_loc": 26, "combinedattributesadd": 26, "c_": 26, "attr_add": 26, "housing_extra_attribs": 26, "116": 26, "3308": 26, "1201": 26, "414": 26, "3191": 26, "990338": 26, "900966": 26, "1845": 26, "516": 26, "1148": 26, "507": 26, "3538": 26, "293886": 26, "2643": 26, "14215": 26, "117": 26, "06": 26, "67": 26, "4047": 26, "754": 26, "2353": 26, "730": 26, "0505": 26, "543836": 26, "223288": 26, "12142": 26, "83": 26, "1424": 26, "251": 26, "681": 26, "192": 26, "0833": 26, "416667": 26, "546875": 26, "2740": 26, "115": 26, "78": 26, "1568": 26, "283": 26, "848": 26, "245": 26, "1597": 26, "461224": 26, "estrategi": 26, "minmaxscal": 26, "encaj": 26, "organiz": 26, "num_pipelin": 26, "strategy": 26, "attribs_add": 26, "std_scal": 26, "full_pipelin": 26, "housing_prepar": 26, "linearregression": 26, "lin_reg": 26, "procesmient": 26, "some_dat": 26, "some_labels": 26, "some_data_prepar": 26, "predictions": 26, "304799": 26, "63119659": 26, "352686": 26, "42138702": 26, "230949": 26, "80769489": 26, "136880": 26, "13091381": 26, "108599": 26, "29634079": 26, "labels": 26, "303400": 26, "333700": 26, "125000": 26, "76200": 26, "mean_squared_error": 26, "housing_predictions": 26, "lin_ms": 26, "lin_rms": 26, "68541": 26, "78429904411": 26, "206489": 26, "00569282947": 26, "cross": 26, "validation": 26, "display_scor": 26, "scor": 26, "lin_scor": 26, "neg_mean_squared_error": 26, "lin_rmse_scor": 26, "70985": 26, "81228196": 26, "71310": 26, "48962891": 26, "69496": 26, "58205441": 26, "70550": 26, "86214639": 26, "67014": 26, "31535795": 26, "69780": 26, "0679086": 26, "66411": 26, "42050625": 26, "66642": 26, "15439509": 26, "69372": 26, "52774294": 26, "67046": 26, "03355837": 26, "68861": 26, "0265580875": 26, "1803": 26, "0206490443086": 26, "performanc": 26, "forest": 26, "randomforestregressor": 26, "forest_reg": 26, "n_estimators": 26, "forest_scor": 26, "forest_rmse_scor": 26, "51474": 26, "38478632": 26, "48193": 26, "08020118": 26, "50812": 26, "42064106": 26, "49274": 26, "45101704": 26, "53064": 26, "12563367": 26, "49376": 26, "78995722": 26, "46606": 26, "48415971": 26, "47636": 26, "20326317": 26, "51744": 26, "70747484": 26, "49904": 26, "77308603": 26, "49808": 26, "74202202553": 26, "1902": 26, "4519943053801": 26, "arbol": 26, "bosqu": 26, "max_featur": 26, "usad": 26, "boostrap": 26, "descart": 26, "inten": 26, "bootstrap": 26, "grid_search": 26, "best": 26, "predictor": 26, "best_score_": 26, "best_params_": 26, "63209": 26, "57169007521": 26, "54629": 26, "41611107519": 26, "50761": 26, "76398069109": 26, "58426": 26, "43946436258": 26, "51625": 26, "15513929953": 26, "48725": 26, "76684682313": 26, "58251": 26, "40366599946": 26, "51116": 26, "34123484911": 26, "48378": 26, "04810100928": 26, "56861": 26, "04930211982": 26, "51418": 26, "50567419344": 26, "48666": 26, "54721730705": 26, "62599": 26, "75865660849": 26, "49925": 26, "75022638753": 26, "59686": 26, "79865147426": 26, "48282": 26, "39391442684": 26, "56823": 26, "71764893351": 26, "47852": 26, "58880126845": 26, "final_model": 26, "x_test_prepar": 26, "final_predictions": 26, "final_ms": 26, "final_rms": 26, "48246": 26, "96474133582": 26, "sobreentren": 26, "full_pipeline_with_predictor": 26, "preparation": 26, "disc": 26, "pkl": 26, "full_pipeline_with_predictor_copy": 26, "framework": [27, 28], "interact": [27, 28], "flask": [27, 28], "plotly": [27, 28], "js": [27, 28], "react": [27, 28], "dashboards": [27, 28], "interfac": [27, 28], "desliz": [27, 28], "8050": [27, 28], "32m9": [27, 28], "31m58": [27, 28], "25hcollecting": [27, 28], "dash_tabl": [27, 28], "components": [27, 28], "dash_html_components": [27, 28], "dash_core_components": [27, 28], "itsdangerous": [27, 28], "werkzeug": [27, 28], "jinja2": [27, 28], "click": [27, 28], "tenacity": [27, 28], "markupsaf": [27, 28], "installing": [27, 28], "dcc": [27, 28], "express": [27, 28], "px": [27, 28], "app": [27, 28], "apples": [27, 28], "cherri": [27, 28], "layout": [27, 28], "childr": [27, 28], "h1": [27, 28], "dashboard": [27, 28], "graph": [27, 28], "exampl": [27, 28], "run_serv": [27, 28], "running": [27, 28], "127": [27, 28], "serving": [27, 28], "lazy": [27, 28], "loading": [27, 28], "production": [27, 28], "warning": [27, 28], "deployment": [27, 28], "2m": [27, 28], "wsgi": [27, 28], "inste": [27, 28], "propiedad": [27, 28], "callback": [27, 28], "output": [27, 28], "h6": [27, 28], "chang": [27, 28], "see": [27, 28], "callbacks": [27, 28], "action": [27, 28], "br": [27, 28], "component_": [27, 28], "component_property": [27, 28], "update_output_div": [27, 28], "input_valu": [27, 28], "recopilatori": 28, "estandariz": 28, "amplic": 28, "expong": 28, "pipenv": 28, "lenguanj": 28, "go": 28, "rust": 28, "nativ": 28, "curl": 28, "ssl": 28, "py4d": 28, "carpet": 28, "readm": 28, "md": 28, "pyproject": 28, "toml": 28, "toc": 28, "tests": 28, "unitari": 28, "ficher": 28, "virtual": 28, "mac": 28, "library": 28, "pypoetry": 28, "users": 28, "usernam": 28, "appdat": 28, "unix": 28, "virtualenvs": 28, "tool": 28, "dependenci": 28, "cli": 28, "expecif": 28, "ric": 28, "replic": 28, "deseabl": 28, "testing": 28, "adicional": 28, "minimal": 28, "pytest": 28, "mock": 28, "optional": 28, "qur": 28, "script": 28, "run": 28, "your_script": 28, "Del": 28, "build": 28, "publish": 28, "lint": 28, "herrone": 28, "inadecu": 28, "pycodestyl": 28, "pep8": 28, "fichero_que_queremos_format": 28, "linters": 28, "formatt": 28, "ventaj": 28, "Son": 28, "git": 28, "pre": 28, "commit": 28, "logging": 28, "depur": 28, "audit": 28, "stdout": 28, "sofistic": 28, "des": 28, "consol": 28, "logg": 28, "getlogg": 28, "setlevel": 28, "console_handl": 28, "streamhandl": 28, "asctim": 28, "levelnam": 28, "setformatt": 28, "addhandl": 28, "critical": 28, "720": 28, "723": 28, "726": 28, "permanec": 28, "034": 28, "040": 28, "consolt": 28, "handl": 28, "file_handl": 28, "filehandl": 28, "629": 28, "635": 28, "638": 28, "automatiz": 28, "porcion": 28, "tempran": 28, "unittest": 28, "compon": 28, "area_circl": 28, "radius": 28, "testareacircl": 28, "testc": 28, "test_are": 28, "assertisinstanc": 28, "assertalmostequal": 28, "setup": 28, "area_on": 28}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"contribu": [0, 1], "curs": 1, "python": [1, 6, 8, 12, 28], "us": 1, "introduccion": [1, 6, 8, 14, 18], "numpy": [1, 16, 18], "matplotlib": [1, 14], "pand": [1, 20], "cas": 1, "practic": 1, "gestion": [1, 28], "proyect": [1, 28], "bilbiograf": 1, "cuad": 1, "trabaj": [1, 11], "ejercici": [1, 6, 16], "Se": 1, "agradec": 1, "discord": 1, "referent": 1, "bibliograf": 2, "boolean": [3, 15, 17], "oper": [3, 10, 15, 17, 18, 20], "logic": 3, "Los": 3, "enter": [3, 10], "El": [3, 5], "tip": [3, 7, 10, 18], "non": [3, 6], "clas": [4, 25], "metod": [4, 15], "especial": 4, "subcl": 4, "herenci": 4, "atribut": 4, "estructur": [5, 11], "control": 5, "bloqu": 5, "condicional": [5, 15], "declar": 5, "if": 5, "else": 5, "line": 5, "bucl": 5, "for": 5, "whil": 5, "break": 5, "continu": 5, "modul": 5, "itertools": 5, "rang": 5, "enumerat": 5, "zip": 5, "product": [5, 15], "label": 6, "return": 6, "funcion": [7, 13, 15, 20], "solution": [7, 15, 16, 24, 26], "to": [7, 15, 16, 24, 26], "exercis": [7, 15, 16, 24, 26], "32": 7, "argument": 7, "defect": 7, "variacional": 7, "nombr": 7, "posicional": 7, "33": 7, "document": 7, "indic": [7, 11], "llam": 7, "alcanc": 7, "lambd": 7, "map": 7, "filt": 7, "reduc": 7, "37": 7, "descarg": [8, 26], "dond": 8, "ejecut": 8, "notebooks": 8, "jupyt": 8, "colab": 8, "mas": 8, "sobr": [8, 15], "list": 9, "Las": 9, "iter": 9, "secuenci": [9, 11], "mutabl": 9, "numer": [10, 11, 22], "flotant": 10, "asign": 10, "aument": 10, "Otros": 10, "Otras": 11, "dat": [11, 18, 22, 26], "tupl": 11, "comprob": 11, "pertenent": 11, "obten": 11, "primer": 11, "instanci": 11, "objet": [11, 14, 22], "cont": 11, "ocurrent": 11, "index": [11, 17, 20], "slicing": [11, 17], "diccionari": 11, "conjunt": [11, 26], "gener": [11, 26], "compar": 11, "complej": 11, "computacional": 11, "borr": 11, "element": 11, "principi": 12, "basic": [12, 15, 17, 20], "variabl": [12, 21, 22, 26], "expresion": [12, 15], "comentari": 12, "strings": 13, "par": [13, 15, 24], "manipul": 13, "caden": 13, "f": 13, "dos": 14, "interfac": 14, "posibl": 14, "estil": 14, "matlab": 14, "bas": 14, "grafic": 14, "simpl": 14, "plot": 14, "nub": 14, "punt": 14, "parametr": 14, "global": 14, "trasposicion": 15, "arrays": [15, 16, 18], "matricial": 15, "universal": 15, "component": [15, 18], "vectoriz": [15, 20], "wher": 15, "53": 15, "estadist": [15, 20], "entrad": [15, 20], "sal": 15, "ficher": 15, "convolu": 16, "54": 16, "proces": 16, "imagen": 16, "55": 16, "56": 16, "regresion": [16, 23, 26], "lineal": [16, 23, 24, 26], "57": 16, "usand": [17, 28], "slic": 17, "Por": 18, "homogen": 18, "creacion": 18, "array": 18, "dtype": 18, "aritmet": [18, 20], "agreg": 19, "merge": 19, "datafram": [19, 20], "seri": 20, "resum": 20, "algun": 20, "maner": 20, "cre": [20, 26, 28], "funcional": 20, "elimin": 20, "eje": 20, "seleccion": [20, 21], "filtr": 20, "loc": 20, "iloc": 20, "valor": 20, "rellen": 20, "aplic": 20, "orden": 20, "descript": 20, "prob": 21, "model": [21, 26], "clasif": 21, "binari": 21, "train": 21, "test": [21, 26], "preproces": 21, "random": 21, "forest": 21, "randomforest": 21, "eleccion": 21, "tune": 21, "hiperparametr": [21, 26], "curv": 21, "precision": 21, "sensibil": 21, "guard": 21, "transform": [21, 26], "ejempl": 22, "analisis": 22, "exploratori": 22, "carg": 22, "client": 22, "age": 22, "job": 22, "marital": 22, "education": 22, "default": 22, "housing": 22, "loan": 22, "relacion": 22, "contact": 22, "month": 22, "day_of_week": 22, "duration": 22, "historial": 22, "campaign": 22, "pdays": 22, "previous": 22, "poutcom": 22, "socioeconom": 22, "emp": 22, "var": 22, "rat": 22, "cons": 22, "pric": 22, "idx": 22, "conf": 22, "euribor3m": 22, "nr": 22, "employ": 22, "correl": [22, 26], "Entre": 22, "categor": [22, 26], "descens": 23, "gradient": 23, "estocast": 23, "program": 24, "La": 24, "form": 24, "estand": 24, "utiliz": 24, "scipy": 24, "resolv": 24, "problem": 24, "69": 24, "optimiz": 25, "portfoli": 25, "busc": [25, 26], "vector": 25, "pes": 25, "optim": 25, "minimic": 25, "riesg": 25, "visualiz": [25, 26], "encapsul": 25, "tod": 25, "sol": 25, "constru": 26, "profundiz": 26, "nuev": [26, 28], "75": 26, "limpiez": 26, "ingeni": 26, "escal": 26, "defin": 26, "pipelin": 26, "entren": 26, "evalu": 26, "mejor": 26, "tun": 26, "dash": [27, 28], "paquet": 28, "poetry": 28, "instal": 28, "manej": 28, "dependent": 28, "limpi": 28, "codig": 28, "flake8": 28, "black": 28, "logs": 28}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file