{"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
key
\n
first
\n
\n \n \n
\n
0
\n
b
\n
0
\n
\n
\n
1
\n
b
\n
1
\n
\n
\n
2
\n
a
\n
2
\n
\n
\n
3
\n
c
\n
3
\n
\n
\n
4
\n
a
\n
4
\n
\n
\n
5
\n
a
\n
5
\n
\n
\n
6
\n
b
\n
6
\n
\n \n
\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
key
\n
second
\n
\n \n \n
\n
0
\n
a
\n
0
\n
\n
\n
1
\n
b
\n
1
\n
\n
\n
2
\n
d
\n
2
\n
\n \n
\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
key
\n
first
\n
second
\n
\n \n \n
\n
0
\n
b
\n
0
\n
1.0
\n
\n
\n
1
\n
b
\n
1
\n
1.0
\n
\n
\n
2
\n
a
\n
2
\n
0.0
\n
\n
\n
3
\n
c
\n
3
\n
NaN
\n
\n
\n
4
\n
a
\n
4
\n
0.0
\n
\n
\n
5
\n
a
\n
5
\n
0.0
\n
\n
\n
6
\n
b
\n
6
\n
1.0
\n
\n \n
\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
key
\n
first
\n
second
\n
\n \n \n
\n
0
\n
b
\n
0
\n
1
\n
\n
\n
1
\n
b
\n
1
\n
1
\n
\n
\n
2
\n
b
\n
6
\n
1
\n
\n
\n
3
\n
a
\n
2
\n
0
\n
\n
\n
4
\n
a
\n
4
\n
0
\n
\n
\n
5
\n
a
\n
5
\n
0
\n
\n \n
\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
key
\n
first
\n
second
\n
\n \n \n
\n
0
\n
b
\n
0.0
\n
1.0
\n
\n
\n
1
\n
b
\n
1.0
\n
1.0
\n
\n
\n
2
\n
b
\n
6.0
\n
1.0
\n
\n
\n
3
\n
a
\n
2.0
\n
0.0
\n
\n
\n
4
\n
a
\n
4.0
\n
0.0
\n
\n
\n
5
\n
a
\n
5.0
\n
0.0
\n
\n
\n
6
\n
c
\n
3.0
\n
NaN
\n
\n
\n
7
\n
d
\n
NaN
\n
2.0
\n
\n \n
\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
key
\n
first
\n
second
\n
\n \n \n
\n
0
\n
b
\n
0
\n
1.0
\n
\n
\n
1
\n
b
\n
1
\n
1.0
\n
\n
\n
2
\n
a
\n
2
\n
0.0
\n
\n
\n
3
\n
c
\n
3
\n
NaN
\n
\n
\n
4
\n
a
\n
4
\n
0.0
\n
\n
\n
5
\n
a
\n
5
\n
0.0
\n
\n
\n
6
\n
b
\n
6
\n
1.0
\n
\n \n
\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
key
\n
first
\n
second
\n
\n \n \n
\n
0
\n
a
\n
2.0
\n
0
\n
\n
\n
1
\n
a
\n
4.0
\n
0
\n
\n
\n
2
\n
a
\n
5.0
\n
0
\n
\n
\n
3
\n
b
\n
0.0
\n
1
\n
\n
\n
4
\n
b
\n
1.0
\n
1
\n
\n
\n
5
\n
b
\n
6.0
\n
1
\n
\n
\n
6
\n
d
\n
NaN
\n
2
\n
\n \n
\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
key1
\n
key2
\n
data
\n
\n \n \n
\n
0
\n
Buenos Aires
\n
2020
\n
0
\n
\n
\n
1
\n
Buenos Aires
\n
2021
\n
1
\n
\n
\n
2
\n
Buenos Aires
\n
2022
\n
2
\n
\n
\n
3
\n
Cordoba
\n
2021
\n
3
\n
\n
\n
4
\n
Cordoba
\n
2022
\n
4
\n
\n
\n
5
\n
Santa Fe
\n
2020
\n
5
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
6
\n
\n \n
\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
key1
\n
key2
\n
event1
\n
event2
\n
\n \n \n
\n
0
\n
Cordoba
\n
2021
\n
0
\n
1
\n
\n
\n
1
\n
Cordoba
\n
2020
\n
2
\n
3
\n
\n
\n
2
\n
Buenos Aires
\n
2020
\n
4
\n
5
\n
\n
\n
3
\n
Buenos Aires
\n
2020
\n
6
\n
7
\n
\n
\n
4
\n
Buenos Aires
\n
2021
\n
8
\n
9
\n
\n
\n
5
\n
Buenos Aires
\n
2022
\n
10
\n
11
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
12
\n
13
\n
\n
\n
7
\n
Santa Fe
\n
2019
\n
14
\n
15
\n
\n \n
\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 ","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
key1
\n
key2
\n
data
\n
event1
\n
event2
\n
\n \n \n
\n
0
\n
Buenos Aires
\n
2020
\n
0
\n
4
\n
5
\n
\n
\n
1
\n
Buenos Aires
\n
2020
\n
0
\n
6
\n
7
\n
\n
\n
2
\n
Buenos Aires
\n
2021
\n
1
\n
8
\n
9
\n
\n
\n
3
\n
Buenos Aires
\n
2022
\n
2
\n
10
\n
11
\n
\n
\n
4
\n
Cordoba
\n
2021
\n
3
\n
0
\n
1
\n
\n
\n
5
\n
Santa Fe
\n
2020
\n
5
\n
12
\n
13
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
6
\n
12
\n
13
\n
\n \n
\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
key1
\n
key2
\n
data
\n
event1
\n
event2
\n
\n \n \n
\n
0
\n
Buenos Aires
\n
2020
\n
0.0
\n
4.0
\n
5.0
\n
\n
\n
1
\n
Buenos Aires
\n
2020
\n
0.0
\n
6.0
\n
7.0
\n
\n
\n
2
\n
Buenos Aires
\n
2021
\n
1.0
\n
8.0
\n
9.0
\n
\n
\n
3
\n
Buenos Aires
\n
2022
\n
2.0
\n
10.0
\n
11.0
\n
\n
\n
4
\n
Cordoba
\n
2021
\n
3.0
\n
0.0
\n
1.0
\n
\n
\n
5
\n
Cordoba
\n
2022
\n
4.0
\n
NaN
\n
NaN
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
5.0
\n
12.0
\n
13.0
\n
\n
\n
7
\n
Santa Fe
\n
2020
\n
6.0
\n
12.0
\n
13.0
\n
\n
\n
8
\n
Cordoba
\n
2020
\n
NaN
\n
2.0
\n
3.0
\n
\n
\n
9
\n
Santa Fe
\n
2019
\n
NaN
\n
14.0
\n
15.0
\n
\n \n
\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
key1
\n
key2
\n
data
\n
event1
\n
event2
\n
\n \n \n
\n
0
\n
Buenos Aires
\n
2020
\n
0
\n
4.0
\n
5.0
\n
\n
\n
1
\n
Buenos Aires
\n
2020
\n
0
\n
6.0
\n
7.0
\n
\n
\n
2
\n
Buenos Aires
\n
2021
\n
1
\n
8.0
\n
9.0
\n
\n
\n
3
\n
Buenos Aires
\n
2022
\n
2
\n
10.0
\n
11.0
\n
\n
\n
4
\n
Cordoba
\n
2021
\n
3
\n
0.0
\n
1.0
\n
\n
\n
5
\n
Cordoba
\n
2022
\n
4
\n
NaN
\n
NaN
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
5
\n
12.0
\n
13.0
\n
\n
\n
7
\n
Santa Fe
\n
2020
\n
6
\n
12.0
\n
13.0
\n
\n \n
\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
key1
\n
key2
\n
data
\n
event1
\n
event2
\n
\n \n \n
\n
0
\n
Cordoba
\n
2021
\n
3.0
\n
0
\n
1
\n
\n
\n
1
\n
Cordoba
\n
2020
\n
NaN
\n
2
\n
3
\n
\n
\n
2
\n
Buenos Aires
\n
2020
\n
0.0
\n
4
\n
5
\n
\n
\n
3
\n
Buenos Aires
\n
2020
\n
0.0
\n
6
\n
7
\n
\n
\n
4
\n
Buenos Aires
\n
2021
\n
1.0
\n
8
\n
9
\n
\n
\n
5
\n
Buenos Aires
\n
2022
\n
2.0
\n
10
\n
11
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
5.0
\n
12
\n
13
\n
\n
\n
7
\n
Santa Fe
\n
2020
\n
6.0
\n
12
\n
13
\n
\n
\n
8
\n
Santa Fe
\n
2019
\n
NaN
\n
14
\n
15
\n
\n \n
\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
key1
\n
key2
\n
data
\n
event1
\n
event2
\n
\n \n \n
\n
0
\n
Cordoba
\n
2021
\n
3.0
\n
0.0
\n
1.0
\n
\n
\n
1
\n
Cordoba
\n
2020
\n
NaN
\n
2.0
\n
3.0
\n
\n
\n
2
\n
Buenos Aires
\n
2020
\n
0.0
\n
4.0
\n
5.0
\n
\n
\n
3
\n
Buenos Aires
\n
2020
\n
0.0
\n
6.0
\n
7.0
\n
\n
\n
4
\n
Buenos Aires
\n
2021
\n
1.0
\n
8.0
\n
9.0
\n
\n
\n
5
\n
Buenos Aires
\n
2022
\n
2.0
\n
10.0
\n
11.0
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
5.0
\n
12.0
\n
13.0
\n
\n
\n
7
\n
Santa Fe
\n
2020
\n
6.0
\n
12.0
\n
13.0
\n
\n
\n
8
\n
Santa Fe
\n
2019
\n
NaN
\n
14.0
\n
15.0
\n
\n
\n
0
\n
Buenos Aires
\n
2020
\n
0.0
\n
4.0
\n
5.0
\n
\n
\n
1
\n
Buenos Aires
\n
2020
\n
0.0
\n
6.0
\n
7.0
\n
\n
\n
2
\n
Buenos Aires
\n
2021
\n
1.0
\n
8.0
\n
9.0
\n
\n
\n
3
\n
Buenos Aires
\n
2022
\n
2.0
\n
10.0
\n
11.0
\n
\n
\n
4
\n
Cordoba
\n
2021
\n
3.0
\n
0.0
\n
1.0
\n
\n
\n
5
\n
Cordoba
\n
2022
\n
4.0
\n
NaN
\n
NaN
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
5.0
\n
12.0
\n
13.0
\n
\n
\n
7
\n
Santa Fe
\n
2020
\n
6.0
\n
12.0
\n
13.0
\n
\n
\n
0
\n
Buenos Aires
\n
2020
\n
0.0
\n
4.0
\n
5.0
\n
\n
\n
1
\n
Buenos Aires
\n
2020
\n
0.0
\n
6.0
\n
7.0
\n
\n
\n
2
\n
Buenos Aires
\n
2021
\n
1.0
\n
8.0
\n
9.0
\n
\n
\n
3
\n
Buenos Aires
\n
2022
\n
2.0
\n
10.0
\n
11.0
\n
\n
\n
4
\n
Cordoba
\n
2021
\n
3.0
\n
0.0
\n
1.0
\n
\n
\n
5
\n
Cordoba
\n
2022
\n
4.0
\n
NaN
\n
NaN
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
5.0
\n
12.0
\n
13.0
\n
\n
\n
7
\n
Santa Fe
\n
2020
\n
6.0
\n
12.0
\n
13.0
\n
\n
\n
8
\n
Cordoba
\n
2020
\n
NaN
\n
2.0
\n
3.0
\n
\n
\n
9
\n
Santa Fe
\n
2019
\n
NaN
\n
14.0
\n
15.0
\n
\n
\n
0
\n
Buenos Aires
\n
2020
\n
0.0
\n
4.0
\n
5.0
\n
\n
\n
1
\n
Buenos Aires
\n
2020
\n
0.0
\n
6.0
\n
7.0
\n
\n
\n
2
\n
Buenos Aires
\n
2021
\n
1.0
\n
8.0
\n
9.0
\n
\n
\n
3
\n
Buenos Aires
\n
2022
\n
2.0
\n
10.0
\n
11.0
\n
\n
\n
4
\n
Cordoba
\n
2021
\n
3.0
\n
0.0
\n
1.0
\n
\n
\n
5
\n
Santa Fe
\n
2020
\n
5.0
\n
12.0
\n
13.0
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
6.0
\n
12.0
\n
13.0
\n
\n \n
\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
key1
\n
key2
\n
data
\n
event1
\n
event2
\n
key1
\n
key2
\n
data
\n
event1
\n
event2
\n
\n \n \n
\n
0
\n
Cordoba
\n
2021
\n
3.0
\n
0
\n
1
\n
Buenos Aires
\n
2020.0
\n
0.0
\n
4.0
\n
5.0
\n
\n
\n
1
\n
Cordoba
\n
2020
\n
NaN
\n
2
\n
3
\n
Buenos Aires
\n
2020.0
\n
0.0
\n
6.0
\n
7.0
\n
\n
\n
2
\n
Buenos Aires
\n
2020
\n
0.0
\n
4
\n
5
\n
Buenos Aires
\n
2021.0
\n
1.0
\n
8.0
\n
9.0
\n
\n
\n
3
\n
Buenos Aires
\n
2020
\n
0.0
\n
6
\n
7
\n
Buenos Aires
\n
2022.0
\n
2.0
\n
10.0
\n
11.0
\n
\n
\n
4
\n
Buenos Aires
\n
2021
\n
1.0
\n
8
\n
9
\n
Cordoba
\n
2021.0
\n
3.0
\n
0.0
\n
1.0
\n
\n
\n
5
\n
Buenos Aires
\n
2022
\n
2.0
\n
10
\n
11
\n
Cordoba
\n
2022.0
\n
4.0
\n
NaN
\n
NaN
\n
\n
\n
6
\n
Santa Fe
\n
2020
\n
5.0
\n
12
\n
13
\n
Santa Fe
\n
2020.0
\n
5.0
\n
12.0
\n
13.0
\n
\n
\n
7
\n
Santa Fe
\n
2020
\n
6.0
\n
12
\n
13
\n
Santa Fe
\n
2020.0
\n
6.0
\n
12.0
\n
13.0
\n
\n
\n
8
\n
Santa Fe
\n
2019
\n
NaN
\n
14
\n
15
\n
NaN
\n
NaN
\n
NaN
\n
NaN
\n
NaN
\n
\n \n
\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
CustomerID
\n
CustomerName
\n
ContactName
\n
Address
\n
City
\n
PostalCode
\n
Country
\n
\n \n \n
\n
0
\n
1
\n
Alfreds Futterkiste
\n
Maria Anders
\n
Obere Str. 57
\n
Berlin
\n
12209
\n
Germany
\n
\n
\n
1
\n
2
\n
Ana Trujillo Emparedados y helados
\n
Ana Trujillo
\n
Avda. de la Constitución 2222
\n
México D.F.
\n
5021
\n
Mexico
\n
\n
\n
2
\n
3
\n
Antonio Moreno Taquería
\n
Antonio Moreno
\n
Mataderos 2312
\n
México D.F.
\n
5023
\n
Mexico
\n
\n
\n
3
\n
4
\n
Around the Horn
\n
Thomas Hardy
\n
120 Hanover Sq.
\n
London
\n
WA1 1DP
\n
UK
\n
\n
\n
4
\n
5
\n
Berglunds snabbköp
\n
Christina Berglund
\n
Berguvsvägen 8
\n
Luleå
\n
S-958 22
\n
Sweden
\n
\n \n
\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
EmployeeID
\n
LastName
\n
FirstName
\n
BirthDate
\n
Photo
\n
Notes
\n
\n \n \n
\n
0
\n
1
\n
Davolio
\n
Nancy
\n
12/8/1968
\n
EmpID1.pic
\n
Education includes a BA in psychology from Col...
\n
\n
\n
1
\n
2
\n
Fuller
\n
Andrew
\n
2/19/1952
\n
EmpID2.pic
\n
Andrew received his BTS commercial and a Ph.D....
\n
\n
\n
2
\n
3
\n
Leverling
\n
Janet
\n
8/30/1963
\n
EmpID3.pic
\n
Janet has a BS degree in chemistry from Boston...
\n
\n
\n
3
\n
4
\n
Peacock
\n
Margaret
\n
9/19/1958
\n
EmpID4.pic
\n
Margaret holds a BA in English literature from...
\n
\n
\n
4
\n
5
\n
Buchanan
\n
Steven
\n
3/4/1955
\n
EmpID5.pic
\n
Steven Buchanan graduated from St. Andrews Uni...
\n
\n \n
\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