Skip to content

Commit ef5dc39

Browse files
committed
Create join-lat-long.ipynb
1 parent 08f6b3b commit ef5dc39

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

join-lat-long.ipynb

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
{
2+
"cells": [
3+
{
4+
"attachments": {},
5+
"cell_type": "markdown",
6+
"metadata": {},
7+
"source": [
8+
"Joining Fault_Alarm ad Location"
9+
]
10+
},
11+
{
12+
"cell_type": "code",
13+
"execution_count": null,
14+
"metadata": {},
15+
"outputs": [],
16+
"source": [
17+
"import numpy as np\n",
18+
"import pandas as pd\n",
19+
"import boto3"
20+
]
21+
},
22+
{
23+
"cell_type": "code",
24+
"execution_count": null,
25+
"metadata": {},
26+
"outputs": [],
27+
"source": [
28+
"%%time\n",
29+
"# Load Vehicle_Fault_Alarm\n",
30+
"df_fault_alarm = pd.read_csv('../S3 original bucket/Vehicle_Fault_Alarm.csv', low_memory=False)"
31+
]
32+
},
33+
{
34+
"cell_type": "code",
35+
"execution_count": null,
36+
"metadata": {},
37+
"outputs": [],
38+
"source": [
39+
"%%time\n",
40+
"# Load Vehicle_Location\n",
41+
"df_location = pd.read_csv('../S3 original bucket/Vehicle_Location.csv')"
42+
]
43+
}
44+
],
45+
"metadata": {
46+
"kernelspec": {
47+
"display_name": "Python 3",
48+
"language": "python",
49+
"name": "python3"
50+
},
51+
"language_info": {
52+
"name": "python",
53+
"version": "3.11.2"
54+
},
55+
"orig_nbformat": 4
56+
},
57+
"nbformat": 4,
58+
"nbformat_minor": 2
59+
}

0 commit comments

Comments
 (0)