-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
2014 lines (1998 loc) · 94.7 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Python": [
{
"id": 1,
"Title": "Avinash Jain, The Codex",
"Description": "Learn Python: The Complete Python Programming Course" ,
"Image":"https://img-c.udemycdn.com/course/750x422/394676_ce3d_5.jpg",
"title": "Learn Python: The Complete Python Programming Course",
"description": "Learn A-Z everything about Python, from the basics, to advanced topics like Python GUI, Python Data Analysis, and more!",
"link": "/course/pythonforbeginners/",
"img": "https://img-c.udemycdn.com/course/240x135/394676_ce3d_5.jpg",
"rating": 4.4,
"enrollments": 19511,
"totalreviews": 3223,
"price": 679.99,
"oldprice": 679.99,
"lastupdated": "9/2015",
"reviewers": [
{
"id": "l7rpollw8q6z5c5qfca",
"name": "Asif H.",
"initials": "AH",
"rating": 3,
"timeago": "2 weeks ago",
"review": "Sometimes confusing but was able to clarify. Good job nonetheless."
},
{
"id": "l7rpollxz9ab2b1doqm",
"name": "M.S.Swaroop",
"initials": "M",
"rating": 4,
"timeago": "3 weeks ago",
"review": "the course is specialized so that we learn ourselves deeply,simple and easy"
},
{
"id": "l7rpollx9jb84uayawk",
"name": "Saurish R.",
"initials": "SR",
"rating": 5,
"timeago": "2 months ago",
"review": "In depth concepts of python have been clearly explained. Good chemistry between student and instructor. Fantastic course. Completed every vid and had lot of fun"
},
{
"id": "l7rpollxa9smq7msael",
"name": "Shiristi",
"initials": "S",
"rating": 5,
"timeago": "3 months ago",
"review": "i can't say as i have not taken that many classes yet but so far it is good.\n\nedited( so yeah it was a journey for me many things happen but i am glad they did and also grateful to the person who is guiding me and thanks udemy for these courses really appreciate it !!!)"
},
{
"id": "l7rpollxcf4cmtbv85p",
"name": "Ejeshi G.",
"initials": "EG",
"rating": 4,
"timeago": "4 months ago",
"review": "teacher is good and direct, though not prompt at responding to questions and enquiries"
},
{
"id": "l7rpollxfpetrzzflk",
"name": "Sreelakshmi A.",
"initials": "SA",
"rating": 3,
"timeago": "2 months ago",
"review": "The contents are good for getting a good idea about Python. But it's little bit outdated. Instructor is good. But the sound quality can be improved. Please try to update the content. The course is almost 5 - 6 years old. So, think before purchasing."
},
{
"id": "l7rpollxh9262y11bzj",
"name": "Shyam K.",
"initials": "SK",
"rating": 2,
"timeago": "2 weeks ago",
"review": "not from the basic .many small but very irritating error comes and i was not able to find the solution in a week also . so it is not satisfying. educator should at least disscuss about all that possible errors."
},
{
"id": "l7rpollx1zxbygrmlky",
"name": "Matthew E G.",
"initials": "MG",
"rating": 3.5,
"timeago": "a month ago",
"review": "I took this course with Python 3.10 utilizing PyCharm as an IDE, so some of the information is a little dated. With that being said, good basics are covered to where figuring out your solution isn't anything too difficult. This course was definitely incredibly helpful in taking a bigger plunge into Python."
},
{
"id": "l7rpollxtb2dcjrbtc",
"name": "Todd G.",
"initials": "TG",
"rating": 5,
"timeago": "2 months ago",
"review": "I am still making my way through the course. However, I like the structure and the pace as well as the pdf exercises. I was learning by watching youtube but it is nice having a structured lesson that gradually progresses in difficulty. It's also nice having a certificate as a way to validate what I've learned to others."
},
{
"id": "l7rpollxjjpwba0mvmo",
"name": "Bill R.",
"initials": "BR",
"rating": 3.5,
"timeago": "4 months ago",
"review": "Left mouse pointer on text frequently\n\nRecording setup picked up heavy key strikes making listening difficult.\n\nSolved problems well as they came.\n\nCovered many functions of python and seemed knowledgeable."
},
{
"id": "l7rpollxpoqlaw1x00n",
"name": "Rahul T.",
"initials": "RT",
"rating": 4.5,
"timeago": "a month ago",
"review": "As this course is old now so the codes we take from websites are not there as the websites are updated so please update this course."
},
{
"id": "l7rpollx4h1hfbbb7ep",
"name": "Ritesh Amar S.",
"initials": "RS",
"rating": 4.5,
"timeago": "a month ago",
"review": "The course was amazing . Learned a lot new things."
}
],
"lectures": [
{
"id": "l7rpolim4v45vekj8ku",
"title": "Up and Running With Python",
"lessons": [
"Installing Python",
"Hello World"
]
},
{
"id": "l7rpolizsn4n2f0z4ps",
"title": "The Basics (Data Types)",
"lessons": [
"Variables",
"Multiple Assignment",
"Data Types and Ints",
"Strings",
"Placeholders",
"Lists/Arrays",
"List Functions",
"Dictionaries",
"Dictionary Functions",
"Tuples",
"Exercise Files"
]
},
{
"id": "l7rpolj8r9ofza0jruq",
"title": "Conditions and Loops",
"lessons": [
"If-Else Statements",
"Relational Operators",
"Nested If/Else",
"Elif Statements",
"Logical Operators",
"For Loops",
"While Loops",
"Nested For Loops",
"Pass, Break and Continue",
"Try and Except",
"Commenting",
"Quick Tips",
"Exercise Files"
]
},
{
"id": "l7rpoljh5y40740yc8",
"title": "Functions!",
"lessons": [
"Creating our own Functions",
"Global and Local Vars",
"Abs and Bool",
"Help and Dir",
"Eval and Exec",
"Str, Int, Float",
"Recap and Sum"
]
},
{
"id": "l7rpoljop5jbx31vsdm",
"title": "Classes! (Object Orientated Programming)",
"lessons": [
"Basics of Classes",
"Functions in Classes",
"Class Attributes",
"Inheritance",
"Overriding Methods"
]
},
{
"id": "l7rpoljvwfa1553dx9p",
"title": "File Input/Output",
"lessons": [
"Creating a File",
"Creating a File (Windows)",
"Reading a File",
"Writing to a File",
"Appending to Files",
"Copying Files"
]
},
{
"id": "l7rpolk2k530g346uy",
"title": "Using Python Modules",
"lessons": [
"Random Module - Randint",
"Guessing Game",
"Guessing Game Challenge",
"Random Module - Shuffle and Choice",
"Sys Module",
"Time Module",
"Turtle Module",
"For Loops in Turtle",
"Up and Down Functions",
"Coloring in Turtle",
"Functions in Turtle",
"Exercise Files"
]
},
{
"id": "l7rpolkbqw25eot3vak",
"title": "Crawling The Web",
"lessons": [
"Re Module",
"Crawling The Web (Stocks)",
"Stock Quotes (.py)",
"Crawling The Web (Weather)",
"Weather (.py)",
"Crawling The Web (Definition)",
"Definition (.py)"
]
},
{
"id": "l7rpolkjquhc8tz54ml",
"title": "Beautiful Soup HTML Parsing",
"lessons": [
"Intro to Beautiful Soup",
"Installing the Beautiful Soup Module",
"Prettify with Soup",
"Drilling Down",
"Functions in Soup",
".String and .Parent",
"Searching in Soup",
"Weather Parsing",
"Antonym Parsing"
]
},
{
"id": "l7rpolkqh9j47eld55k",
"title": "MatPlotLib - Charts, Plots and 3D Figures!",
"lessons": [
"Intro to MatPlotLib",
"First Graph!",
"Understanding the MatPlotLib Interface",
"Graph Labels",
"Creating a Graph from a File",
"Understanding SubPlots and Figures",
"Coloring of Graph",
"Multiple Plots in a Graph",
"Multiple Graphs in a Figure",
"What about 3 graphs?",
"Bar Graphs Intro",
"Modifying our Bar Graph",
"Pie Chart Intro",
"Modifying our Pie Chart",
"Adding a Legend",
"3D Graphics Intro",
"3D Scatter Plots",
"Multiple 3D Scatter Plots",
"3D Bar Graphs",
"3D Wireframes"
]
},
{
"id": "l7rpolkyu7oublnpnb",
"title": "Data Analysis with Pandas!",
"lessons": [
"Intro to Pandas",
"Series Data Structure",
"Series Continuation",
"Data Frames Intro",
"Creating a CSV",
"Reading a CSV",
"Writing to a CSV",
"Getting our Data",
"Slicing Data Frames",
"Data Manipulation",
"Indexing and More",
"Merging Data Frames",
"GroupBy Function",
"MovieLens Data",
"Heavy Data Analysis",
"MatPlotLib with Pandas",
"Let's Finish This"
]
},
{
"id": "l7rpoll51akp7ixl8py",
"title": "Python GUI with Tkinter",
"lessons": [
"Tkinter Introduction",
"Labels",
"Buttons",
"Layouts",
"Fill",
"Grid Layout",
"Entries",
"Check Buttons",
"GUI Login",
"Actions on Button Click",
"Binding Functions",
"More Binding!",
"Getting Entry Data",
"Message Box",
"Drop Down Menus",
"Calculator Part 1",
"Calculator Part 2",
"Calculator Part 3",
"Calculator Part 4",
"Canvas Intro",
"Canvas Objects",
"Canvas Fill",
"Random Rectangle Generator",
"Text and Arcs",
"Animations"
]
},
{
"id": "l7rpolldqkqhd52zou",
"title": "Our First Game (Bounce!)",
"lessons": [
"Creating our Ball",
"Adding the Game Interface",
"Adding the Paddle",
"Final Touches",
"Recap",
"Bounce! (.py) (v1/v2/v3)"
]
},
{
"id": "l7rpollkqccquiarqm",
"title": "Our Second Game (Pong!)",
"lessons": [
"Creating our Ball",
"Adding Paddle1",
"Adding Paddle2",
"Final Touches",
"Pong! (.py)"
]
},
{
"id": "l7rpollqabzq0h7jvyc",
"title": "What's Next?",
"lessons": [
"Up and Beyond!"
]
}
],
"instructors": [
{
"id": "l7rpollw3z7mx8ugi8i",
"name": "Avinash Jain",
"job": "CEO of TheCodex.me - Teaching 500,000+ Students how to code",
"img": "https://img-c.udemycdn.com/user/200_H/10260436_946b_6.jpg",
"rating": 4.4,
"reviews": 73859,
"students": 892299,
"courses": 16,
"description": " Avinash Jain is currently a senior at UC Berkeley majoring in Electrical Engineering and Computer Science. He's the CEO and Founder of TheCodex, an online educational platform focused on bringing the best programming content to hundreds of thousands of students around the world.\n\nHis programming journey began at the age of 10, starting off with simple Python scripts to crawl the weather. Since then, he's worked at numerous companies and is professionally experienced in Python, iOS Development and Web Development. He's launched a plethora of applications in the App Store amassing thousands of downloads. Additionaly, he's competed and won in several hackathons around the world including PennApps and NWHacks.\n\nAvinash has a passion to teach - his enthusiasm and love for programming is evident in every video. For the past 7 years he's been an instructor on Udemy and he loves motivating and enabling others to pursue their programming dreams. He hopes to help students realize the power of programming and jumpstart their careers through his courses.\n\nCheckout TheCodex for all of his courses, fantastic discounts, and any guidance or help. \n\nShow less"
},
{
"id": "l7rpollwajxw70mcibs",
"name": "The Codex",
"job": "Teaching Python through Projects",
"img": "https://img-c.udemycdn.com/user/200_H/52310762_220a.jpg",
"rating": 4.4,
"reviews": 73859,
"students": 892299,
"courses": 16,
"description": "You've taken a lengthy and boring coding class, but you're clueless about applying these concepts to build your ideas. The Codex shows you how to build fun, practical projects. Now, you can stand out from the crowd and land your dream job.\n\n\n\n\nJoin us on our platform today!\n\n\n\n\n\n\n\nShow more"
}
],
"requirements": [
"Macintosh (OSX)/ Windows(Vista and higher) Machine",
"Internet Connection"
],
"descriptions": [
"Do you want to become a programmer? Do you want to learn how to create games, automate your browser, visualize data, and much more?",
"If you’re looking to learn Python for the very first time or need a quick brush-up, this is the course for you!",
"Python has rapidly become one of the most popular programming languages around the world. Compared to other languages such as Java or C++, Python consistently outranks and outperforms these languages in demand from businesses and job availability. The average Python developer makes over $100,000 - this number is only going to grow in the coming years.",
"The best part? Python is one of the easiest coding languages to learn right now. It doesn’t matter if you have no programming experience or are unfamiliar with the syntax of Python. By the time you finish this course, you'll be an absolute pro at programming!",
"This course will cover all the basics and several advanced concepts of Python. We’ll go over:",
"The fundamentals of Python programming",
"Writing and Reading to Files",
"Automation of Word and Excel Files",
"Web scraping with BeautifulSoup4",
"Browser automation with Selenium",
"Data Analysis and Visualization with MatPlotLib",
"Regex parsing and Task Management",
"GUI and Gaming with Tkinter",
"And much more!",
"If you read the above list and are feeling a bit confused, don’t worry! As an instructor and student on Udemy for almost 4 years, I know what it’s like to be overwhelmed with boring and mundane. I promise you’ll have a blast learning the ins and outs of python. I’ve successfully taught over 200,000+ students from over 200 countries jumpstart their programming journeys through my courses.",
"Here’s what some of my students have to say:",
"“I wish I started programming at a younger age like Avi. This Python course was excellent for those that cringe at the thought of starting over from scratch with attempts to write programs once again. Python is a great building language for any beginner programmer. Thank you Avi!”",
"\n",
"“I had no idea about any programming language. With Avi's lectures, I'm now aware of several python concepts and I'm beginning to write my own programs. Avi is crisp and clear in his lectures and it is easy to catch the concepts and the depth of it through his explanations. Thanks, Avi for the wonderful course, You're awesome! It's helping me a lot :)”",
"\n",
"\"Videos are short and concise and well-defined in their title, this makes them easy to refer back to when a refresher is needed. Explanations aren't convoluted with complicated examples, which adds to the quick pace of the videos. I am very pleased with the decision to enroll in this course. Not only has it increased the pace I'm learning Python but I actively look forward to continuing the course, whenever I get the chance. Avi is friendly and energetic, absolutely delightful as an instructor.”",
"So what are you waiting for? Jumpstart your programming journey and dive into the world of Python by enrolling in this course today!"
]
},
{ "id": 2,
"Title": "Jose Portilla",
"Description": "Learning Python for Data Analysis and Visualization" ,
"Image":"https://img-c.udemycdn.com/course/750x422/396876_cc92_7.jpg",
"title": "Learning Python for Data Analysis and Visualization",
"description": "Learn python and how to use it to analyze,visualize and present data. Includes tons of sample code and hours of video!",
"link": "/course/learning-python-for-data-analysis-and-visualization/",
"img": "https://img-c.udemycdn.com/course/240x135/396876_cc92_7.jpg",
"instructors": [
{
"id": "l7s3zcw4u2b2fu5fjn",
"name": "Jose Portilla",
"job": "Head of Data Science at Pierian Training",
"img": "https://img-c.udemycdn.com/user/200_H/9685726_67e7_4.jpg",
"rating": 4.6,
"reviews": 939702,
"students": 3009879,
"courses": 54,
"description": "Jose Marcial Portilla has a BS and MS in Mechanical Engineering from Santa Clara University and years of experience as a professional instructor and trainer for Data Science, Machine Learning and Python Programming. He has publications and patents in various fields such as microfluidics, materials science, and data science. Over the course of his career he has developed a skill set in analyzing data and he hopes to use his experience in teaching and data science to help other people learn the power of programming, the ability to analyze data, and the skills needed to present the data in clear and beautiful visualizations. Currently he works as the Head of Data Science for Pierian Training and provides in-person data science and python programming training courses to employees working at top companies, including General Electric, Cigna, The New York Times, Credit Suisse, McKinsey and many more. Feel free to check out the website link to find out more information about training offerings.\n\nShow more"
}
],
"rating": 4.4,
"enrollments": 191470,
"totalreviews": 18113,
"price": 1599.99,
"oldprice": 1599.99,
"lastupdated": "9/2019",
"lectures": [
{
"id": "l7s3zcsf3wf8spurcy4",
"title": "Intro to Course and Python",
"lessons": [
"Course Intro",
"Course FAQs"
]
},
{
"id": "l7s3zcsq698q4p9xsau",
"title": "Setup",
"lessons": [
"Installation Setup and Overview",
"IDEs and Course Resources",
"iPython/Jupyter Notebook Overview"
]
},
{
"id": "l7s3zct0cqe1q6ormp9",
"title": "Learning Numpy",
"lessons": [
"Intro to numpy",
"Creating arrays",
"Using arrays and scalars",
"Indexing Arrays",
"Array Transposition",
"Universal Array Function",
"Array Processing",
"Array Input and Output"
]
},
{
"id": "l7s3zct9mrmiu66t2w",
"title": "Intro to Pandas",
"lessons": [
"Series",
"DataFrames",
"Index objects",
"Reindex",
"Drop Entry",
"Selecting Entries",
"Data Alignment",
"Rank and Sort",
"Summary Statistics",
"Missing Data",
"Index Hierarchy"
]
},
{
"id": "l7s3zcti11pb3wo1zdh8",
"title": "Working with Data: Part 1",
"lessons": [
"Reading and Writing Text Files",
"JSON with Python",
"HTML with Python",
"Microsoft Excel files with Python"
]
},
{
"id": "l7s3zctrijboocng949",
"title": "Working with Data: Part 2",
"lessons": [
"Merge",
"Merge on Index",
"Concatenate",
"Combining DataFrames",
"Reshaping",
"Pivoting",
"Duplicates in DataFrames",
"Mapping",
"Replace",
"Rename Index",
"Binning",
"Outliers",
"Permutation"
]
},
{
"id": "l7s3zctzgg04qi94y1m",
"title": "Working with Data: Part 3",
"lessons": [
"GroupBy on DataFrames",
"GroupBy on Dict and Series",
"Aggregation",
"Splitting Applying and Combining",
"Cross Tabulation"
]
},
{
"id": "l7s3zcu7or65i7167o",
"title": "Data Visualization",
"lessons": [
"Installing Seaborn",
"Histograms",
"Kernel Density Estimate Plots",
"Combining Plot Styles",
"Box and Violin Plots",
"Regression Plots",
"Heatmaps and Clustered Matrices"
]
},
{
"id": "l7s3zcufid6sqeliin",
"title": "Example Projects.",
"lessons": [
"Data Projects Preview",
"Intro to Data Projects",
"Titanic Project - Part 1",
"Titanic Project - Part 2",
"Titanic Project - Part 3",
"Titanic Project - Part 4",
"Intro to Data Project - Stock Market Analysis",
"Data Project - Stock Market Analysis Part 1",
"Data Project - Stock Market Analysis Part 2",
"Data Project - Stock Market Analysis Part 3",
"Data Project - Stock Market Analysis Part 4",
"Data Project - Stock Market Analysis Part 5",
"Data Project - Intro to Election Analysis",
"Data Project - Election Analysis Part 1",
"Data Project - Election Analysis Part 2",
"Data Project - Election Analysis Part 3",
"Data Project - Election Analysis Part 4"
]
},
{
"id": "l7s3zcuri5k42cz499",
"title": "Machine Learning",
"lessons": [
"Introduction to Machine Learning with SciKit Learn",
"Linear Regression Part 1",
"Linear Regression Part 2",
"Linear Regression Part 3",
"Linear Regression Part 4",
"Logistic Regression Part 1",
"Logistic Regression Part 2",
"Logistic Regression Part 3",
"Logistic Regression Part 4",
"Multi Class Classification Part 1 - Logistic Regression",
"Multi Class Classification Part 2 - k Nearest Neighbor",
"Support Vector Machines Part 1",
"Support Vector Machines - Part 2",
"Naive Bayes Part 1",
"Naive Bayes Part 2",
"Decision Trees and Random Forests",
"Natural Language Processing Part 1",
"Natural Language Processing Part 2",
"Natural Language Processing Part 3",
"Natural Language Processing Part 4"
]
},
{
"id": "l7s3zcv0vx2pt8va3v",
"title": "Appendix: Statistics Overview",
"lessons": [
"Intro to Appendix B",
"Discrete Uniform Distribution",
"Continuous Uniform Distribution",
"Binomial Distribution",
"Poisson Distribution",
"Normal Distribution",
"Sampling Techniques",
"T-Distribution",
"Hypothesis Testing and Confidence Intervals",
"Chi Square Test and Distribution",
"Bayes Theorem"
]
},
{
"id": "l7s3zcv8ytsg7svfmzs",
"title": "Appendix: SQL and Python",
"lessons": [
"Introduction to SQL with Python",
"SQL - SELECT,DISTINCT,WHERE,AND & OR",
"SQL WILDCARDS, ORDER BY, GROUP BY and Aggregate Functions"
]
},
{
"id": "l7s3zcvgkkewl8b743h",
"title": "Appendix: Web Scraping with Python",
"lessons": [
"Web Scraping Part 1",
"Web Scraping Part 2"
]
},
{
"id": "l7s3zcvoq1wcbpcqk5a",
"title": "Appendix: Python Special Offers",
"lessons": [
"Python Overview Part 1",
"Python Overview Part 2",
"Python Overview Part 3"
]
},
{
"id": "l7s3zcvwf6rzamp0hm7",
"title": "BONUS SECTION: THANK YOU!",
"lessons": [
"Bonus Lecture"
]
}
],
"reviewers": [
{
"id": "l7s3zcw452qs8u2c6cj",
"name": "Bryan P.",
"initials": "BP",
"rating": 2.5,
"timeago": "3 weeks ago",
"review": "His voice in each video can either be audible or barely audible. If it was consistent then it would be fine, but I have to keep adjusting the volume."
},
{
"id": "l7s3zcw5ir02k6j3fu",
"name": "Redon D.",
"initials": "RD",
"rating": 4,
"timeago": "3 weeks ago",
"review": "I found the course to be amazing, the instructor was clear and easy to follow. The instructions were easily available and covered almost every thing I could have asked for. The Q&A section was helpful as well. One negative aspect was that it did not exhaust all the topic especially from the data visualization were matplotlib did not even have a section."
},
{
"id": "l7s3zcw5fe6kf960ek",
"name": "Tanishq",
"initials": "T",
"rating": 5,
"timeago": "2 months ago",
"review": "course is good but please update these course because many of the code which is being used has been updated and some of the code doesn't work because of updating please mention these kind of thing while purchase because if you provide a updated course with 500 i thing you sale will boost up may be you ca raise price around 1500 rs we can spend that much of money for knowledge"
},
{
"id": "l7s3zcw5qcgink5cr49",
"name": "Jerell S.",
"initials": "JS",
"rating": 5,
"timeago": "3 months ago",
"review": "Instructor was very clear and knowledgeable. I was able to understand all the concepts and apply them. The course was a little outdated but I was still able to get almost everything to work."
},
{
"id": "l7s3zcw5mhpwg46m0m",
"name": "Sechaba M.",
"initials": "SM",
"rating": 4.5,
"timeago": "5 months ago",
"review": "Really enjoyed the course, being a total beginner it really set a good foundation."
},
{
"id": "l7s3zcw5h4vvlba8kbk",
"name": "Mouayad M.",
"initials": "MM",
"rating": 2,
"timeago": "a month ago",
"review": "Felt like many code parts / concepts were skimmed over with no explanation whatsoever - I understand that many concepts were previously explained or encouraged to further explore by yourself, however some code parts should've been atleast explained to some degree. Big fan of Jose in general from this other courses, I think he's a great tutor"
},
{
"id": "l7s3zcw5qstgkkxd96",
"name": "Justin M.",
"initials": "JM",
"rating": 5,
"timeago": "4 weeks ago",
"review": "Awesome teacher! I'm enjoying the presented course material and learning a lot. Thank you Jose !!!!!"
},
{
"id": "l7s3zcw5quz4r04xm",
"name": "Ferdinand I.",
"initials": "FI",
"rating": 5,
"timeago": "a month ago",
"review": "I haven't even finished the course actually, but I must commend its so so amazing and its worth it."
},
{
"id": "l7s3zcw5q8hjxhvdiz",
"name": "Nathan K.",
"initials": "NK",
"rating": 1,
"timeago": "3 months ago",
"review": "Very dry lectures, he talks about code without explaining what each means. Plus a lot of the code is out of date and invalid. There are also loads of typos in the Jupyter Notebook that just make the course seem sloppy. Would definitely not recommend buying this one in 2022."
},
{
"id": "l7s3zcw5wi02loe0cjp",
"name": "Bhuvana R.",
"initials": "BR",
"rating": 3,
"timeago": "3 months ago",
"review": "Lots of codes relate to Python2 and it has been very difficult to search constantly search for the replacement for the deprecated commands"
},
{
"id": "l7s3zcw5vl43we0p4k",
"name": "Abraham B.",
"initials": "",
"rating": 4,
"timeago": "3 months ago",
"review": "many of the syntax are old...may renew them :D"
},
{
"id": "l7s3zcw50y3zntnco1b",
"name": "Ilaria B.",
"initials": "IB",
"rating": 5,
"timeago": "4 months ago",
"review": "Yes, courses broken down in small digestible videos, easy to follow along"
}
],
"requirements": [
"Basic math skills.",
"Basic to Intermediate Python Skills",
"Have a computer (either Mac, Windows, or Linux)",
"Desire to learn!"
],
"descriptions": [
"\n",
"PLEASE READ BEFORE ENROLLING: ",
"1.) THERE IS AN UPDATED VERSION OF THIS COURSE: ",
"\"PYTHON FOR DATA SCIENCE AND MACHINE LEARNING BOOTCAMP\" ",
"2.) IF YOU ARE A COMPLETE BEGINNER IN PYTHON-CHECK OUT MY OTHER COURSE \"COMPLETE PYTHON MASTERCLASS JOURNEY\"!",
"\n",
"CLICK ON MY PROFILE TO FIND IT. (PLEASE WATCH THE FIRST PROMO VIDEO ON THIS PAGE FOR MORE INFO)",
"**********************************************************************************************************",
"\n",
"This course will give you the resources to learn python and effectively use it analyze and visualize data! Start your career in Data Science!",
" You'll get a full understanding of how to program with Python and how to use it in conjunction with scientific computing modules and libraries to analyze data. ",
" You will also get lifetime access to over 100 example python code notebooks, new and updated videos, as well as future additions of various data analysis projects that you can use for a portfolio to show future employers! ",
" By the end of this course you will: ",
" - Have an understanding of how to program in Python. ",
" - Know how to create and manipulate arrays using numpy and Python. ",
" - Know how to use pandas to create and analyze data sets. ",
" - Know how to use matplotlib and seaborn libraries to create beautiful data visualization. ",
" - Have an amazing portfolio of example python data analysis projects! ",
"- Have an understanding of Machine Learning and SciKit Learn!",
" With 100+ lectures and over 20 hours of information and more than 100 example python code notebooks, you will be excellently prepared for a future in data science! "
]
},
{
"id": 3,
"Title": "Edwin Diaz, Coding Faculty Solutions",
"Description": "Python for Beginners - Learn Programming from scratch" ,
"Image":"https://img-c.udemycdn.com/course/750x422/405878_e5a0_3.jpg",
"title": "Python for Beginners - Learn Programming from scratch",
"description": "Python For Beginners : This course is meant for absolute beginners in programming or in python.",
"link": "/course/python-for-beginners-learn-programming-from-scratch/",
"img": "https://img-c.udemycdn.com/course/240x135/405878_e5a0_3.jpg",
"instructors": [
{
"id": "l7s770fptphb6en0dz",
"name": "Edwin Diaz",
"job": "Web Developer & Premium Instructor - 800,000 students",
"img": "https://img-c.udemycdn.com/user/200_H/6772884_fcfc_2.jpg",
"rating": 4.4,
"reviews": 123352,
"students": 828895,
"courses": 47,
"description": "Edwin Diaz is a software and web technologies engineer, a life coach trainer who is also a serial entrepreneur with multiple online businesses, ranging from online jewelry shops, affiliate websites, application development and consultations services, personal online schools, etc.\n\nWith over one million students, and clients growing by the thousands a day, Mr. Diaz lets the numbers speak for themselves.\n\nFounding multiple online companies have allowed Mr. Diaz to have the time to teach others. He currently teaches web technologies on different online platforms. He also teaches life coaching sessions to help others achieve a high level of success in many areas of life.\n\nFor Mr. Diaz, there is nothing more rewarding than helping others become successful.\n\nHis ability to transmit energy, enthusiasm, and complex knowledge allows him to do what he does best \"Teach\".\n\nTeaching is not just a job for Mr. Diaz but a way of life that continues to flourish every single day.\n\nApart from teaching he enjoys spending part of his time with his family.\n\nShow more"
},
{
"id": "l7s770fpn1hmtlibggm",
"name": "Coding Faculty Solutions",
"job": "Coding Faculty",
"img": "https://img-c.udemycdn.com/user/200_H/34613172_6fb4.jpg",
"rating": 4.4,
"reviews": 115054,
"students": 737536,
"courses": 38,
"description": "Coding Faculty creates high quality technology training content. We aim to teach technology the right way but at the same time putting emphasis on each of our students. We are a growing team of professional trainers who love our work but overall helping our students reach their maximum potential in their career."
}
],
"rating": 4.4,
"enrollments": 7640,
"totalreviews": 1896,
"price": 269.99,
"oldprice": 269.99,
"lastupdated": "5/2022",
"lectures": [
{
"id": "l7s770fonc84i1cx60s",
"title": "Programming fundamentals",
"lessons": [
"Introduction",
"What is programming?",
"What is source code?",
"Compile VS Interpreted Languages",
"Strings and numbers",
"Variables",
"Lists, Arrays or Collections",
"Conditional Code - If statements",
"Loops",
"Functions"
]
},
{
"id": "l7s770foixadgdqxean",
"title": "Getting Started with Python",
"lessons": [
"intro to getting started",
"What is Python?",
"Installing Python",
"Running Python IDLE and online",
"Installing IDE"
]
},
{
"id": "l7s770fprknvl22m34o",
"title": "Python Basics",
"lessons": [
"Intro to python basics",
"Exercise files",
"Strings & print function",
"Numbers / Math",
"Variables",
"Lists",
"Tuples",
"Dictionaries"
]
},
{
"id": "l7s770fpj5r8lfezyn",
"title": "Conditional structures",
"lessons": [
"intro to conditional code",
"If Statements",
"While Loop",
"For loop",
"Break and Continue"
]
},
{
"id": "l7s770fpefcxsncb5up",
"title": "Functions",
"lessons": [
"intro to functions",
"Custom Functions & arguments",
"Functions with arguments",
"Function variable scopes",
"Function return",
"Functions with flexible arguments",
"Unpacking",
"Modules",
"Built in functions"
]
},
{
"id": "l7s770fpuosvymyzu8",
"title": "Working with files",
"lessons": [
"Intro to working files",
"Opening / Creating files / Writing files",
"File reading",
"Renaming files",
"Deleting files"
]
}
],
"reviewers": [
{
"id": "l7s770fp9uswo20bcv7",
"name": "Ashu C.",
"initials": "AC",
"rating": 3,
"timeago": "3 weeks ago",
"review": "i am a homemaker learning languages on udemy hoping for a better future , i hope this will help me in achieving what i want . I am so far able to understand lecture let 's see what comes ahead ."
},
{
"id": "l7s770fpt3059oyashm",
"name": "Senduran B.",
"initials": "SB",
"rating": 5,
"timeago": "3 weeks ago",
"review": "Edwin is a wonderful teacher! His lectures are very short but also informative and really encourages you to code along with him. The lectures were not only easy to follow but Edwin himself was an engaging lecturer that made it really easy to pay attention. His words of encouragement were a nice bonus. I super recommend this course to anyone who wants to get started in Python"
},
{
"id": "l7s770fp7l68uptw09j",
"name": "Mike M.",
"initials": "MM",
"rating": 5,
"timeago": "3 weeks ago",
"review": "This was a great learning experience. It was fun and I learned a lot."
},
{
"id": "l7s770fpdvxmhkfcleo",
"name": "Chad F.",
"initials": "CF",
"rating": 4.5,
"timeago": "2 months ago",
"review": "Edwin is good instructor. I'll be referring back to his lessons and my notes as I really learn to code Python by practicing it over and over -- Edwin is right that is the only way! I really enjoyed this course and it will be useful to me."
},
{
"id": "l7s770fpd3c063mj0te",
"name": "Chetan P.",
"initials": "CP",
"rating": 4,
"timeago": "3 months ago",
"review": "I expect how to take input at runtime, this is also one of the basic part which has not shown. To execute addition of two values, I want to take inpute at runtime which is not included here. That will add extra benefit as we have included file handling and not runtime input."
},
{
"id": "l7s770fpa6b2c2gialc",
"name": "Luis A.",
"initials": "LA",
"rating": 5,
"timeago": "3 months ago",
"review": "This course was amazing at teaching the basics to someone with little to no knowledge of coding. I am extremely pleased with what I learned in such a short amount of time. Definitely recommend this course for any complete beginners at coding and/or python."
},
{
"id": "l7s770fppaoybdtabfr",
"name": "Jacob E.",
"initials": "JE",
"rating": 4.5,
"timeago": "a month ago",
"review": "This course is really solid because I can move at my own pace and the instructor is clear and takes pride in the material."
},
{
"id": "l7s770fpedhpyf6uet9",
"name": "Julia Andema A.",
"initials": "JA",
"rating": 5,
"timeago": "2 months ago",
"review": "I like the fact that the lecturer is explaining everything in detail so that we know the basics and we are comfortable with starting our own programming."
},
{
"id": "l7s770fp2wk8lc3z6ud",
"name": "Davin S.",
"initials": "DS",
"rating": 4.5,
"timeago": "2 months ago",
"review": "Edwin does a great job introducing the tools to get started, resources for help, and walking you through short exercises for an introduction to coding in python. As a complete beginner I appreciated his methods that allowed me to follow along, stop and replay in short sections, completing my exercise files at my own pace. Edwin's friendly and encouraging approach was great. Thanks!"
},
{
"id": "l7s770fp1za7aldx40h",
"name": "Sagnik B.",
"initials": "SB",
"rating": 4,
"timeago": "a month ago",
"review": "Yea in simple terms I really enjoyed this one and it was pretty easy to grab the concepts as a beginner, especially based on the way our instructor explained."
},
{
"id": "l7s770fpbccykhtr0zd",
"name": "Maria Ovais G.",
"initials": "MG",
"rating": 5,
"timeago": "3 months ago",
"review": "I attempt my first course which I completed and that is my great experience. Learned a lot about python as a beginner."
},
{
"id": "l7s770fpvmqquy0e5sj",
"name": "Gaurav S.",
"initials": "GS",
"rating": 4,
"timeago": "2 months ago",
"review": "Good introductory course, especially for those such as myself, who have absolutely no prior knowledge of programming. Very simple to follow.\n\nAs a suggestion, it would have been nice to see more live examples (i.e. actual usage) of the commands. For example, i still don't understand where and how to use the various Functions!\n\nthanks Edwin"
}
],
"requirements": [
"NO programming knowledge required"
],
"descriptions": [
"NEW PYTHON CODE ",
"This python for beginners course is geared to students who want to know how python works and also to those totally new to programming.",
"The python language has very simple syntax(way to write it) to learn and it is one of the most powerful languages to learn since it can used for a variety of things.",
"Here are some:",
"\n",
"Jobs in this field are really lucrative and knowing this language will give you an edge when finding a job and making a lot more money than other developers; python developers are not as many as in other languages since people think is hard. Python is super easy to learn but very powerful since it contains many possibilities.\n",
"Python is growing faster and faster everyday and it has surpassed many other languages over the years for a lot of reasons, which you will find out soon enough.",
"------------------------------------------------------------------------------",
"Why take this course?",
"This course starts with explaining what programming really is? Have you ever wondered how things actually work in a program?",