Skip to content

Commit 2dff015

Browse files
committed
add git ignore file so that data does not upload
1 parent 85226c9 commit 2dff015

File tree

2 files changed

+21
-18
lines changed

2 files changed

+21
-18
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ __pycache__/
55
# Video Scripts
66
s.txt
77
script.txt
8+
9+
# Data Files
10+
data/

Python/Pandas/05-Updating-Data/Pandas-Demo.ipynb

+18-18
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 1,
5+
"execution_count": 4,
66
"metadata": {},
77
"outputs": [],
88
"source": [
@@ -11,17 +11,17 @@
1111
},
1212
{
1313
"cell_type": "code",
14-
"execution_count": 2,
14+
"execution_count": 6,
1515
"metadata": {},
1616
"outputs": [],
1717
"source": [
18-
"df = pd.read_csv('data/survey_results_public.csv', index_col='Respondent')\n",
19-
"schema_df = pd.read_csv('data/survey_results_schema.csv', index_col='Column')"
18+
"df = pd.read_csv('../data/survey_results_public.csv', index_col='Respondent')\n",
19+
"schema_df = pd.read_csv('../data/survey_results_schema.csv', index_col='Column')"
2020
]
2121
},
2222
{
2323
"cell_type": "code",
24-
"execution_count": 3,
24+
"execution_count": 7,
2525
"metadata": {},
2626
"outputs": [],
2727
"source": [
@@ -31,7 +31,7 @@
3131
},
3232
{
3333
"cell_type": "code",
34-
"execution_count": 4,
34+
"execution_count": 8,
3535
"metadata": {
3636
"scrolled": false
3737
},
@@ -1064,7 +1064,7 @@
10641064
"5 Appropriate in length Easy "
10651065
]
10661066
},
1067-
"execution_count": 4,
1067+
"execution_count": 8,
10681068
"metadata": {},
10691069
"output_type": "execute_result"
10701070
}
@@ -1075,7 +1075,7 @@
10751075
},
10761076
{
10771077
"cell_type": "code",
1078-
"execution_count": 6,
1078+
"execution_count": 9,
10791079
"metadata": {},
10801080
"outputs": [],
10811081
"source": [
@@ -1084,7 +1084,7 @@
10841084
},
10851085
{
10861086
"cell_type": "code",
1087-
"execution_count": 7,
1087+
"execution_count": 10,
10881088
"metadata": {},
10891089
"outputs": [
10901090
{
@@ -1105,7 +1105,7 @@
11051105
"Name: SalaryUSD, Length: 88883, dtype: float64"
11061106
]
11071107
},
1108-
"execution_count": 7,
1108+
"execution_count": 10,
11091109
"metadata": {},
11101110
"output_type": "execute_result"
11111111
}
@@ -1116,7 +1116,7 @@
11161116
},
11171117
{
11181118
"cell_type": "code",
1119-
"execution_count": 8,
1119+
"execution_count": 11,
11201120
"metadata": {},
11211121
"outputs": [
11221122
{
@@ -1137,7 +1137,7 @@
11371137
"Name: Hobbyist, Length: 88883, dtype: object"
11381138
]
11391139
},
1140-
"execution_count": 8,
1140+
"execution_count": 11,
11411141
"metadata": {},
11421142
"output_type": "execute_result"
11431143
}
@@ -1148,7 +1148,7 @@
11481148
},
11491149
{
11501150
"cell_type": "code",
1151-
"execution_count": 9,
1151+
"execution_count": 12,
11521152
"metadata": {},
11531153
"outputs": [
11541154
{
@@ -1169,7 +1169,7 @@
11691169
"Name: Hobbyist, Length: 88883, dtype: bool"
11701170
]
11711171
},
1172-
"execution_count": 9,
1172+
"execution_count": 12,
11731173
"metadata": {},
11741174
"output_type": "execute_result"
11751175
}
@@ -1180,7 +1180,7 @@
11801180
},
11811181
{
11821182
"cell_type": "code",
1183-
"execution_count": 10,
1183+
"execution_count": 13,
11841184
"metadata": {},
11851185
"outputs": [],
11861186
"source": [
@@ -1189,7 +1189,7 @@
11891189
},
11901190
{
11911191
"cell_type": "code",
1192-
"execution_count": 11,
1192+
"execution_count": 14,
11931193
"metadata": {},
11941194
"outputs": [
11951195
{
@@ -3067,7 +3067,7 @@
30673067
"[88883 rows x 84 columns]"
30683068
]
30693069
},
3070-
"execution_count": 11,
3070+
"execution_count": 14,
30713071
"metadata": {},
30723072
"output_type": "execute_result"
30733073
}
@@ -3100,7 +3100,7 @@
31003100
"name": "python",
31013101
"nbconvert_exporter": "python",
31023102
"pygments_lexer": "ipython3",
3103-
"version": "3.7.4"
3103+
"version": "3.10.13"
31043104
}
31053105
},
31063106
"nbformat": 4,

0 commit comments

Comments
 (0)