Skip to content

Commit ed5cb50

Browse files
authored
Merge pull request #16 from ehardi19/master
Finished Python Crash Course & NumPy
2 parents 70792ec + c7d6e81 commit ed5cb50

12 files changed

+670
-296
lines changed

2018/Python-Crash-Course/Python Crash Course.ipynb

+387-66
Large diffs are not rendered by default.

2018/Python-for-Data-Analysis/NumPy/NumPy Arrays.ipynb

+273-129
Large diffs are not rendered by default.

2018/Python-for-Data-Analysis/NumPy/Numpy Indexing and Selection.ipynb

+1-7
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@
2121
},
2222
{
2323
"cell_type": "code",
24-
2524
"execution_count": 2,
26-
2725
"metadata": {},
2826
"outputs": [],
2927
"source": [
@@ -32,9 +30,7 @@
3230
},
3331
{
3432
"cell_type": "code",
35-
3633
"execution_count": 3,
37-
3834
"metadata": {},
3935
"outputs": [],
4036
"source": [
@@ -810,9 +806,7 @@
810806
"name": "python",
811807
"nbconvert_exporter": "python",
812808
"pygments_lexer": "ipython3",
813-
814-
"version": "3.6.3"
815-
809+
"version": "3.6.5"
816810
}
817811
},
818812
"nbformat": 4,

2018/Python-for-Data-Analysis/NumPy/Numpy Operations.ipynb

+1-5
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,7 @@
133133
{
134134
"cell_type": "code",
135135
"execution_count": 6,
136-
137136
"metadata": {},
138-
139137
"outputs": [
140138
{
141139
"name": "stderr",
@@ -340,9 +338,7 @@
340338
"name": "python",
341339
"nbconvert_exporter": "python",
342340
"pygments_lexer": "ipython3",
343-
344-
"version": "3.6.3"
345-
341+
"version": "3.6.5"
346342
}
347343
},
348344
"nbformat": 4,

2018/Python-for-Data-Analysis/Pandas/Data Input and Output.ipynb

+1-17
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@
4242
},
4343
{
4444
"cell_type": "code",
45-
4645
"execution_count": 2,
47-
4846
"metadata": {},
4947
"outputs": [
5048
{
@@ -145,9 +143,7 @@
145143
},
146144
{
147145
"cell_type": "code",
148-
149146
"execution_count": 4,
150-
151147
"metadata": {},
152148
"outputs": [
153149
{
@@ -391,12 +387,10 @@
391387
},
392388
{
393389
"cell_type": "code",
394-
395390
"execution_count": 7,
396391
"metadata": {
397392
"collapsed": true
398393
},
399-
400394
"outputs": [],
401395
"source": [
402396
"df.to_excel('output.xlsx', index = False, header = None, sheet_name = 'Output')"
@@ -503,25 +497,21 @@
503497
},
504498
{
505499
"cell_type": "code",
506-
507500
"execution_count": 9,
508501
"metadata": {
509502
"collapsed": true
510503
},
511-
512504
"outputs": [],
513505
"source": [
514506
"df = pd.read_html('http://www.fdic.gov/bank/individual/failed/banklist.html')"
515507
]
516508
},
517509
{
518510
"cell_type": "code",
519-
520511
"execution_count": 10,
521512
"metadata": {
522513
"scrolled": false
523514
},
524-
525515
"outputs": [
526516
{
527517
"data": {
@@ -1436,7 +1426,6 @@
14361426
},
14371427
{
14381428
"cell_type": "code",
1439-
14401429
"execution_count": 13,
14411430
"metadata": {},
14421431
"outputs": [
@@ -1524,30 +1513,25 @@
15241513
"metadata": {
15251514
"collapsed": true
15261515
},
1527-
15281516
"outputs": [],
15291517
"source": [
15301518
"df.to_sql('data', engine, index = False)"
15311519
]
15321520
},
15331521
{
15341522
"cell_type": "code",
1535-
15361523
"execution_count": 15,
15371524
"metadata": {
15381525
"collapsed": true
15391526
},
1540-
15411527
"outputs": [],
15421528
"source": [
15431529
"sql_df = pd.read_sql('data',con=engine)"
15441530
]
15451531
},
15461532
{
15471533
"cell_type": "code",
1548-
15491534
"execution_count": 16,
1550-
15511535
"metadata": {},
15521536
"outputs": [
15531537
{
@@ -1651,7 +1635,7 @@
16511635
"name": "python",
16521636
"nbconvert_exporter": "python",
16531637
"pygments_lexer": "ipython3",
1654-
"version": "3.6.3"
1638+
"version": "3.6.5"
16551639
}
16561640
},
16571641
"nbformat": 4,

0 commit comments

Comments
 (0)