Skip to content

Commit 6c1d0cb

Browse files
committed
Corregidos varios errores aportados por los estudiantes
Temas 1.1 y 2.1
1 parent cc55c87 commit 6c1d0cb

9 files changed

Lines changed: 254 additions & 224 deletions

.DS_Store

8 KB
Binary file not shown.

datasets/.DS_Store

6 KB
Binary file not shown.

datasets/belgian/.DS_Store

6 KB
Binary file not shown.

datasets/belgian/Testing/.DS_Store

10 KB
Binary file not shown.
12 KB
Binary file not shown.

notebooks/.DS_Store

6 KB
Binary file not shown.

notebooks/T1 - 1 - Data Cleaning - Carga de datos.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1182,8 +1182,8 @@
11821182
" http = urllib3.PoolManager()\n",
11831183
" r = http.request('GET', url)\n",
11841184
" print(\"El estado de la respuesta es %d\" %(r.status))\n",
1185-
" response = r.data.decode('utf-8')\n",
1186-
"\n",
1185+
" response = r.data ## CORREGIDO: eliminado un doble decode que daba error\n",
1186+
" \n",
11871187
" #El objeto reponse contiene un string binario, así que lo convertimos a un string descodificándolo en UTF-8\n",
11881188
" str_data = response.decode(encoding)\n",
11891189
"\n",
@@ -1459,7 +1459,7 @@
14591459
"name": "python",
14601460
"nbconvert_exporter": "python",
14611461
"pygments_lexer": "ipython3",
1462-
"version": "3.6.4"
1462+
"version": "3.5.5"
14631463
}
14641464
},
14651465
"nbformat": 4,

notebooks/T11 - 2 - Señales de tráfico.ipynb

Lines changed: 249 additions & 219 deletions
Large diffs are not rendered by default.

notebooks/T2 - 1 - Data Cleaning - Data Wrangling.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2646,7 +2646,7 @@
26462646
}
26472647
],
26482648
"source": [
2649-
"data[:8] # es lo mismo que data[1:8]"
2649+
"data[:8] # CORRECCIÓN: es lo mismo que data[0:8]"
26502650
]
26512651
},
26522652
{
@@ -5031,7 +5031,7 @@
50315031
"name": "python",
50325032
"nbconvert_exporter": "python",
50335033
"pygments_lexer": "ipython3",
5034-
"version": "3.6.4"
5034+
"version": "3.5.5"
50355035
}
50365036
},
50375037
"nbformat": 4,

0 commit comments

Comments
 (0)