{"cells":[{"cell_type":"markdown","source":"# Ejemplo en Vivo parte 1 ","metadata":{"id":"ONe7oRGQRrsL","cell_id":"678a891ae05a4a4e987bfcdee8514c7b","deepnote_cell_type":"markdown"}},{"cell_type":"code","source":"import pandas as pd","metadata":{"id":"QYue7vb0OKJm","cell_id":"b7e24b01b00e4ec5a01fcd0fd12a4d64","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":5,"user_tz":300,"timestamp":1646484950497},"deepnote_cell_type":"code"},"outputs":[],"execution_count":1},{"cell_type":"code","source":"df1 = pd.DataFrame({'key': ['b', 'b', 'a', 'c', 'a', 'a', 'b'],\n 'first': range(7)})","metadata":{"id":"OKiqi0jbOKJq","cell_id":"77db5ee98f7748af820fa346d16eb54b","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":264,"user_tz":300,"timestamp":1646484966875},"deepnote_cell_type":"code"},"outputs":[],"execution_count":2},{"cell_type":"code","source":"df2 = pd.DataFrame({'key': ['a', 'b', 'd'], 'second': range(3)})","metadata":{"id":"HkWvMJUlOKJr","cell_id":"3f022228aa8c4e1c95ff7f0437190e50","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":8,"user_tz":300,"timestamp":1646484968669},"deepnote_cell_type":"code"},"outputs":[],"execution_count":3},{"cell_type":"code","source":"df1","metadata":{"id":"XiwSLj_AOKJs","colab":{"height":269,"base_uri":"https://localhost:8080/"},"cell_id":"27eb41f06f724c428141aac87a1a8a2e","outputId":"c4d708bf-e3ae-48c3-8885-5a97951a7ac5","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":812,"user_tz":300,"timestamp":1646484971170},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
keyfirst
0b0
1b1
2a2
3c3
4a4
5a5
6b6
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key first\n0 b 0\n1 b 1\n2 a 2\n3 c 3\n4 a 4\n5 a 5\n6 b 6"},"metadata":{},"execution_count":4}],"execution_count":4},{"cell_type":"code","source":"df2","metadata":{"id":"oSGPsFPuOKJt","colab":{"height":144,"base_uri":"https://localhost:8080/"},"cell_id":"8d6f464104694336beff8d7cc20b5b87","outputId":"8b71864e-84bd-42f4-cce6-65f6a58fa43f","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":15,"user_tz":300,"timestamp":1646484973288},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
keysecond
0a0
1b1
2d2
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key second\n0 a 0\n1 b 1\n2 d 2"},"metadata":{},"execution_count":5}],"execution_count":5},{"cell_type":"code","source":"pd.merge(left=df1,right=df2, on ='key',how='left')","metadata":{"id":"0uV1nuhxOKJu","colab":{"height":269,"base_uri":"https://localhost:8080/"},"cell_id":"74f6bca490314844bce27f47e1354d7a","outputId":"5948f69e-c451-4dec-933e-b3d54754cec1","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":422,"user_tz":300,"timestamp":1646484975844},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
keyfirstsecond
0b01.0
1b11.0
2a20.0
3c3NaN
4a40.0
5a50.0
6b61.0
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key first second\n0 b 0 1.0\n1 b 1 1.0\n2 a 2 0.0\n3 c 3 NaN\n4 a 4 0.0\n5 a 5 0.0\n6 b 6 1.0"},"metadata":{},"execution_count":6}],"execution_count":6},{"cell_type":"code","source":"pd.merge(df1,df2, on ='key',how= 'inner')","metadata":{"id":"PWS7ZRazOKJu","colab":{"height":238,"base_uri":"https://localhost:8080/"},"cell_id":"f885e43497e24b309c3b5cd9b7968257","outputId":"62f5501c-6fab-4ecb-914e-1415836052a4","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":14,"user_tz":300,"timestamp":1646484978582},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
keyfirstsecond
0b01
1b11
2b61
3a20
4a40
5a50
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key first second\n0 b 0 1\n1 b 1 1\n2 b 6 1\n3 a 2 0\n4 a 4 0\n5 a 5 0"},"metadata":{},"execution_count":7}],"execution_count":7},{"cell_type":"code","source":"pd.merge(df1,df2, on ='key',how= 'outer')","metadata":{"id":"EAFBgCy8OKJv","colab":{"height":301,"base_uri":"https://localhost:8080/"},"cell_id":"314da2c598a1463ebd4fea22bcc6a011","outputId":"31437a08-a63a-4de6-af0c-03e0d51adf87","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":388,"user_tz":300,"timestamp":1646484981778},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
keyfirstsecond
0b0.01.0
1b1.01.0
2b6.01.0
3a2.00.0
4a4.00.0
5a5.00.0
6c3.0NaN
7dNaN2.0
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key first second\n0 b 0.0 1.0\n1 b 1.0 1.0\n2 b 6.0 1.0\n3 a 2.0 0.0\n4 a 4.0 0.0\n5 a 5.0 0.0\n6 c 3.0 NaN\n7 d NaN 2.0"},"metadata":{},"execution_count":8}],"execution_count":8},{"cell_type":"code","source":"pd.merge(df1,df2, on ='key',how= 'left')","metadata":{"id":"40nqQlp9OKJv","colab":{"height":269,"base_uri":"https://localhost:8080/"},"cell_id":"ffb6fc2b95924accbd40eb4925754b5a","outputId":"0f58fcee-968c-47e1-fede-a0b9e0ec93a4","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":521,"user_tz":300,"timestamp":1646484983831},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
keyfirstsecond
0b01.0
1b11.0
2a20.0
3c3NaN
4a40.0
5a50.0
6b61.0
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key first second\n0 b 0 1.0\n1 b 1 1.0\n2 a 2 0.0\n3 c 3 NaN\n4 a 4 0.0\n5 a 5 0.0\n6 b 6 1.0"},"metadata":{},"execution_count":9}],"execution_count":9},{"cell_type":"code","source":"pd.merge(df1,df2, on ='key',how= 'right')","metadata":{"id":"LlLqh7T-OKJw","colab":{"height":269,"base_uri":"https://localhost:8080/"},"cell_id":"73b04bc90f364b399a7eb98e9ee7c021","outputId":"22387866-84c9-48de-aa41-90f5d9b8b135","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":300,"user_tz":300,"timestamp":1646484985776},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
keyfirstsecond
0a2.00
1a4.00
2a5.00
3b0.01
4b1.01
5b6.01
6dNaN2
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key first second\n0 a 2.0 0\n1 a 4.0 0\n2 a 5.0 0\n3 b 0.0 1\n4 b 1.0 1\n5 b 6.0 1\n6 d NaN 2"},"metadata":{},"execution_count":10}],"execution_count":10},{"cell_type":"markdown","source":"# Ejemplo en vivo Parte 2","metadata":{"id":"uBnZlwdtR4mJ","cell_id":"7e61d5047abe4d47ad70a05994a2664b","deepnote_cell_type":"markdown"}},{"cell_type":"code","source":"from google.colab import drive\nimport os\ndrive.mount('/content/gdrive')\n# Establecer ruta de acceso en drive\nimport os\nprint(os.getcwd())\n#os.chdir(\"/content/gdrive/My Drive\")","metadata":{"id":"x7Lg6lO2R5kA","colab":{"base_uri":"https://localhost:8080/"},"cell_id":"13d318328f0f4e0f94e309223d2c8406","outputId":"bf60acd5-f769-4430-d2b0-45039c46b484","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":4191,"user_tz":300,"timestamp":1646486315701},"deepnote_cell_type":"code"},"outputs":[{"output_type":"stream","name":"stdout","text":"Drive already mounted at /content/gdrive; to attempt to forcibly remount, call drive.mount(\"/content/gdrive\", force_remount=True).\n/content/gdrive/My Drive/Casos de Estudio Coderhouse\n"}],"execution_count":24},{"cell_type":"code","source":"%cd '/content/gdrive/MyDrive/Casos de Estudio Coderhouse'","metadata":{"id":"vHVtySa8R_DQ","colab":{"base_uri":"https://localhost:8080/"},"cell_id":"432f2ee7ddfa4d58b10cda8cb7a48e23","outputId":"96521bae-e1c4-4700-bc1b-9a2805562400","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":16,"user_tz":300,"timestamp":1646485460195},"deepnote_cell_type":"code"},"outputs":[{"output_type":"stream","name":"stdout","text":"/content/gdrive/MyDrive/Casos de Estudio Coderhouse\n"}],"execution_count":12},{"cell_type":"code","source":"clase0=pd.read_excel('clase0.xlsx')\nclase0","metadata":{"id":"KGqSf6RER6M3","colab":{"height":269,"base_uri":"https://localhost:8080/"},"cell_id":"e667a7c686b84d10b716e65ad9d9405e","outputId":"c90ff0a3-50bd-4132-bb05-116f552925aa","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":1155,"user_tz":300,"timestamp":1646485509325},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2data
0Buenos Aires20200
1Buenos Aires20211
2Buenos Aires20222
3Cordoba20213
4Cordoba20224
5Santa Fe20205
6Santa Fe20206
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data\n0 Buenos Aires 2020 0\n1 Buenos Aires 2021 1\n2 Buenos Aires 2022 2\n3 Cordoba 2021 3\n4 Cordoba 2022 4\n5 Santa Fe 2020 5\n6 Santa Fe 2020 6"},"metadata":{},"execution_count":13}],"execution_count":13},{"cell_type":"code","source":"clase1=pd.read_excel('clase1.xlsx')\nclase1","metadata":{"id":"L48zF8iFS1oU","colab":{"height":301,"base_uri":"https://localhost:8080/"},"cell_id":"e1516779b7c841589d6b779ba6bbac9f","outputId":"987fa94f-da56-41d9-a120-0e3d834ddc3c","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":779,"user_tz":300,"timestamp":1646485512204},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2event1event2
0Cordoba202101
1Cordoba202023
2Buenos Aires202045
3Buenos Aires202067
4Buenos Aires202189
5Buenos Aires20221011
6Santa Fe20201213
7Santa Fe20191415
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 event1 event2\n0 Cordoba 2021 0 1\n1 Cordoba 2020 2 3\n2 Buenos Aires 2020 4 5\n3 Buenos Aires 2020 6 7\n4 Buenos Aires 2021 8 9\n5 Buenos Aires 2022 10 11\n6 Santa Fe 2020 12 13\n7 Santa Fe 2019 14 15"},"metadata":{},"execution_count":14}],"execution_count":14},{"cell_type":"code","source":"clase1.groupby(by=['key1','key2']).mean()","metadata":{"id":"hdsWFisPGjcG","colab":{"height":301,"base_uri":"https://localhost:8080/"},"cell_id":"898b2fadc1744b618daea752246cae2d","outputId":"c4acc90a-211f-4634-b1c8-7307e110f8d4","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":259,"user_tz":300,"timestamp":1646485514046},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
event1event2
key1key2
Buenos Aires20205.06.0
20218.09.0
202210.011.0
Cordoba20202.03.0
20210.01.0
Santa Fe201914.015.0
202012.013.0
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" event1 event2\nkey1 key2 \nBuenos Aires 2020 5.0 6.0\n 2021 8.0 9.0\n 2022 10.0 11.0\nCordoba 2020 2.0 3.0\n 2021 0.0 1.0\nSanta Fe 2019 14.0 15.0\n 2020 12.0 13.0"},"metadata":{},"execution_count":15}],"execution_count":15},{"cell_type":"code","source":"pd.merge(clase0,clase1, on =['key1','key2'])","metadata":{"id":"-tArjxOHS71z","colab":{"height":269,"base_uri":"https://localhost:8080/"},"cell_id":"8abdf4cd40f647cba45ee3d4dcd48a91","outputId":"0027a263-88a5-471c-a911-0380c0a5c1dd","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":12,"user_tz":300,"timestamp":1646485516581},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2dataevent1event2
0Buenos Aires2020045
1Buenos Aires2020067
2Buenos Aires2021189
3Buenos Aires202221011
4Cordoba2021301
5Santa Fe202051213
6Santa Fe202061213
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data event1 event2\n0 Buenos Aires 2020 0 4 5\n1 Buenos Aires 2020 0 6 7\n2 Buenos Aires 2021 1 8 9\n3 Buenos Aires 2022 2 10 11\n4 Cordoba 2021 3 0 1\n5 Santa Fe 2020 5 12 13\n6 Santa Fe 2020 6 12 13"},"metadata":{},"execution_count":16}],"execution_count":16},{"cell_type":"code","source":"pd.merge(clase0,clase1, on =['key1','key2'],how= 'inner')","metadata":{"id":"HTO8EcQaTAcJ","colab":{"height":269,"base_uri":"https://localhost:8080/"},"cell_id":"f01b5cecfac643229f69441c0e735193","outputId":"04017096-0b39-4a21-f8cb-800db50df7e4","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":342,"user_tz":300,"timestamp":1646485519286},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2dataevent1event2
0Buenos Aires2020045
1Buenos Aires2020067
2Buenos Aires2021189
3Buenos Aires202221011
4Cordoba2021301
5Santa Fe202051213
6Santa Fe202061213
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data event1 event2\n0 Buenos Aires 2020 0 4 5\n1 Buenos Aires 2020 0 6 7\n2 Buenos Aires 2021 1 8 9\n3 Buenos Aires 2022 2 10 11\n4 Cordoba 2021 3 0 1\n5 Santa Fe 2020 5 12 13\n6 Santa Fe 2020 6 12 13"},"metadata":{},"execution_count":17}],"execution_count":17},{"cell_type":"code","source":"pd.merge(clase0,clase1, on =['key1','key2'],how= 'outer')","metadata":{"id":"M55a9e6OTIPB","colab":{"height":363,"base_uri":"https://localhost:8080/"},"cell_id":"703f1c557fc24448bf2f5644939829ae","outputId":"151c01af-3673-42ee-f689-6cb0e17dc71e","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":254,"user_tz":300,"timestamp":1646485520858},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2dataevent1event2
0Buenos Aires20200.04.05.0
1Buenos Aires20200.06.07.0
2Buenos Aires20211.08.09.0
3Buenos Aires20222.010.011.0
4Cordoba20213.00.01.0
5Cordoba20224.0NaNNaN
6Santa Fe20205.012.013.0
7Santa Fe20206.012.013.0
8Cordoba2020NaN2.03.0
9Santa Fe2019NaN14.015.0
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data event1 event2\n0 Buenos Aires 2020 0.0 4.0 5.0\n1 Buenos Aires 2020 0.0 6.0 7.0\n2 Buenos Aires 2021 1.0 8.0 9.0\n3 Buenos Aires 2022 2.0 10.0 11.0\n4 Cordoba 2021 3.0 0.0 1.0\n5 Cordoba 2022 4.0 NaN NaN\n6 Santa Fe 2020 5.0 12.0 13.0\n7 Santa Fe 2020 6.0 12.0 13.0\n8 Cordoba 2020 NaN 2.0 3.0\n9 Santa Fe 2019 NaN 14.0 15.0"},"metadata":{},"execution_count":18}],"execution_count":18},{"cell_type":"code","source":"pd.merge(clase0,clase1, on =['key1','key2'],how= 'left')","metadata":{"id":"Px2pSZznTJzC","colab":{"height":301,"base_uri":"https://localhost:8080/"},"cell_id":"17cd38f0498d4909893ca1306707c0ab","outputId":"177fcd54-6e8a-4091-e710-cb711ea5866e","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":358,"user_tz":300,"timestamp":1646485523234},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2dataevent1event2
0Buenos Aires202004.05.0
1Buenos Aires202006.07.0
2Buenos Aires202118.09.0
3Buenos Aires2022210.011.0
4Cordoba202130.01.0
5Cordoba20224NaNNaN
6Santa Fe2020512.013.0
7Santa Fe2020612.013.0
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data event1 event2\n0 Buenos Aires 2020 0 4.0 5.0\n1 Buenos Aires 2020 0 6.0 7.0\n2 Buenos Aires 2021 1 8.0 9.0\n3 Buenos Aires 2022 2 10.0 11.0\n4 Cordoba 2021 3 0.0 1.0\n5 Cordoba 2022 4 NaN NaN\n6 Santa Fe 2020 5 12.0 13.0\n7 Santa Fe 2020 6 12.0 13.0"},"metadata":{},"execution_count":19}],"execution_count":19},{"cell_type":"code","source":"pd.merge(clase0,clase1, on =['key1','key2'],how= 'right')","metadata":{"id":"8-0sRinXTLzf","colab":{"height":332,"base_uri":"https://localhost:8080/"},"cell_id":"b43d89dfc3ab4a71be710f39034bd42b","outputId":"f329bcc3-5964-42e8-b179-8ae0038d10c7","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":16,"user_tz":300,"timestamp":1646485526079},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2dataevent1event2
0Cordoba20213.001
1Cordoba2020NaN23
2Buenos Aires20200.045
3Buenos Aires20200.067
4Buenos Aires20211.089
5Buenos Aires20222.01011
6Santa Fe20205.01213
7Santa Fe20206.01213
8Santa Fe2019NaN1415
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data event1 event2\n0 Cordoba 2021 3.0 0 1\n1 Cordoba 2020 NaN 2 3\n2 Buenos Aires 2020 0.0 4 5\n3 Buenos Aires 2020 0.0 6 7\n4 Buenos Aires 2021 1.0 8 9\n5 Buenos Aires 2022 2.0 10 11\n6 Santa Fe 2020 5.0 12 13\n7 Santa Fe 2020 6.0 12 13\n8 Santa Fe 2019 NaN 14 15"},"metadata":{},"execution_count":20}],"execution_count":20},{"cell_type":"code","source":"c1=pd.merge(clase0,clase1, on =['key1','key2'],how= 'right')\nc2=pd.merge(clase0,clase1, on =['key1','key2'],how= 'left')\nc3=pd.merge(clase0,clase1, on =['key1','key2'],how= 'outer')\nc4=pd.merge(clase0,clase1, on =['key1','key2'],how= 'inner')\npd.concat([c1,c2,c3,c4],axis=0)","metadata":{"id":"9MOnAWS-TSwr","colab":{"height":1000,"base_uri":"https://localhost:8080/"},"cell_id":"dc955e38861a4d7e9aac232a84ba5f7a","outputId":"ac3c1581-bd77-469b-ef81-82c739b92f91","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":308,"user_tz":300,"timestamp":1646485528350},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2dataevent1event2
0Cordoba20213.00.01.0
1Cordoba2020NaN2.03.0
2Buenos Aires20200.04.05.0
3Buenos Aires20200.06.07.0
4Buenos Aires20211.08.09.0
5Buenos Aires20222.010.011.0
6Santa Fe20205.012.013.0
7Santa Fe20206.012.013.0
8Santa Fe2019NaN14.015.0
0Buenos Aires20200.04.05.0
1Buenos Aires20200.06.07.0
2Buenos Aires20211.08.09.0
3Buenos Aires20222.010.011.0
4Cordoba20213.00.01.0
5Cordoba20224.0NaNNaN
6Santa Fe20205.012.013.0
7Santa Fe20206.012.013.0
0Buenos Aires20200.04.05.0
1Buenos Aires20200.06.07.0
2Buenos Aires20211.08.09.0
3Buenos Aires20222.010.011.0
4Cordoba20213.00.01.0
5Cordoba20224.0NaNNaN
6Santa Fe20205.012.013.0
7Santa Fe20206.012.013.0
8Cordoba2020NaN2.03.0
9Santa Fe2019NaN14.015.0
0Buenos Aires20200.04.05.0
1Buenos Aires20200.06.07.0
2Buenos Aires20211.08.09.0
3Buenos Aires20222.010.011.0
4Cordoba20213.00.01.0
5Santa Fe20205.012.013.0
6Santa Fe20206.012.013.0
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data event1 event2\n0 Cordoba 2021 3.0 0.0 1.0\n1 Cordoba 2020 NaN 2.0 3.0\n2 Buenos Aires 2020 0.0 4.0 5.0\n3 Buenos Aires 2020 0.0 6.0 7.0\n4 Buenos Aires 2021 1.0 8.0 9.0\n5 Buenos Aires 2022 2.0 10.0 11.0\n6 Santa Fe 2020 5.0 12.0 13.0\n7 Santa Fe 2020 6.0 12.0 13.0\n8 Santa Fe 2019 NaN 14.0 15.0\n0 Buenos Aires 2020 0.0 4.0 5.0\n1 Buenos Aires 2020 0.0 6.0 7.0\n2 Buenos Aires 2021 1.0 8.0 9.0\n3 Buenos Aires 2022 2.0 10.0 11.0\n4 Cordoba 2021 3.0 0.0 1.0\n5 Cordoba 2022 4.0 NaN NaN\n6 Santa Fe 2020 5.0 12.0 13.0\n7 Santa Fe 2020 6.0 12.0 13.0\n0 Buenos Aires 2020 0.0 4.0 5.0\n1 Buenos Aires 2020 0.0 6.0 7.0\n2 Buenos Aires 2021 1.0 8.0 9.0\n3 Buenos Aires 2022 2.0 10.0 11.0\n4 Cordoba 2021 3.0 0.0 1.0\n5 Cordoba 2022 4.0 NaN NaN\n6 Santa Fe 2020 5.0 12.0 13.0\n7 Santa Fe 2020 6.0 12.0 13.0\n8 Cordoba 2020 NaN 2.0 3.0\n9 Santa Fe 2019 NaN 14.0 15.0\n0 Buenos Aires 2020 0.0 4.0 5.0\n1 Buenos Aires 2020 0.0 6.0 7.0\n2 Buenos Aires 2021 1.0 8.0 9.0\n3 Buenos Aires 2022 2.0 10.0 11.0\n4 Cordoba 2021 3.0 0.0 1.0\n5 Santa Fe 2020 5.0 12.0 13.0\n6 Santa Fe 2020 6.0 12.0 13.0"},"metadata":{},"execution_count":21}],"execution_count":21},{"cell_type":"code","source":"a=pd.concat([c1,c2],axis=1)\na","metadata":{"id":"gkJVfxDVTjAB","colab":{"height":332,"base_uri":"https://localhost:8080/"},"cell_id":"1cb910ca2d264bfca42d28b3a1071135","outputId":"de7053cb-25b0-4e2b-c6ec-2ed249f41b15","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":502,"user_tz":300,"timestamp":1646485532690},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
key1key2dataevent1event2key1key2dataevent1event2
0Cordoba20213.001Buenos Aires2020.00.04.05.0
1Cordoba2020NaN23Buenos Aires2020.00.06.07.0
2Buenos Aires20200.045Buenos Aires2021.01.08.09.0
3Buenos Aires20200.067Buenos Aires2022.02.010.011.0
4Buenos Aires20211.089Cordoba2021.03.00.01.0
5Buenos Aires20222.01011Cordoba2022.04.0NaNNaN
6Santa Fe20205.01213Santa Fe2020.05.012.013.0
7Santa Fe20206.01213Santa Fe2020.06.012.013.0
8Santa Fe2019NaN1415NaNNaNNaNNaNNaN
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" key1 key2 data event1 event2 key1 key2 data \\\n0 Cordoba 2021 3.0 0 1 Buenos Aires 2020.0 0.0 \n1 Cordoba 2020 NaN 2 3 Buenos Aires 2020.0 0.0 \n2 Buenos Aires 2020 0.0 4 5 Buenos Aires 2021.0 1.0 \n3 Buenos Aires 2020 0.0 6 7 Buenos Aires 2022.0 2.0 \n4 Buenos Aires 2021 1.0 8 9 Cordoba 2021.0 3.0 \n5 Buenos Aires 2022 2.0 10 11 Cordoba 2022.0 4.0 \n6 Santa Fe 2020 5.0 12 13 Santa Fe 2020.0 5.0 \n7 Santa Fe 2020 6.0 12 13 Santa Fe 2020.0 6.0 \n8 Santa Fe 2019 NaN 14 15 NaN NaN NaN \n\n event1 event2 \n0 4.0 5.0 \n1 6.0 7.0 \n2 8.0 9.0 \n3 10.0 11.0 \n4 0.0 1.0 \n5 NaN NaN \n6 12.0 13.0 \n7 12.0 13.0 \n8 NaN NaN "},"metadata":{},"execution_count":22}],"execution_count":22},{"cell_type":"markdown","source":"# Desafio generico","metadata":{"id":"uJn4vXZUOsI9","cell_id":"5e9d0974ac5946b5814dd337a45c71c5","deepnote_cell_type":"markdown"}},{"cell_type":"code","source":"%cd '/content/gdrive/MyDrive/'","metadata":{"id":"DTGNTHCXO_xC","colab":{"base_uri":"https://localhost:8080/"},"cell_id":"efeebdde90014eff8d53100dc1c2c498","outputId":"ac0da5eb-f226-44c6-a591-ef9b21f12b74","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":441,"user_tz":300,"timestamp":1646486359940},"deepnote_cell_type":"code"},"outputs":[{"output_type":"stream","name":"stdout","text":"/content/gdrive/MyDrive\n"}],"execution_count":26},{"cell_type":"code","source":"customers= pd.read_csv('customers.csv',sep=',')\ncustomers.head()","metadata":{"id":"SAbdXvkBOtXk","colab":{"height":303,"base_uri":"https://localhost:8080/"},"cell_id":"c300cd75aa9d4e418c2aea0c3ecbf6c1","outputId":"ad1ac948-eb70-49a3-aaf6-a9f303eac34c","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":602,"user_tz":300,"timestamp":1646486363136},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
CustomerIDCustomerNameContactNameAddressCityPostalCodeCountry
01Alfreds FutterkisteMaria AndersObere Str. 57Berlin12209Germany
12Ana Trujillo Emparedados y heladosAna TrujilloAvda. de la Constitución 2222México D.F.5021Mexico
23Antonio Moreno TaqueríaAntonio MorenoMataderos 2312México D.F.5023Mexico
34Around the HornThomas Hardy120 Hanover Sq.LondonWA1 1DPUK
45Berglunds snabbköpChristina BerglundBerguvsvägen 8LuleåS-958 22Sweden
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" CustomerID CustomerName ContactName \\\n0 1 Alfreds Futterkiste  Maria Anders  \n1 2 Ana Trujillo Emparedados y helados  Ana Trujillo  \n2 3 Antonio Moreno Taquería  Antonio Moreno  \n3 4 Around the Horn  Thomas Hardy  \n4 5 Berglunds snabbköp  Christina Berglund  \n\n Address City PostalCode Country \n0 Obere Str. 57  Berlin  12209 Germany  \n1 Avda. de la Constitución 2222  México D.F.  5021 Mexico  \n2 Mataderos 2312  México D.F.  5023 Mexico  \n3 120 Hanover Sq.  London  WA1 1DP  UK  \n4 Berguvsvägen 8  Luleå  S-958 22  Sweden  "},"metadata":{},"execution_count":27}],"execution_count":27},{"cell_type":"code","source":"employees= pd.read_csv('employees.csv',sep=',')\nemployees.head()","metadata":{"id":"ns-Pf39EPCpu","colab":{"height":268,"base_uri":"https://localhost:8080/"},"cell_id":"9924ce055dab4356abf3ea4aabeaeae2","outputId":"cd7577bb-2928-4338-ab74-dd06c3668832","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":668,"user_tz":300,"timestamp":1646486398698},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
EmployeeIDLastNameFirstNameBirthDatePhotoNotes
01DavolioNancy12/8/1968EmpID1.picEducation includes a BA in psychology from Col...
12FullerAndrew2/19/1952EmpID2.picAndrew received his BTS commercial and a Ph.D....
23LeverlingJanet8/30/1963EmpID3.picJanet has a BS degree in chemistry from Boston...
34PeacockMargaret9/19/1958EmpID4.picMargaret holds a BA in English literature from...
45BuchananSteven3/4/1955EmpID5.picSteven Buchanan graduated from St. Andrews Uni...
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" EmployeeID LastName FirstName BirthDate Photo \\\n0 1 Davolio  Nancy  12/8/1968  EmpID1.pic  \n1 2 Fuller  Andrew  2/19/1952  EmpID2.pic  \n2 3 Leverling  Janet  8/30/1963  EmpID3.pic  \n3 4 Peacock  Margaret  9/19/1958  EmpID4.pic  \n4 5 Buchanan  Steven  3/4/1955  EmpID5.pic  \n\n Notes \n0 Education includes a BA in psychology from Col... \n1 Andrew received his BTS commercial and a Ph.D.... \n2 Janet has a BS degree in chemistry from Boston... \n3 Margaret holds a BA in English literature from... \n4 Steven Buchanan graduated from St. Andrews Uni... "},"metadata":{},"execution_count":30}],"execution_count":30},{"cell_type":"code","source":"orders= pd.read_csv('orders.csv',sep=',')\norders.head()","metadata":{"id":"BzmiEsEAPKcz","colab":{"height":206,"base_uri":"https://localhost:8080/"},"cell_id":"9cef5512adc940e8a31271f0e525699f","outputId":"415d0354-70da-42b9-aef3-f2794b51f6ef","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":429,"user_tz":300,"timestamp":1646486419355},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
OrderIDCustomerIDEmployeeIDOrderDateShipperID
0102489057/4/19963
1102498167/5/19961
2102503447/8/19962
3102518437/8/19961
4102527647/9/19962
\n
\n \n \n \n\n \n
\n
\n ","text/plain":" OrderID CustomerID EmployeeID OrderDate ShipperID\n0 10248 90 5 7/4/1996  3\n1 10249 81 6 7/5/1996  1\n2 10250 34 4 7/8/1996  2\n3 10251 84 3 7/8/1996  1\n4 10252 76 4 7/9/1996  2"},"metadata":{},"execution_count":31}],"execution_count":31},{"cell_type":"code","source":"# Hacer el inner join\npd.merge(orders, employees, how='inner', on='EmployeeID').sort_values(by='OrderID')[['OrderID','LastName','FirstName']]","metadata":{"id":"UKgHXspZPP43","colab":{"height":424,"base_uri":"https://localhost:8080/"},"cell_id":"df3d1a82b8ce459fa35ecacdb2441231","outputId":"7ecae577-1bd0-4e2f-c251-edaad1f2ab17","executionInfo":{"user":{"userId":"09471607480253994520","photoUrl":"https://lh3.googleusercontent.com/a-/AOh14GjvGjd5VpSUEHTxlxXRYAinh8eCspL5nxvcW9wD=s64","displayName":"David Francisco Bustos Usta"},"status":"ok","elapsed":269,"user_tz":300,"timestamp":1646486590214},"deepnote_cell_type":"code"},"outputs":[{"output_type":"execute_result","data":{"text/html":"\n
\n
\n
\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
OrderIDLastNameFirstName
010248BuchananSteven
1110249SuyamaMichael
2910250PeacockMargaret
6910251LeverlingJanet
3010252PeacockMargaret
............
2810439SuyamaMichael
6810440PeacockMargaret
9810441LeverlingJanet
9910442LeverlingJanet
16110443CallahanLaura
\n

196 rows × 3 columns

\n
\n \n \n \n\n \n
\n
\n ","text/plain":" OrderID LastName FirstName\n0 10248 Buchanan  Steven \n11 10249 Suyama  Michael \n29 10250 Peacock  Margaret \n69 10251 Leverling  Janet \n30 10252 Peacock  Margaret \n.. ... ... ...\n28 10439 Suyama  Michael \n68 10440 Peacock  Margaret \n98 10441 Leverling  Janet \n99 10442 Leverling  Janet \n161 10443 Callahan  Laura \n\n[196 rows x 3 columns]"},"metadata":{},"execution_count":35}],"execution_count":35},{"cell_type":"markdown","source":"\nCreated in deepnote.com \nCreated in Deepnote","metadata":{"created_in_deepnote_cell":true,"deepnote_cell_type":"markdown"}}],"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"name":"Clase 6 - Data Wrangling I.ipynb","provenance":[],"authorship_tag":"ABX9TyMG50GKD2aC/7JKQqep8TpQ","collapsed_sections":[]},"deepnote":{},"kernelspec":{"name":"python3","display_name":"Python 3"},"language_info":{"name":"python"},"deepnote_notebook_id":"3473e8c96e9742a2a3720b7cedf580d8","deepnote_execution_queue":[]}}