This repository was archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcoursera-course-detail-data.csv
We can't make this file beautiful and searchable because it's too large.
3851 lines (3851 loc) · 609 KB
/
coursera-course-detail-data.csv
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
,Name,Url,Rating,Difficulty,Tags
0,"""Making"" Progress Teach-Out",https://coursera.org/learn/makingprogress,None,Beginner Level,"['Social Sciences', 'Governance and Society']"
1,(Business Writing) الكتابة في مجال الأعمال,https://coursera.org/learn/writing-for-business-ar,None,Beginner Level,"['Business', 'Business Essentials']"
2,(Giving Helpful Feedback) إعطاء الملاحظات المفيدة,https://coursera.org/learn/feedback-ar,4.8,None,"['Business', 'Business Essentials']"
3,(Successful Presentation) العرض التقديمي الناجح,https://coursera.org/learn/presentation-skills-ar,4.9,Beginner Level,"['Business', 'Business Essentials']"
4,.Net平台下的软件开发技术毕业项目,https://coursera.org/learn/net-ruanjian-kaifa-biye,None,None,"['Computer Science', 'Software Development']"
5,1.- El Cálculo - Modelo Lineal,https://coursera.org/learn/calculo-1,4.7,None,"['Math and Logic', 'Math and Logic']"
6,2.- El Cálculo - Modelo Cuadrático,https://coursera.org/learn/calculo-2,4.7,None,"['Math and Logic', 'Math and Logic']"
7,20世纪西方音乐 Western Music in the 20th Century,https://coursera.org/learn/20cnwm,4.3,Beginner Level,"['Arts and Humanities', 'Music and Art']"
8,3-Axis Machining with Autodesk Fusion 360,https://coursera.org/learn/3-axis-machining-autodesk-fusion-360,5,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
9,3.- El Cálculo - Modelo Cúbico,https://coursera.org/learn/calculo-3,4.7,None,"['Math and Logic', 'Math and Logic']"
10,3D Art and Audio Pipeline,https://coursera.org/learn/3d-art-and-audio-pipeline,4.3,Intermediate Level,"['Computer Science', 'Software Development']"
11,3D CAD Application,https://coursera.org/learn/3d-cad-application,4.9,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
12,3D CAD Fundamental,https://coursera.org/learn/3d-cad-fundamental,4.8,Beginner Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
13,3D Data Visualization for Science Communication,https://coursera.org/learn/data-visualization-science-communication,None,Beginner Level,"['Data Science', 'Data Analysis']"
14,3D Graphics in Android: Sensors and VR,https://coursera.org/learn/3d-graphics-android-sensors-vr,None,Advanced Level,"['Computer Science', 'Mobile and Web Development']"
15,Atención prehospitalaria del ictus agudo y selección de pacientes para tratamiento endovascular con la escala RACE,https://coursera.org/learn/ictus-agudo-escala-race,4.8,Intermediate Level,"['Health', 'Patient Care']"
16,Brand & Content Marketing,https://coursera.org/learn/brand-and-content-marketing,4.5,Intermediate Level,"['Arts and Humanities', 'History']"
17," Comercio, Inmigración y Tipos de Cambio en un Mundo Globalizado",https://coursera.org/learn/comercio-inmigracion-tipos-de-cambio,5,Beginner Level,"['Social Sciences', 'Economics']"
18,FPGA computing systems: Background knowledge and introductory materials,https://coursera.org/learn/fpga-intro,4.6,Beginner Level,"['Computer Science', 'Design and Product']"
19,Future Healthcare Payment Models,https://coursera.org/learn/healthcare-payment-models,4.4,Beginner Level,"['Health', 'Healthcare Management']"
20,Введение в iOS-разработку,https://coursera.org/learn/ios-razrabotka-na-swift,4.4,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
21,Geospatial and Environmental Analysis,https://coursera.org/learn/spatial-analysis,4.8,Intermediate Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
22,Combinatorics and Probability,https://coursera.org/learn/combinatorics,4.6,Beginner Level,"['Computer Science', 'Algorithms']"
23,Introducción a la Contabilidad Financiera,https://coursera.org/learn/wharton-contabilidad-financiera,4.6,None,"['Business', 'Business Strategy']"
24,"Surveillance Systems: Analysis, Dissemination, and Special Systems",https://coursera.org/learn/epidemiology-surveillance-systems-analysis,None,Beginner Level,"['Health', 'Public Health']"
25,Базы данных (Databases),https://coursera.org/learn/data-bases-intr,4.3,None,"['Data Science', 'Data Analysis']"
26,Finance for Everyone: Debt,https://coursera.org/learn/finance-debt,4.7,None,"['Business', 'Finance']"
27,Managing Big Data with MySQL,https://coursera.org/learn/analytics-mysql,4.7,None,"['Data Science', 'Data Analysis']"
28,Managing an Agile Team,https://coursera.org/learn/uva-darden-agile-team-management,4.7,None,"['Computer Science', 'Design and Product']"
29,ООП и паттерны проектирования в Python,https://coursera.org/learn/oop-patterns-python,3.8,Intermediate Level,"['Computer Science', 'Software Development']"
30,Introduction to advanced tomography,https://coursera.org/learn/cinemaxe,None,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
31,Launching into Machine Learning en Français,https://coursera.org/learn/launching-machine-learning-fr,None,Intermediate Level,"['Data Science', 'Machine Learning']"
32,Creative Programming for Digital Media & Mobile Apps,https://coursera.org/learn/digitalmedia,4.3,None,"['Computer Science', 'Software Development']"
33,Spanish for Successful Communication in Healthcare Settings,https://coursera.org/learn/spanish-in-healthcare-settings,4.8,Intermediate Level,"['Health', 'Patient Care']"
34,Digital Product Management: Modern Fundamentals,https://coursera.org/learn/uva-darden-digital-product-management,4.7,Beginner Level,"['Business', 'Leadership and Management']"
35,Digital Competition in Financial Services,https://coursera.org/learn/digital-competition-financial-services,4.6,Beginner Level,"['Business', 'Business Strategy']"
36,Mathematics for Machine Learning: PCA,https://coursera.org/learn/pca-machine-learning,4,Intermediate Level,"['Data Science', 'Machine Learning']"
37,"Programming Foundations with JavaScript, HTML and CSS",https://coursera.org/learn/duke-programming-web,4.6,Beginner Level,"['Computer Science', 'Mobile and Web Development']"
38,Погружение в Python,https://coursera.org/learn/diving-in-python,4.7,Intermediate Level,"['Computer Science', 'Software Development']"
39,Probabilistic Graphical Models 2: Inference,https://coursera.org/learn/probabilistic-graphical-models-2-inference,4.6,Advanced Level,"['Data Science', 'Machine Learning']"
40,Evidence-based Toxicology,https://coursera.org/learn/evidence-based-toxicology,4.8,Beginner Level,"['Health', 'Basic Science']"
41,Identifying Social Entrepreneurship Opportunities,https://coursera.org/learn/social-entrepreneurship-opportunities,4.6,Beginner Level,"['Business', 'Entrepreneurship']"
42,Launching into Machine Learning,https://coursera.org/learn/launching-machine-learning,4.6,Intermediate Level,"['Data Science', 'Machine Learning']"
43,Global Strategy I: How The Global Economy Works,https://coursera.org/learn/global-strategy,4.9,None,"['Business', 'Business Strategy']"
44,Quantitative Research,https://coursera.org/learn/quantitative-research,4.2,Intermediate Level,"['Business', 'Marketing']"
45,Sprachtechnologie in den Digital Humanities,https://coursera.org/learn/digital-humanities,4.8,Beginner Level,"['Data Science', 'Data Analysis']"
46,Learn to Program: The Fundamentals,https://coursera.org/learn/learn-to-program,4.8,Beginner Level,"['Computer Science', 'Software Development']"
47,Evaluación educativa del y para el aprendizaje en educación superior,https://coursera.org/learn/evaluacion-educativa,4.8,Beginner Level,"['Social Sciences', 'Education']"
48,Social Computing,https://coursera.org/learn/social-computing,4.4,None,"['Social Sciences', 'Governance and Society']"
49,Image and Video Processing: From Mars to Hollywood with a Stop at the Hospital,https://coursera.org/learn/image-processing,4.7,None,"['Math and Logic', 'Math and Logic']"
50,Getting started in cryo-EM,https://coursera.org/learn/cryo-em,4.9,None,"['Health', 'Research']"
51,Forensic Accounting and Fraud Examination,https://coursera.org/learn/forensic-accounting,4.7,None,"['Business', 'Finance']"
52,Compra programática de medios: Publicidad online en tiempo real,https://coursera.org/learn/compra-programatica,4.7,Beginner Level,"['Business', 'Marketing']"
53,Strategic Business Management - Macroeconomics,https://coursera.org/learn/strategic-business-management-macroeconomics,4.8,Beginner Level,"['Business', 'Business Strategy']"
54,Data in Database,https://coursera.org/learn/data-in-database,3.6,Intermediate Level,"['Information Technology', 'Data Management']"
55,Exploring and Preparing your Data with BigQuery 日本語版,https://coursera.org/learn/gcp-exploring-preparing-data-bigquery-jp,None,Beginner Level,"['Information Technology', 'Data Management']"
56,Competencias digitales. Bases de datos: Access,https://coursera.org/learn/competencias-digitales-access,4.7,Beginner Level,"['Personal Development', 'Personal Development']"
57,世界空间、法国视角下的国际研究,https://coursera.org/learn/espace-mondial-cn,4.7,Beginner Level,"['Social Sciences', 'Governance and Society']"
58,Climate Change and Water in Mountains: A Global Concern,https://coursera.org/learn/climate-changes-mountains-water,4.5,Intermediate Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
59,Introduction to Systems Biology,https://coursera.org/learn/systems-biology,4.3,None,"['Health', 'Basic Science']"
60,"Tropical Parasitology: Protozoans, Worms, Vectors and Human Diseases",https://coursera.org/learn/parasitology,4.7,Intermediate Level,"['Health', 'Basic Science']"
61,Managerial Accounting Fundamentals,https://coursera.org/learn/uva-darden-managerial-accounting,4.8,Beginner Level,"['Business', 'Finance']"
62,The Strategy of Content Marketing,https://coursera.org/learn/content-marketing,4.5,Intermediate Level,"['Business', 'Marketing']"
63,Lesson | Get Ready for the Interview,https://coursera.org/learn/lesson-get-ready-for-the-interview,None,None,"['Language Learning', 'Learning English']"
64,The Science of Training Young Athletes,https://coursera.org/learn/youth-sports,4.8,Beginner Level,"['Personal Development', 'Personal Development']"
65,Build Your First Android App (Project-Centered Course),https://coursera.org/learn/android-app,4.3,None,"['Computer Science', 'Mobile and Web Development']"
66,Avatar Psychology for Designers,https://coursera.org/learn/avatar-psychology-for-designers,None,Beginner Level,"['Computer Science', 'Software Development']"
67,Building Resilient Streaming Analytics Systems on GCP,https://coursera.org/learn/streaming-analytics-systems-gcp,4.8,Intermediate Level,"['Information Technology', 'Cloud Computing']"
68,Introduction to Applied Machine Learning,https://coursera.org/learn/machine-learning-applied,4.7,Intermediate Level,"['Data Science', 'Machine Learning']"
69,Introduction to Climate Change and Health,https://coursera.org/learn/introduction-climate-change-health,4.7,Beginner Level,"['Health', 'Public Health']"
70,Экономика предприятия,https://coursera.org/learn/ekonomika-predpriyatiya,4.5,None,"['Business', 'Business Essentials']"
71,Organic Solar Cells - Theory and Practice,https://coursera.org/learn/solar-cell,4.6,None,"['Physical Science and Engineering', 'Chemistry']"
72,Introducción a la Calidad,https://coursera.org/learn/gestion-de-productividad,4.6,None,"['Business', 'Business Strategy']"
73,Analytic Combinatorics,https://coursera.org/learn/analytic-combinatorics,4.7,Intermediate Level,"['Math and Logic', 'Math and Logic']"
74,Supply chain management: Be global,https://coursera.org/learn/supply-chain-management-global,4.8,Beginner Level,"['Business', 'Business Strategy']"
75,Практики управленческой аналитики в MS Excel,https://coursera.org/learn/praktiki-upravlencheskoy-analitiki-excel,4.8,Intermediate Level,"['Business', 'Business Essentials']"
76,Introducción al mundo de las negociaciones,https://coursera.org/learn/estrategias-de-negociacion,4.8,None,"['Business', 'Business Essentials']"
77,Desenvolvimento Ágil com Padrões de Projeto,https://coursera.org/learn/desenvolvimento-agil-com-padroes-de-projeto,4.7,Intermediate Level,"['Computer Science', 'Software Development']"
78,CAPSTONE: Your Leadership Challenge,https://coursera.org/learn/leadership-challenge,4.5,None,"['Business', 'Leadership and Management']"
79,Learning Chinese : Start From Scratch (零到一學中文),https://coursera.org/learn/learn-chinese-mandarin,4.5,Beginner Level,"['Language Learning', 'Other Languages']"
80,Foundations of Teaching for Learning: Planning for Teaching and Learning,https://coursera.org/learn/teaching-plan,4.8,None,"['Social Sciences', 'Education']"
81,"The Modern World, Part One: Global History from 1760 to 1910",https://coursera.org/learn/modern-world,4.8,Beginner Level,"['Arts and Humanities', 'History']"
82,Effective Problem-Solving and Decision-Making,https://coursera.org/learn/problem-solving,4.3,None,"['Business', 'Business Essentials']"
83,Health for All Through Primary Health Care,https://coursera.org/learn/health-for-all,4.7,None,"['Health', 'Patient Care']"
84,Обобщенные линейные модели,https://coursera.org/learn/obobshchennye-linejnye-modeli,None,Intermediate Level,"['Data Science', 'Probability and Statistics']"
85,Introduction to Complex Analysis,https://coursera.org/learn/complex-analysis,4.8,Intermediate Level,"['Math and Logic', 'Math and Logic']"
86,Organizational Design and Management,https://coursera.org/learn/organizational-design-management,4.7,Beginner Level,"['Business', 'Business Strategy']"
87,Internet of Things: Communication Technologies,https://coursera.org/learn/internet-of-things-communication,4.5,None,"['Computer Science', 'Computer Security and Networks']"
88,Global Environmental Management,https://coursera.org/learn/global-environmental-management,4.6,Intermediate Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
89,K-12 Blended & Online Learning,https://coursera.org/learn/k-12-online-education,4.7,None,"['Social Sciences', 'Education']"
90,Inglés Empresarial: Gestión y Liderazgo,https://coursera.org/learn/ingles-empresarial-gestion-liderazgo,4.7,None,"['Language Learning', 'Learning English']"
91,خيارات لسانية لمحترفي الإعلام باللغة العربية,https://coursera.org/learn/arabic-for-media,4.9,Beginner Level,"['Language Learning', 'Learning English']"
92,Introduction to Deep Learning,https://coursera.org/learn/intro-to-deep-learning,4.6,Advanced Level,"['Data Science', 'Machine Learning']"
93,Creative Writing: The Craft of Style,https://coursera.org/learn/craft-of-style,4.7,None,"['Arts and Humanities', 'Music and Art']"
94,Брендинг в инновациях - новая коммуникационная реальность,https://coursera.org/learn/brending-v-innovaciyah,5,None,"['Business', 'Marketing']"
95,Recommender Systems: Evaluation and Metrics,https://coursera.org/learn/recommender-metrics,4.3,None,"['Data Science', 'Machine Learning']"
96,Giving 2.0: The MOOC,https://coursera.org/learn/philanthropist,4.6,None,"['Business', 'Business Strategy']"
97,Lesson | Business English Skills: Introducing Yourself in Business Settings,https://coursera.org/learn/lesson-business-english-skills-introducing-yourself-in-business-settings,None,Intermediate Level,"['Language Learning', 'Learning English']"
98,Survey analysis to Gain Marketing Insights,https://coursera.org/learn/survey-analysis-marketing-insights,4.4,None,"['Business', 'Marketing']"
99,Construction Project Management,https://coursera.org/learn/construction-project-management,4.8,Beginner Level,"['Business', 'Business Strategy']"
100,Ignite Your Everyday Creativity,https://coursera.org/learn/ignite-creativity,4.4,None,"['Personal Development', 'Personal Development']"
101,Logic for Economists,https://coursera.org/learn/logic-for-economists,4.4,Advanced Level,"['Math and Logic', 'Math and Logic']"
102,"Introduction to the Nonprofit Sector, Nonprofit Organizations, Nonprofit Leadership and Governance",https://coursera.org/learn/nonprofit-organizations,4.4,None,"['Business', 'Leadership and Management']"
103,Negocios Internacionales I,https://coursera.org/learn/negocios-internacionales,4.7,None,"['Business', 'Business Strategy']"
104,Физика в опытах. Часть 3. Колебания и молекулярная физика,https://coursera.org/learn/molekulyarnaya-fizika,4.8,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
105,Mathematical Biostatistics Boot Camp 1,https://coursera.org/learn/biostatistics,4.5,None,"['Math and Logic', 'Math and Logic']"
106,Introduction to Research for Essay Writing,https://coursera.org/learn/introduction-to-research-for-essay-writing,4.7,None,"['Arts and Humanities', 'Music and Art']"
107,Intelligence Tools for the Digital Age,https://coursera.org/learn/intelligence-tools-digital-age,4.6,Beginner Level,"['Business', 'Leadership and Management']"
108,Tinkering Fundamentals: Circuits,https://coursera.org/learn/tinkering-circuits,4.7,Beginner Level,"['Personal Development', 'Personal Development']"
109,Marketing Internacional en Asia,https://coursera.org/learn/marketing-internacional-asia,4.8,Beginner Level,"['Business', 'Marketing']"
110,Foundations of Public Health Practice: Behaviour & Behaviour Change,https://coursera.org/learn/behaviour-change-in-public-health,None,Advanced Level,"['Health', 'Public Health']"
111,"Designing, Running, and Analyzing Experiments",https://coursera.org/learn/designexperiments,3.7,Intermediate Level,"['Computer Science', 'Design and Product']"
112,Контекстная реклама. Google AdWords,https://coursera.org/learn/kontextnaya-reklama-google-adwords,4.6,Intermediate Level,"['Business', 'Marketing']"
113,Valuation for Startups Using Multiple Approach,https://coursera.org/learn/valuation-multiples,4.2,Beginner Level,"['Business', 'Finance']"
114,Gestion et Politique de l'eau,https://coursera.org/learn/gestion-eau,4.6,None,"['Social Sciences', 'Law']"
115,"Бизнес-процессы, организационное проектирование, механизмы и системы управления",https://coursera.org/learn/systems-engineering-4,4.3,Intermediate Level,"['Business', 'Leadership and Management']"
116,Administração Financeira,https://coursera.org/learn/administracao-financeira,4.8,Beginner Level,"['Business', 'Finance']"
117,"Global Postharvest Loss Prevention: Fundamentals, Technologies, and Actors",https://coursera.org/learn/postharvest,4.8,Beginner Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
118,Blockchain Platforms,https://coursera.org/learn/blockchain-platforms,4.6,Intermediate Level,"['Computer Science', 'Software Development']"
119,Invitation to Mathematics הזמנה למתמטיקה,https://coursera.org/learn/introduction-to-math,4.5,None,"['Math and Logic', 'Math and Logic']"
120,Человеческий фактор в разработке корпоративных систем,https://coursera.org/learn/chelovecheskiy-faktor-razrabotke-korporativnykh-sistem,None,None,"['Business', 'Leadership and Management']"
121,Креативная коммуникация: методы и инструменты,https://coursera.org/learn/kreativnaya-kommunikatsiya,4.7,Advanced Level,"['Arts and Humanities', 'Music and Art']"
122,Creating New BigQuery Datasets and Visualizing Insights,https://coursera.org/learn/gcp-creating-bigquery-datasets-visualizing-insights,4.6,Beginner Level,"['Information Technology', 'Data Management']"
123,Mindware: Critical Thinking for the Information Age,https://coursera.org/learn/mindware,4.7,Beginner Level,"['Health', 'Psychology']"
124,"Healthy Practices: Nutrition, Physical Activity, and Community and Family Participation",https://coursera.org/learn/healthy-practices-nutrition-physical-activity-community-family-participation,4.9,Beginner Level,"['Health', 'Nutrition']"
125,"Android App Components - Services, Local IPC, and Content Providers",https://coursera.org/learn/androidapps-2,4.3,Beginner Level,"['Computer Science', 'Mobile and Web Development']"
126,Big Data: visualización de datos,https://coursera.org/learn/big-data-visualizacion-datos,4.6,Intermediate Level,"['Data Science', 'Data Analysis']"
127,Strategic Career Self-Management,https://coursera.org/learn/strategic-career-self-management,4.4,None,"['Personal Development', 'Personal Development']"
128,Web Connectivity and Security in Embedded Systems,https://coursera.org/learn/iot-connectivity-security,4.6,Intermediate Level,"['Computer Science', 'Computer Security and Networks']"
129,Introduction to Spreadsheets and Models,https://coursera.org/learn/wharton-introduction-spreadsheets-models,4.2,None,"['Business', 'Business Essentials']"
130,Powerful Tools for Teaching and Learning: Web 2.0 Tools,https://coursera.org/learn/teaching-learning-tools,4.6,Beginner Level,"['Social Sciences', 'Education']"
131,Social Media Data Analytics,https://coursera.org/learn/social-media-data-analytics,4.1,Intermediate Level,"['Data Science', 'Data Analysis']"
132,Advanced Portfolio Construction and Analysis with Python,https://coursera.org/learn/advanced-portfolio-construction-python,4.8,Intermediate Level,"['Business', 'Finance']"
133,Marketing Analytics,https://coursera.org/learn/uva-darden-market-analytics,4.6,Beginner Level,"['Business', 'Marketing']"
134,Creativity Toolkit I: Changing Perspectives,https://coursera.org/learn/creativity-toolkit-1,4.7,None,"['Business', 'Entrepreneurship']"
135,The Importance and Power of Music in our Society,https://coursera.org/learn/importance-power-music-our-society,4.6,Beginner Level,"['Arts and Humanities', 'Music and Art']"
136,International Security Management,https://coursera.org/learn/international-security-management,None,Beginner Level,"['Social Sciences', 'Governance and Society']"
137,International Law In Action: Investigating and Prosecuting International Crimes,https://coursera.org/learn/international-law-in-action-2,4.8,None,"['Social Sciences', 'Law']"
138,Decision-Making and Scenarios,https://coursera.org/learn/wharton-decision-making-scenarios,4.6,None,"['Business', 'Business Essentials']"
139,Fundamentals of Visualization with Tableau,https://coursera.org/learn/data-visualization-tableau,4.5,Beginner Level,"['Data Science', 'Data Analysis']"
140,Data Mining Project,https://coursera.org/learn/data-mining-project,4.6,None,"['Data Science', 'Data Analysis']"
141,Diode - pn Junction and Metal Semiconductor Contact,https://coursera.org/learn/diode-pn-junction-metal-semiconductor-contact,4.1,Advanced Level,"['Physical Science and Engineering', 'Electrical Engineering']"
142,Managerial Economics and Business Analysis Capstone,https://coursera.org/learn/managerial-economics-capstone,4.6,Beginner Level,"['Business', 'Business Essentials']"
143,A Life of Happiness and Fulfillment,https://coursera.org/learn/happiness,4.8,None,"['Health', 'Psychology']"
144,Machine Learning with Python,https://coursera.org/learn/machine-learning-with-python,4.7,Intermediate Level,"['Data Science', 'Machine Learning']"
145,"The Music of the Rolling Stones, 1962-1974",https://coursera.org/learn/rolling-stones,4.8,None,"['Arts and Humanities', 'Music and Art']"
146,"Innovation Through Design: Think, Make, Break, Repeat",https://coursera.org/learn/innovation-through-design,4.8,Beginner Level,"['Business', 'Entrepreneurship']"
147,Improving Communication Skills,https://coursera.org/learn/wharton-communication-skills,4.6,Beginner Level,"['Personal Development', 'Personal Development']"
148,Creatividad computacional,https://coursera.org/learn/creatividad-computacional,None,Intermediate Level,"['Computer Science', 'Algorithms']"
149,Communicating Data Science Results,https://coursera.org/learn/data-results,3.6,None,"['Data Science', 'Data Analysis']"
150,Design Thinking,https://coursera.org/learn/design-thinking-innovation,4.6,Beginner Level,"['Business', 'Entrepreneurship']"
151,Modern American Poetry,https://coursera.org/learn/modern-american-poetry,4.5,Beginner Level,"['Arts and Humanities', 'Music and Art']"
152,More Chinese for Beginners,https://coursera.org/learn/more-chinese-for-beginners,4.7,None,"['Language Learning', 'Other Languages']"
153,Aspectos básicos de la planificación y la gestión de proyectos,https://coursera.org/learn/uva-darden-project-management-es,4.9,Beginner Level,"['Business', 'Business Essentials']"
154,The Modern and the Postmodern (Part 2),https://coursera.org/learn/modern-postmodern-2,4.7,None,"['Arts and Humanities', 'History']"
155,Marketing Gerencial,https://coursera.org/learn/marketing-gerencial,4.8,Intermediate Level,"['Business', 'Finance']"
156,Основы микроэкономики (Microeconomics Principles),https://coursera.org/learn/mikroekonomika,4.5,Beginner Level,"['Social Sciences', 'Economics']"
157,Leading transformations: Manage change,https://coursera.org/learn/change-management,4.5,Beginner Level,"['Business', 'Leadership and Management']"
158,Cómo autoconstruir tu vivienda. Segunda etapa,https://coursera.org/learn/como-autoconstruir-tu-vivienda-segunda-etapa,4.8,Beginner Level,"['Physical Science and Engineering', 'Electrical Engineering']"
159,Растровая графика. Adobe Photoshop CC,https://coursera.org/learn/rastrovaya-grafika-adobe-photoshop,4.6,Beginner Level,"['Computer Science', 'Design and Product']"
160,Entrepreneurship Strategy: From Ideation to Exit,https://coursera.org/learn/entrepreneurship-strategy,4.8,Beginner Level,"['Business', 'Leadership and Management']"
161,Conflict Resolution Skills,https://coursera.org/learn/conflict-resolution-skills,4.3,None,"['Business', 'Business Essentials']"
162,Serious Gaming,https://coursera.org/learn/serious-gaming,4.5,None,"['Social Sciences', 'Education']"
163,Введение в системное проектирование,https://coursera.org/learn/systems-engineering-2,4.4,Beginner Level,"['Physical Science and Engineering', 'Research Methods']"
164,Advanced Deployment Scenarios with TensorFlow,https://coursera.org/learn/advanced-deployment-scenarios-tensorflow,None,Intermediate Level,"['Computer Science', 'Software Development']"
165,The Science of Success: What Researchers Know that You Should Know,https://coursera.org/learn/success,4.8,Beginner Level,"['Business', 'Leadership and Management']"
166,Build a Modern Computer from First Principles: From Nand to Tetris (Project-Centered Course),https://coursera.org/learn/build-a-computer,4.9,None,"['Computer Science', 'Algorithms']"
167,Toledo: Deciphering Secrets of Medieval Spain,https://coursera.org/learn/toledo-deciphering-secrets-medieval-spain,4.6,Intermediate Level,"['Arts and Humanities', 'History']"
168,Introduction to Data Analytics for Business,https://coursera.org/learn/data-analytics-business,4.7,None,"['Data Science', 'Data Analysis']"
169,Getting Your Film off the Ground,https://coursera.org/learn/film-off-ground,4.4,Beginner Level,"['Arts and Humanities', 'Music and Art']"
170,Hot Topics in Criminal Justice,https://coursera.org/learn/hot-topics-criminal-justice,4.9,Beginner Level,"['Social Sciences', 'Law']"
171,"Learning, Knowledge, and Human Development ",https://coursera.org/learn/learning-knowledge-human-development,4,Beginner Level,"['Social Sciences', 'Education']"
172,Front-End Web UI Frameworks and Tools: Bootstrap 4,https://coursera.org/learn/bootstrap-4,4.8,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
173,Introducción a la producción musical,https://coursera.org/learn/intro-produccion-musical,4.9,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
174,Elastic Cloud Infrastructure: Containers and Services dalam bahasa Indonesia,https://coursera.org/learn/gcp-infrastructure-containers-services-id,4.9,Intermediate Level,"['Information Technology', 'Cloud Computing']"
175,Financial Analysis for Startups,https://coursera.org/learn/financial-ratios,4.4,Beginner Level,"['Business', 'Finance']"
176,Arts and Heritage Management,https://coursera.org/learn/arts-heritage,4.8,None,"['Business', 'Marketing']"
177,Fundamentals of Quantitative Modeling,https://coursera.org/learn/wharton-quantitative-modeling,4.6,None,"['Business', 'Business Essentials']"
178,Using clinical health data for better healthcare,https://coursera.org/learn/healthcare-data,4.6,Beginner Level,"['Health', 'Health Informatics']"
179,Enterprise Architecture,https://coursera.org/learn/enterprise-architecture,None,Beginner Level,"['Business', 'Business Essentials']"
180,Teach English Now! Capstone Project 2,https://coursera.org/learn/teaching-english-capstone-2,4.9,Beginner Level,"['Language Learning', 'Learning English']"
181,"Introduction to CAD, CAM, and Practical CNC Machining",https://coursera.org/learn/introduction-cad-cam-practical-cnc-machining,4.9,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
182,Психология коммуникации,https://coursera.org/learn/psikhologiya-kommunikacii,4.6,Beginner Level,"['Social Sciences', 'Governance and Society']"
183,Inferential and Predictive Statistics for Business,https://coursera.org/learn/business-statistics,4.8,None,"['Business', 'Business Essentials']"
184,Summary Statistics in Public Health,https://coursera.org/learn/summary-statistics,4.8,Beginner Level,"['Health', 'Public Health']"
185,Unordered Data Structures,https://coursera.org/learn/cs-fundamentals-3,4.8,None,"['Computer Science', 'Software Development']"
186,What is Social?,https://coursera.org/learn/what-is-social,4.6,None,"['Business', 'Marketing']"
187,"Итоговый проект специализации ""Финансовые инструменты для частного инвестора""",https://coursera.org/learn/financial-instruments-capstone,4.5,None,"['Business', 'Finance']"
188,Networking in GCP: Hybrid Connectivity and Network Management,https://coursera.org/learn/networking-gcp-hybrid-connectivity-network-management,4.8,Intermediate Level,"['Information Technology', 'Networking']"
189,"Managerial Accounting: Cost Behaviors, Systems, and Analysis",https://coursera.org/learn/accounting-for-managers,4.7,None,"['Business', 'Finance']"
190,Introduction to English Common Law,https://coursera.org/learn/intro-common-law,4.8,Beginner Level,"['Social Sciences', 'Law']"
191,Professional Responsibility and Ethics for Accountants,https://coursera.org/learn/ethics,None,None,"['Business', 'Leadership and Management']"
192,Sustainable Business Enterprises,https://coursera.org/learn/sustainable-business-enterprises,4.4,None,"['Business', 'Business Strategy']"
193,Composição: Escrevendo a letra,https://coursera.org/learn/composicao-escrevendo-letra,4.9,Beginner Level,"['Arts and Humanities', 'Music and Art']"
194,Gestión estratégica de Escuelas en Contextos Rurales,https://coursera.org/learn/gestion-estrategica-escuelas-rurales,4.9,Beginner Level,"['Social Sciences', 'Education']"
195,Teaching Impacts of Technology: Workplace of the Future,https://coursera.org/learn/teach-impacts-technology-workplace-future,None,Beginner Level,"['Social Sciences', 'Education']"
196,Expanded FPGA Training with NIOS II,https://coursera.org/learn/fpga-training-nios-ii,None,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
197,"Anatomy: Cardiovascular, Respiratory and Urinary Systems",https://coursera.org/learn/anatomy403-2x,4.8,Beginner Level,"['Health', 'Basic Science']"
198,Water Supply and Sanitation Policy in Developing Countries Part 2: Developing Effective Interventions,https://coursera.org/learn/water-part-2,4.4,Intermediate Level,"['Social Sciences', 'Governance and Society']"
199,القيادة الدولية والسلوك التنظيمي,https://coursera.org/learn/organizational-behavior-ar,4.8,None,"['Business', 'Leadership and Management']"
200,"Trabaja inteligentemente, no más duro: Gestión del tiempo para la productividad personal y profesional ",https://coursera.org/learn/trabaja-inteligentemente,4.5,None,"['Business', 'Leadership and Management']"
201,Application Systems Programming,https://coursera.org/learn/application-systems-programming,4.5,Intermediate Level,"['Computer Science', 'Software Development']"
202,Strategies for winning. Meteorology in a round the world regatta,https://coursera.org/learn/meteorology,4.5,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
203,Estadística y probabilidad,https://coursera.org/learn/estadistica-probabilidad,4.7,Beginner Level,"['Math and Logic', 'Math and Logic']"
204,Универсальные практики влияния,https://coursera.org/learn/praktiki-vliyaniya,None,Intermediate Level,"['Business', 'Leadership and Management']"
205,Advanced Business Analytics Capstone,https://coursera.org/learn/data-analytics-business-capstone,4.4,None,"['Data Science', 'Data Analysis']"
206,Camera Control,https://coursera.org/learn/camera-control,4.8,None,"['Arts and Humanities', 'Music and Art']"
207,Introdução ao Controle Moderno,https://coursera.org/learn/controle-moderno,4.9,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
208,Building a Data Science Team,https://coursera.org/learn/build-data-science-team,4.5,None,"['Data Science', 'Data Analysis']"
209,Software Design as an Abstraction,https://coursera.org/learn/software-design-abstraction,4.8,Intermediate Level,"['Computer Science', 'Software Development']"
210,"HI-FIVE: Health Informatics For Innovation, Value & Enrichment (Social/Peer Perspective)",https://coursera.org/learn/hi-five-social-peer,4.6,Beginner Level,"['Health', 'Health Informatics']"
211,Design Thinking for the Greater Good: Innovation in the Social Sector,https://coursera.org/learn/uva-darden-design-thinking-social-sector,4.5,Beginner Level,"['Social Sciences', 'Education']"
212,Multiple Regression Analysis in Public Health,https://coursera.org/learn/multiple-regression-analysis-public-health,4.7,Beginner Level,"['Health', 'Health Informatics']"
213,Become a CBRS Certified Professional Installer by Google,https://coursera.org/learn/google-cbrs-cpi-training,4.9,None,"['Information Technology', 'Networking']"
214,Business intelligence and data warehousing,https://coursera.org/learn/business-intelligence-data-warehousing,4.4,Intermediate Level,"['Data Science', 'Data Analysis']"
215,Supply Chain Finance Market and Fintech Ecosystem,https://coursera.org/learn/supply-chain-finance-market-fintech-ecosystem,4.5,Intermediate Level,"['Business', 'Finance']"
216,Studying at Japanese Universities,https://coursera.org/learn/study-in-japan,4.8,Beginner Level,"['Personal Development', 'Personal Development']"
217,Blended Learning: Personalizing Education for Students,https://coursera.org/learn/blending-learning-personalization,4.7,None,"['Social Sciences', 'Education']"
218,"The Effect of Fires on People, Property and the Environment",https://coursera.org/learn/fire-effect,4.6,None,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
219,Applied Data Science Capstone,https://coursera.org/learn/applied-data-science-capstone,4.7,Intermediate Level,"['Data Science', 'Data Analysis']"
220,Originalité et modernité du mutualisme,https://coursera.org/learn/originalite-et-modernite-du-mutualisme,4.8,Beginner Level,"['Business', 'Business Essentials']"
221,The Power of Microeconomics: Economic Principles in the Real World,https://coursera.org/learn/principles-of-microeconomics,4.6,None,"['Social Sciences', 'Economics']"
222,Controle Usando a Resposta em Frequência,https://coursera.org/learn/resposta-frequencia,4.3,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
223,The Science of Health Care Delivery,https://coursera.org/learn/science-healthcare-delivery,4.6,Beginner Level,"['Health', 'Healthcare Management']"
224,Analizando las Políticas Económicas,https://coursera.org/learn/analizando-politicas-economicas,4.9,None,"['Social Sciences', 'Economics']"
225,Corporate Financial Decision-Making for Value Creation,https://coursera.org/learn/value-creation,4.7,None,"['Business', 'Finance']"
226,Launching into Machine Learning 日本語版,https://coursera.org/learn/launching-machine-learning-jp,4.4,Intermediate Level,"['Data Science', 'Machine Learning']"
227,Trading Algorithms,https://coursera.org/learn/trading-algorithm,4.6,Intermediate Level,"['Business', 'Finance']"
228,Just Reading and Writing English 2,https://coursera.org/learn/just-reading-and-writing-english-2,None,Intermediate Level,"['Language Learning', 'Learning English']"
229,Fundamentos de Android,https://coursera.org/learn/fundamentos,4.7,None,"['Computer Science', 'Mobile and Web Development']"
230,Code Free Data Science,https://coursera.org/learn/code-free-data-science,4.3,Beginner Level,"['Data Science', 'Machine Learning']"
231,The R Programming Environment,https://coursera.org/learn/r-programming-environment,4.4,Intermediate Level,"['Data Science', 'Data Analysis']"
232,Audio digital con Pure Data,https://coursera.org/learn/audio-digital-pure-data,4.7,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
233,Mechanics of Materials III: Beam Bending,https://coursera.org/learn/beam-bending,4.9,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
234,Financial Engineering and Risk Management Part II,https://coursera.org/learn/financial-engineering-2,4.7,None,"['Business', 'Finance']"
235,Introduction à la théorie de Galois,https://coursera.org/learn/theorie-de-galois,4.8,None,"['Math and Logic', 'Math and Logic']"
236,Autodesk Certified Professional: AutoCAD for Design and Drafting Exam Prep,https://coursera.org/learn/autodesk-autocad-design-drafting,4.8,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
237,Web Application Development with JavaScript and MongoDB,https://coursera.org/learn/web-application-development,4.6,None,"['Computer Science', 'Software Development']"
238,Formal Financial Accounting,https://coursera.org/learn/formal-financial-accounting,4.6,Intermediate Level,"['Business', 'Business Essentials']"
239,How to Write a Resume (Project-Centered Course),https://coursera.org/learn/how-to-write-a-resume,4.4,None,"['Personal Development', 'Personal Development']"
240,Fundamentals of Parallelism on Intel Architecture,https://coursera.org/learn/parallelism-ia,4.6,Intermediate Level,"['Computer Science', 'Software Development']"
241,Design your own trading strategy – Culminating Project,https://coursera.org/learn/design-trading-strategy-culminating-project,4.5,Intermediate Level,"['Business', 'Finance']"
242,Predictive Analytics and Data Mining,https://coursera.org/learn/predictive-analytics-data-mining,4.2,Intermediate Level,"['Business', 'Leadership and Management']"
243,The Economics of Health Care Delivery,https://coursera.org/learn/health-economics-us-healthcare-systems,4.8,None,"['Health', 'Healthcare Management']"
244,Intro to International Marketing,https://coursera.org/learn/intro-international-marketing,4.7,None,"['Business', 'Marketing']"
245,Physique des particules - une introduction,https://coursera.org/learn/physique-particules,4.3,Intermediate Level,"['Physical Science and Engineering', 'Physics and Astronomy']"
246,Python Programming Essentials,https://coursera.org/learn/python-programming,4.8,Beginner Level,"['Computer Science', 'Software Development']"
247,The Blockchain System,https://coursera.org/learn/blockchain-system,None,Beginner Level,"['Computer Science', 'Algorithms']"
248,Юридическое оформление инвестиционных идей,https://coursera.org/learn/law-invest-ideas,4.6,None,"['Social Sciences', 'Law']"
249,Patrick Henry: Forgotten Founder,https://coursera.org/learn/henry,4.9,Beginner Level,"['Arts and Humanities', 'History']"
250,Build a Modern Computer from First Principles: Nand to Tetris Part II (project-centered course),https://coursera.org/learn/nand2tetris2,5,None,"['Computer Science', 'Software Development']"
251,Doğrusal Cebir I: Uzaylar ve İşlemciler / Linear Algebra I: Spaces and Operators,https://coursera.org/learn/linearalgebra1,3.8,None,"['Math and Logic', 'Math and Logic']"
252,Hacer negocios con multinacionales y empresas en América Latina,https://coursera.org/learn/negocios-multinacionales-america-latina,5,Beginner Level,"['Business', 'Business Strategy']"
253,Social Psychology,https://coursera.org/learn/social-psychology,4.9,Beginner Level,"['Health', 'Psychology']"
254,Elastic Cloud Infrastructure: Scaling and Automation auf Deutsch,https://coursera.org/learn/gcp-infrastructure-scaling-automation-de,None,Intermediate Level,"['Information Technology', 'Cloud Computing']"
255,Compreendendo o Zika e doenças emergentes,https://coursera.org/learn/zika-e-doencas-emergentes,5,Intermediate Level,"['Health', 'Public Health']"
256,Six Sigma Tools for Improve and Control,https://coursera.org/learn/six-sigma-improve-control,4.7,Beginner Level,"['Business', 'Business Essentials']"
257,Entrepreneurship I: Laying the Foundation,https://coursera.org/learn/entrepreneurship-1,4.8,None,"['Business', 'Entrepreneurship']"
258,"Capstone MOOC for ""Android App Development""",https://coursera.org/learn/aadcapstone,4.1,None,"['Computer Science', 'Mobile and Web Development']"
259,Introduction to Key Constitutional Concepts and Supreme Court Cases,https://coursera.org/learn/constitution,4.8,Beginner Level,"['Social Sciences', 'Governance and Society']"
260,Corporate Finance Essentials,https://coursera.org/learn/corporate-finance-essentials,4.8,None,"['Business', 'Finance']"
261,История изобретений и открытий — Вторая история человечества,https://coursera.org/learn/istoriya-izobretenii-i-otkritii,4.8,Beginner Level,"['Physical Science and Engineering', 'Research Methods']"
262,Accounting and Finance for IT professionals,https://coursera.org/learn/accounting-finance,4.4,Beginner Level,"['Business', 'Finance']"
263,"Career planning: Your career, your life",https://coursera.org/learn/career-development-planning,None,None,"['Business', 'Leadership and Management']"
264,Financial Accounting Fundamentals,https://coursera.org/learn/uva-darden-financial-accounting,4.8,Beginner Level,"['Business', 'Business Essentials']"
265,Transacting on the Blockchain,https://coursera.org/learn/transacting-blockchain,4.8,Intermediate Level,"['Business', 'Business Strategy']"
266,Gestión de organizaciones efectivas,https://coursera.org/learn/gestion-organizaciones-efectivas,4.7,None,"['Business', 'Leadership and Management']"
267,Basics of Extracellular Vesicles,https://coursera.org/learn/extracellular-vesicles,4.8,Intermediate Level,"['Health', 'Basic Science']"
268,"Philosophy, Science and Religion: Science and Philosophy",https://coursera.org/learn/philosophy-science-religion-1,4.4,Beginner Level,"['Arts and Humanities', 'Philosophy']"
269,Understanding Plants - Part I: What a Plant Knows,https://coursera.org/learn/plantknows,4.8,Beginner Level,"['Health', 'Basic Science']"
270,"Introduction to TensorFlow for Artificial Intelligence, Machine Learning, and Deep Learning",https://coursera.org/learn/introduction-tensorflow,4.7,Intermediate Level,"['Computer Science', 'Software Development']"
271,Changer le monde : passons a l'action (creer son entreprise sociale),https://coursera.org/learn/monde-action,4.5,None,"['Business', 'Business Essentials']"
272,Love as a Force for Social Justice,https://coursera.org/learn/love-social-justice,4.7,Beginner Level,"['Arts and Humanities', 'Philosophy']"
273,"The Modern World, Part Two: Global History since 1910",https://coursera.org/learn/modern-world-2,4.8,Beginner Level,"['Arts and Humanities', 'History']"
274,Finding Mutations in DNA and Proteins (Bioinformatics VI),https://coursera.org/learn/dna-mutations,4.6,Beginner Level,"['Health', 'Health Informatics']"
275,Healthcare Data Literacy,https://coursera.org/learn/healthcare-data-literacy,4.5,Intermediate Level,"['Health', 'Health Informatics']"
276,Introduction to Programming in Swift 5,https://coursera.org/learn/swift-5-programming-introduction,4.3,Beginner Level,"['Computer Science', 'Software Development']"
277,Programming Mobile Applications for Android Handheld Systems: Part 2,https://coursera.org/learn/android-programming-2,4.7,None,"['Computer Science', 'Mobile and Web Development']"
278,Electrodynamics: Analysis of Electric Fields,https://coursera.org/learn/electrodynamics-analysis-of-electric-fields,4.8,Advanced Level,"['Physical Science and Engineering', 'Electrical Engineering']"
279,"Contexto de Negocios en LATAM: Factores Políticos, Sociales y Económicos",https://coursera.org/learn/contexto-negocios-latam,None,None,"['Business', 'Business Essentials']"
280,Epidemics - the Dynamics of Infectious Diseases,https://coursera.org/learn/epidemics,4.7,None,"['Health', 'Basic Science']"
281,HPV-Associated Oral and Throat Cancer: What You Need to Know,https://coursera.org/learn/hpv-oral-throat-cancer,4.7,None,"['Health', 'Basic Science']"
282,Elastic Cloud Infrastructure: Scaling and Automation en Français,https://coursera.org/learn/gcp-infrastructure-scaling-automation-fr,None,Intermediate Level,"['Information Technology', 'Cloud Computing']"
283,Frontières en tous genres,https://coursera.org/learn/geographie-politique-culturelle-frontieres,4.9,Beginner Level,"['Social Sciences', 'Education']"
284,Репродуктивное здоровье женщины и безопасная беременность,https://coursera.org/learn/reproduktivnoe-zdorove-zhenshchiny,4.9,Beginner Level,"['Health', 'Patient Care']"
285,C for Everyone: Programming Fundamentals,https://coursera.org/learn/c-for-everyone,4.4,Beginner Level,"['Computer Science', 'Software Development']"
286,"Sampling People, Networks and Records",https://coursera.org/learn/sampling-methods,4.5,Beginner Level,"['Health', 'Psychology']"
287,Кинематика,https://coursera.org/learn/kinematics,4.9,Beginner Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
288,Creative Thinking: Techniques and Tools for Success,https://coursera.org/learn/creative-thinking-techniques-and-tools-for-success,None,Beginner Level,"['Personal Development', 'Personal Development']"
289,Intel® Network Academy - Network Transformation 102,https://coursera.org/learn/network-transformation-102,4.4,Beginner Level,"['Information Technology', 'Networking']"
290,Guitar Scales and Chord Progressions,https://coursera.org/learn/guitar-scales-chord-progressions,4.7,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
291,Interpersonal Communication for Engineering Leaders,https://coursera.org/learn/interpersonal-communication,4.7,None,"['Business', 'Leadership and Management']"
292,Fundamentals of Project Planning and Management,https://coursera.org/learn/uva-darden-project-management,4.7,Beginner Level,"['Business', 'Business Essentials']"
293,Understanding Plants - Part II: Fundamentals of Plant Biology,https://coursera.org/learn/plant-biology,4.8,Intermediate Level,"['Health', 'Basic Science']"
294,"International Travel Preparation, Safety, & Wellness",https://coursera.org/learn/international-travel,4.7,Beginner Level,"['Personal Development', 'Personal Development']"
295,Genomics for Law,https://coursera.org/learn/genomics-for-law,4.8,Beginner Level,"['Social Sciences', 'Law']"
296,Simulation Skills: This is Your Brain on the Future,https://coursera.org/learn/simulation-skills,4.8,Beginner Level,"['Business', 'Business Essentials']"
297,Agile with Atlassian Jira,https://coursera.org/learn/agile-atlassian-jira,4.7,Beginner Level,"['Computer Science', 'Software Development']"
298,Questionnaire Design for Social Surveys,https://coursera.org/learn/questionnaire-design,4.4,None,"['Health', 'Psychology']"
299,Data Structures and Algorithms (I),https://coursera.org/learn/data-structures-algorithms-1,None,Intermediate Level,"['Computer Science', 'Algorithms']"
300,Projeto Aplicado - Introdução a Gestão de Projetos,https://coursera.org/learn/iniciacao-planejamento-de-projetos,4.9,None,"['Business', 'Leadership and Management']"
301,Clasificación de imágenes: ¿cómo reconocer el contenido de una imagen?,https://coursera.org/learn/clasificacion-imagenes,4.4,None,"['Computer Science', 'Algorithms']"
302,Business Chinese 1 中级汉语 (上),https://coursera.org/learn/intermediate-business-chinese-1,None,Intermediate Level,"['Language Learning', 'Other Languages']"
303,China’s Economic Transformation Part 1: Economic Reform and Growth in China,https://coursera.org/learn/econtransform1,4.8,None,"['Social Sciences', 'Economics']"
304,Blockchain e Negócios: Aplicativos e Implicações,https://coursera.org/learn/blockchain-negocios,None,None,"['Business', 'Business Essentials']"
305,Cartographie thématique,https://coursera.org/learn/cartographie,4.5,Beginner Level,"['Social Sciences', 'Governance and Society']"
306,Cybersecurity Compliance Framework & System Administration,https://coursera.org/learn/cybersecurity-compliance-framework-system-administration,4.7,None,"['Information Technology', 'Security']"
307,Negociación 4.0,https://coursera.org/learn/negociacion-iae,4.6,Beginner Level,"['Business', 'Business Strategy']"
308,La recherche documentaire,https://coursera.org/learn/recherche-documentaire,4.4,Beginner Level,"['Personal Development', 'Personal Development']"
309,Transmedia Writing,https://coursera.org/learn/transmedia-writing,4.5,Beginner Level,"['Arts and Humanities', 'History']"
310,Proactive Computer Security,https://coursera.org/learn/proactive-computer-security,4.6,Beginner Level,"['Information Technology', 'Security']"
311,Fundraising and Development Foundations,https://coursera.org/learn/fundraising-development,4.6,Beginner Level,"['Business', 'Business Strategy']"
312,Fundamentos de Finanzas Empresariales,https://coursera.org/learn/finanzas-empresariales,4.8,Beginner Level,"['Business', 'Finance']"
313,Financial Planning for Young Adults,https://coursera.org/learn/financial-planning,4.5,Beginner Level,"['Business', 'Finance']"
314,Inteligencia artificial: Proyecto final,https://coursera.org/learn/inteligencia-artificial-proyecto,None,None,"['Computer Science', 'Algorithms']"
315,The Challenges of Global Health,https://coursera.org/learn/global-health,4.8,Beginner Level,"['Health', 'Public Health']"
316,"Cameras, Exposure, and Photography",https://coursera.org/learn/exposure-photography,4.7,None,"['Arts and Humanities', 'Music and Art']"
317,Основы проектирования приложений интернета вещей,https://coursera.org/learn/proektirovaniya-prilozhenij-interneta-veshchej,4,Intermediate Level,"['Computer Science', 'Software Development']"
318,Capitalismo Consciente,https://coursera.org/learn/capitalismo-consciente,4.5,None,"['Business', 'Business Strategy']"
319,Doing Business in China Capstone,https://coursera.org/learn/doing-business-in-china-capstone,4.3,Beginner Level,"['Business', 'Business Strategy']"
320,Systems and Application Security,https://coursera.org/learn/systems-application-security-sscp,4.7,Beginner Level,"['Information Technology', 'Security']"
321,The Language and Tools of Financial Analysis,https://coursera.org/learn/financial-analysis,4.6,None,"['Business', 'Finance']"
322,Data for Machine Learning,https://coursera.org/learn/data-machine-learning,4.7,Intermediate Level,"['Data Science', 'Machine Learning']"
323,Mathematics for Computer Science,https://coursera.org/learn/mathematics-for-computer-science,4.3,Beginner Level,"['Math and Logic', 'Math and Logic']"
324,Protists: Evolution and Ecology of Microbial Eukaryotes,https://coursera.org/learn/protists-evolution-ecology-microbial-eukaryotes,4.8,Intermediate Level,"['Health', 'Basic Science']"
325,Solving Algorithms for Discrete Optimization,https://coursera.org/learn/solving-algorithms-discrete-optimization,5,Intermediate Level,"['Computer Science', 'Software Development']"
326,Leadership Through Social Influence,https://coursera.org/learn/leadership-socialinfluence,4.6,None,"['Business', 'Leadership and Management']"
327,Entender el diseño,https://coursera.org/learn/entender-diseno,4.7,None,"['Business', 'Business Essentials']"
328,Project: Predict Sales Revenue with scikit-learn,https://coursera.org/learn/scikit-learn-simple-linear-regression,4.1,Beginner Level,"['Data Science', 'Machine Learning']"
329,Protecting the World: Introducing Corrosion Science and Engineering,https://coursera.org/learn/corrosion,4.8,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
330,Confronting Gender Based Violence: Global Lessons for Healthcare Workers,https://coursera.org/learn/gender-based-violence,4.8,Beginner Level,"['Health', 'Public Health']"
331,Building Scalable Java Microservices with Spring Boot and Spring Cloud,https://coursera.org/learn/google-cloud-java-spring,4.3,Intermediate Level,"['Computer Science', 'Software Development']"
332,Bayesian Statistics,https://coursera.org/learn/bayesian,3.9,Intermediate Level,"['Data Science', 'Data Analysis']"
333,Diseño de videojuegos,https://coursera.org/learn/videojuegos-diseno,4.5,None,"['Computer Science', 'Design and Product']"
334,"Drugs, drug use, drug policy and health ",https://coursera.org/learn/drugs,4.8,Beginner Level,"['Health', 'Public Health']"
335,Making Your First Virtual Reality Game,https://coursera.org/learn/making-virtual-reality-game,4.6,Intermediate Level,"['Computer Science', 'Design and Product']"
336,Data Analytics Foundations for Accountancy II,https://coursera.org/learn/data-analytics-accountancy-2,4.7,None,"['Data Science', 'Data Analysis']"
337,Serverless Machine Learning con TensorFlow en GCP,https://coursera.org/learn/serverless-machine-learning-gcp-es,4.7,Intermediate Level,"['Data Science', 'Machine Learning']"
338,Strategic management: Be competitive,https://coursera.org/learn/strategic-management-be-competitive,5,Beginner Level,"['Business', 'Business Strategy']"
339,"Працюйте розумніше, а не більше: управління часом для особистої та професійної продуктивності",https://coursera.org/learn/upravlinnya-chasom,4.5,None,"['Business', 'Business Essentials']"
340,Aspectos fundamentales de la gerencia,https://coursera.org/learn/fundamentos-de-gestion,4.6,None,"['Personal Development', 'Personal Development']"
341,Fundamentos de la escritura académica,https://coursera.org/learn/escritura-academica-esp,4.5,Beginner Level,"['Social Sciences', 'Education']"
342,Structuring Values in Modern China,https://coursera.org/learn/structuring-values-modern-china,None,None,"['Arts and Humanities', 'History']"
343,Introducción a la programación en Python I: Aprendiendo a programar con Python,https://coursera.org/learn/aprendiendo-programar-python,4.5,Beginner Level,"['Computer Science', 'Software Development']"
344,Essential Cloud Infrastructure: Core Services dalam bahasa Indonesia,https://coursera.org/learn/essential-cloud-infrastructure-core-services-id,4.9,Intermediate Level,"['Information Technology', 'Cloud Computing']"
345,Career Brand Development and Self-Coaching,https://coursera.org/learn/career-brand-development-self-coaching,4.3,None,"['Personal Development', 'Personal Development']"
346,How to Make a Comic Book (Project-Centered Course),https://coursera.org/learn/make-comic-books,4.6,None,"['Arts and Humanities', 'Music and Art']"
347,Convolutional Neural Networks,https://coursera.org/learn/convolutional-neural-networks,4.9,Intermediate Level,"['Data Science', 'Machine Learning']"
348,Device-based Models with TensorFlow Lite,https://coursera.org/learn/device-based-models-tensorflow,4.5,Intermediate Level,"['Computer Science', 'Software Development']"
349,Securing Investment Returns in the Long Run,https://coursera.org/learn/investment-returns-long-run,4.7,None,"['Business', 'Finance']"
350,Motion Planning for Self-Driving Cars,https://coursera.org/learn/motion-planning-self-driving-cars,4.8,Advanced Level,"['Computer Science', 'Software Development']"
351,Administración financiera y su función en la empresa,https://coursera.org/learn/admonfinanciera,4.8,Intermediate Level,"['Business', 'Finance']"
352,Entrepreneurial Strategic Management,https://coursera.org/learn/entrepreneurial-strategic-management,4.4,None,"['Business', 'Entrepreneurship']"
353,Sistemas operativos y tú: Convertirse en un usuario avanzado,https://coursera.org/learn/sistemas-operativos,4.9,Beginner Level,"['Information Technology', 'Support and Operations']"
354,Я говорю по-русски/ I speak Russian,https://coursera.org/learn/ya-govoryu-po-russki,4.7,Intermediate Level,"['Language Learning', 'Other Languages']"
355,Introduction to Cisco Networking,https://coursera.org/learn/cisco-networking-introduction,4.8,Beginner Level,"['Information Technology', 'Networking']"
356,An Introduction to Consumer Neuroscience & Neuromarketing,https://coursera.org/learn/neuromarketing,4.7,Beginner Level,"['Business', 'Leadership and Management']"
357,Privacy Law and HIPAA,https://coursera.org/learn/privacy-law-hipaa,None,None,"['Business', 'Business Essentials']"
358,Essential Cloud Infrastructure: Core Services em Português Brasileiro,https://coursera.org/learn/gcp-infrastructure-core-services-br,4.9,Intermediate Level,"['Information Technology', 'Cloud Computing']"
359,The Bilingual Brain,https://coursera.org/learn/bilingual,4.6,None,"['Health', 'Psychology']"
360,Data Structures and Algorithms (III),https://coursera.org/learn/data-structures-algorithms-3,None,Intermediate Level,"['Computer Science', 'Algorithms']"
361,La Solución del Conflicto Ético,https://coursera.org/learn/etica,4.6,None,"['Health', 'Public Health']"
362,Graphic Design,https://coursera.org/learn/presentation-design,4.7,Beginner Level,"['Business', 'Business Essentials']"
363,"Cloud Computing Concepts, Part 1",https://coursera.org/learn/cloud-computing,4.5,Beginner Level,"['Computer Science', 'Algorithms']"
364,The Horse Course: Introduction to Basic Care and Management,https://coursera.org/learn/horse-care,4.9,None,"['Health', 'Animal Health']"
365,Manufacturing Process with Autodesk Fusion 360,https://coursera.org/learn/manufacturing-process-fusion-360,4.5,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
366,Fitting Statistical Models to Data with Python,https://coursera.org/learn/fitting-statistical-models-data-python,4.4,Intermediate Level,"['Data Science', 'Probability and Statistics']"
367,Introduction to iOS App Development with Swift 5,https://coursera.org/learn/ios-app-development-swift-5,4.6,Intermediate Level,"['Computer Science', 'Software Development']"
368,Gestão para a Aprendizagem: Módulo Gestão Estratégica,https://coursera.org/learn/gestao-escolar,4.7,None,"['Social Sciences', 'Education']"
369,Relational database systems,https://coursera.org/learn/relational-database,4,Intermediate Level,"['Data Science', 'Data Analysis']"
370,Responsive Web Design,https://coursera.org/learn/responsive-web-design,4.6,None,"['Computer Science', 'Mobile and Web Development']"
371,Accounting for Decision Making,https://coursera.org/learn/accounting,4.8,Intermediate Level,"['Business', 'Finance']"
372,Welcome to Game Theory,https://coursera.org/learn/game-theory-introduction,4.7,Beginner Level,"['Social Sciences', 'Economics']"
373,Inglés Empresarial: Proyecto Final,https://coursera.org/learn/ingles-empresarial-proyecto,4.5,None,"['Language Learning', 'Learning English']"
374,High Level Biocontainment for Healthcare Facilities,https://coursera.org/learn/biocontainment,4.6,Intermediate Level,"['Health', 'Public Health']"
375,Security and Privacy for Big Data - Part 1,https://coursera.org/learn/security-privacy-big-data,4.7,Beginner Level,"['Information Technology', 'Security']"
376,Databases and SQL for Data Science,https://coursera.org/learn/sql-data-science,4.7,Beginner Level,"['Data Science', 'Data Analysis']"
377,The Sun and the Total Eclipse of August 2017,https://coursera.org/learn/eclipse,4.6,Beginner Level,"['Physical Science and Engineering', 'Physics and Astronomy']"
378,Chinese for HSK 6,https://coursera.org/learn/chinese-for-hsk-6,None,Advanced Level,"['Language Learning', 'Other Languages']"
379,Business Analytics and Digital Media,https://coursera.org/learn/business-analytics,4.2,Beginner Level,"['Data Science', 'Data Analysis']"
380,Анализ данных: финальный проект,https://coursera.org/learn/data-analysis-project,4.7,Advanced Level,"['Data Science', 'Data Analysis']"
381,Introduction to Reproduction,https://coursera.org/learn/reproductive-health,4.6,None,"['Health', 'Basic Science']"
382,Reliable Cloud Infrastructure: Design and Process em Português Brasileiro,https://coursera.org/learn/cloud-infrastructure-design-process-br,5,Intermediate Level,"['Information Technology', 'Cloud Computing']"
383,Content Strategy for Professionals: Managing Content,https://coursera.org/learn/content-management-strategy,4.6,None,"['Business', 'Marketing']"
384,Advanced Grammar & Punctuation Project,https://coursera.org/learn/advanced-grammar-project,4.3,Advanced Level,"['Language Learning', 'Learning English']"
385,Health Care Delivery in Healthcare Organizations,https://coursera.org/learn/healthcare-delivery-in-healthcare-organizations,4.6,Beginner Level,"['Health', 'Healthcare Management']"
386,Foundations of Teaching for Learning Capstone: The Reflective Practitioner,https://coursera.org/learn/teaching-capstone,4.3,None,"['Social Sciences', 'Education']"
387,Marketing: Customer Needs and Wants,https://coursera.org/learn/marketing-customers,4.4,None,"['Business', 'Business Strategy']"
388,"Modern Robotics, Course 2: Robot Kinematics",https://coursera.org/learn/modernrobotics-course2,4.9,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
389,"Corrección, estilo y variaciones de la lengua española",https://coursera.org/learn/correccion-estilo-variaciones,4.6,Beginner Level,"['Language Learning', 'Other Languages']"
390,Introduction to Operations Management,https://coursera.org/learn/wharton-operations,4.5,None,"['Business', 'Leadership and Management']"
391,Desarrollo de Aplicaciones Web: Conceptos Básicos,https://coursera.org/learn/aplicaciones-web,4.5,None,"['Computer Science', 'Mobile and Web Development']"
392,"High Performance Collaboration: Leadership, Teamwork, and Negotiation",https://coursera.org/learn/leadership-collaboration,4.8,None,"['Business', 'Leadership and Management']"
393,Industrial IoT on Google Cloud Platform,https://coursera.org/learn/iiot-google-cloud-platform,4.6,Beginner Level,"['Computer Science', 'Software Development']"
394,Cultural and creative industries,https://coursera.org/learn/cultural-creative-industries,4.2,None,"['Arts and Humanities', 'History']"
395,Introduction to Corporate Finance,https://coursera.org/learn/wharton-finance,4.6,None,"['Business', 'Finance']"
396,Cryptography: Boolean functions and related problems,https://coursera.org/learn/cryptography-boolean-functions,None,Advanced Level,"['Information Technology', 'Security']"
397,Introducción al estudio de los bienes comunes,https://coursera.org/learn/estudio-bienes-comunes,4.8,Beginner Level,"['Social Sciences', 'Governance and Society']"
398,Corporate Strategy,https://coursera.org/learn/corporatestrategy,4.8,Beginner Level,"['Business', 'Business Strategy']"
399,Moralities of Everyday Life,https://coursera.org/learn/moralities,4.8,None,"['Health', 'Psychology']"
400,Digital Transformation,https://coursera.org/learn/bcg-uva-darden-digital-transformation,4.8,Beginner Level,"['Business', 'Leadership and Management']"
401,Confronting The Big Questions: Highlights of Modern Astronomy,https://coursera.org/learn/astronomy,4.6,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
402,L'impact investing : innover,https://coursera.org/learn/impactinvestinginnover,4.6,None,"['Business', 'Entrepreneurship']"
403,Global sustainability and corporate social responsibility: Be sustainable,https://coursera.org/learn/global-sustainability-be-sustainable,4.8,Beginner Level,"['Business', 'Business Strategy']"
404,Liderazgo Instruccional: Perspectiva Global y Prácticas Locales,https://coursera.org/learn/liderazgo-educativo,4.7,None,"['Personal Development', 'Personal Development']"
405,The fundamentals of hotel distribution,https://coursera.org/learn/hotel-distribution,4.7,None,"['Business', 'Business Strategy']"
406,Training and Learning Programs for Volunteer Community Health Workers,https://coursera.org/learn/commhealthworkers,4.9,Beginner Level,"['Health', 'Public Health']"
407,Teaching Popular Music in the Classroom,https://coursera.org/learn/teaching-popular-music,None,Intermediate Level,"['Social Sciences', 'Education']"
408,The Cycle: Management of Successful Arts and Cultural Organizations,https://coursera.org/learn/the-cycle,4.8,Beginner Level,"['Arts and Humanities', 'Music and Art']"
409,Feature Engineering,https://coursera.org/learn/feature-engineering,4.5,Intermediate Level,"['Data Science', 'Machine Learning']"
410,Inequality and Democracy,https://coursera.org/learn/inequality-and-democracy,None,Beginner Level,"['Arts and Humanities', 'Philosophy']"
411,Discrete Math and Analyzing Social Graphs,https://coursera.org/learn/discrete-math-and-analyzing-social-graphs,4.8,None,"['Math and Logic', 'Math and Logic']"
412,Emergent Phenomena in Science and Everyday Life,https://coursera.org/learn/emergent-phenomena,4.3,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
413,Requirements Specifications: Goals and Conflict Analysis,https://coursera.org/learn/requirements-specification-goals,4.5,Beginner Level,"['Computer Science', 'Software Development']"
414,Портфельные инвестиции: активные и пассивные стратегии,https://coursera.org/learn/portfelnyye-investitsii,4.6,None,"['Business', 'Finance']"
415,Foundations of Public Health Practice: Health Protection,https://coursera.org/learn/health-protection,None,Advanced Level,"['Health', 'Public Health']"
416,Документы и презентации в LaTeX (Introduction to LaTeX),https://coursera.org/learn/latex,4.8,None,"['Computer Science', 'Design and Product']"
417,Green Business Strategy,https://coursera.org/learn/green-business-strategy,4.5,Beginner Level,"['Business', 'Business Strategy']"
418,Networking and Security Architecture with VMware NSX,https://coursera.org/learn/networking-security-architecture-vmware-nsx,4.8,Intermediate Level,"['Information Technology', 'Networking']"
419,"Computers, Waves, Simulations: A Practical Introduction to Numerical Methods using Python",https://coursera.org/learn/computers-waves-simulations,4.8,Intermediate Level,"['Physical Science and Engineering', 'Research Methods']"
420,Pharmaceutical and Medical Device Innovations,https://coursera.org/learn/pharma-medical-device-innovations,4.4,Beginner Level,"['Business', 'Finance']"
421,Production Machine Learning Systems,https://coursera.org/learn/gcp-production-ml-systems,4.6,Advanced Level,"['Data Science', 'Machine Learning']"
422,Modeling Risk and Realities,https://coursera.org/learn/wharton-risk-models,4.6,None,"['Business', 'Business Essentials']"
423,Data Processing and Feature Engineering with MATLAB,https://coursera.org/learn/feature-engineering-matlab,None,Intermediate Level,"['Data Science', 'Data Analysis']"
424,Planification et Design de Systèmes et Technologies d’Assainissement,https://coursera.org/learn/sanitation-fr,4.7,Intermediate Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
425,Intellectual Humility: Science,https://coursera.org/learn/intellectual-humility-science,4.7,Beginner Level,"['Arts and Humanities', 'Philosophy']"
426,Software Design Methods and Tools,https://coursera.org/learn/software-design-methods-tools,4.8,Intermediate Level,"['Computer Science', 'Software Development']"
427,Data Processing Using Python,https://coursera.org/learn/python-data-processing,4.4,Beginner Level,"['Computer Science', 'Software Development']"
428,How Entrepreneurs in Emerging Markets can master the Blockchain Technology,https://coursera.org/learn/entrepreneurs-blockchain-technology,4.7,Beginner Level,"['Business', 'Finance']"
429,Achieving Advanced Insights with BigQuery 日本語版,https://coursera.org/learn/gcp-advanced-insights-bigquery-jp,None,Beginner Level,"['Information Technology', 'Data Management']"
430,Management and financial accounting: Know your numbers 1,https://coursera.org/learn/management-accounting,4.5,Beginner Level,"['Business', 'Business Essentials']"
431,"Simulation, Algorithm Analysis, and Pointers",https://coursera.org/learn/simulation-algorithm-analysis-pointers,None,Beginner Level,"['Computer Science', 'Software Development']"
432,Leveraging Unstructured Data with Cloud Dataproc on Google Cloud Platform 日本語版,https://coursera.org/learn/leveraging-unstructured-data-dataproc-gcp-jp,4.8,Intermediate Level,"['Data Science', 'Data Analysis']"
433,Creating Toolpaths for a CNC Lathe,https://coursera.org/learn/cnc-toolpaths-cnc-lathe,4.9,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
434,Building Resilient Streaming Systems on Google Cloud Platform 日本語版,https://coursera.org/learn/building-resilient-streaming-systems-gcp-jp,4.8,Intermediate Level,"['Data Science', 'Data Analysis']"
435,"Protecting Public Health in a Changing Climate: A Primer for City, Local, and Regional Action",https://coursera.org/learn/climate-change,4.7,Beginner Level,"['Health', 'Public Health']"
436,Empowering Yourself in a Post-Truth World,https://coursera.org/learn/empowering-yourself-post-truth-world,None,Beginner Level,"['Personal Development', 'Personal Development']"
437,Big Data Emerging Technologies,https://coursera.org/learn/big-data-emerging-technologies,4.7,Beginner Level,"['Information Technology', 'Data Management']"
438,Projet de programmation (en Java),https://coursera.org/learn/projet-programmation-java,4.9,Intermediate Level,"['Computer Science', 'Software Development']"
439,صياغة الأفكار المحفِّزة على الابتكار,https://coursera.org/learn/uva-darden-design-thinking-innovation-ar,4.9,Beginner Level,"['Business', 'Business Strategy']"
440,A prática da gestão de clubes e federações esportivas,https://coursera.org/learn/fia-gestao-clubes-federacoes-esportivas,4.8,Beginner Level,"['Business', 'Leadership and Management']"
441,Innovating with the Business Model Canvas,https://coursera.org/learn/uva-darden-innovation-business-model-canvas,4.6,Beginner Level,"['Business', 'Leadership and Management']"
442,التفاوض الدولي وبين الثقافات,https://coursera.org/learn/international-negotiation-ar,5,Intermediate Level,"['Business', 'Leadership and Management']"
443,Age of Jefferson,https://coursera.org/learn/ageofjefferson,4.6,Beginner Level,"['Arts and Humanities', 'History']"
444,Design-Led Strategy: Design thinking for business strategy and entrepreneurship,https://coursera.org/learn/design-strategy,4.6,Intermediate Level,"['Business', 'Business Strategy']"
445,Android Graphics with OpenGL ES,https://coursera.org/learn/android-graphics-opengl-es,None,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
446,Business Strategy,https://coursera.org/learn/strategy-business,4.8,None,"['Business', 'Business Strategy']"
447,Google Cloud Platform Fundamentals: Core Infrastructure en Français,https://coursera.org/learn/gcp-fundamentals-fr,4.6,Intermediate Level,"['Information Technology', 'Cloud Computing']"
448,Linear Regression in R for Public Health,https://coursera.org/learn/linear-regression-r-public-health,4.7,Intermediate Level,"['Health', 'Public Health']"
449,The 3D Printing Revolution,https://coursera.org/learn/3d-printing-revolution,4.7,Beginner Level,"['Business', 'Entrepreneurship']"
450,Analysis of Business Problems,https://coursera.org/learn/analysis-business-problem-iese,4.7,None,"['Business', 'Marketing']"
451,Symmetric Cryptography,https://coursera.org/learn/symmetric-crypto,4.5,Intermediate Level,"['Computer Science', 'Computer Security and Networks']"
452,Introduction to Game Development,https://coursera.org/learn/game-development,4.8,None,"['Computer Science', 'Software Development']"
453,Advanced Clinical Data Science,https://coursera.org/learn/advanced-clinical-data-science,None,Advanced Level,"['Data Science', 'Data Analysis']"
454,Engineering Systems in Motion: Dynamics of Particles and Bodies in 2D Motion,https://coursera.org/learn/dynamics,4.8,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
455,Introduction to Particle Accelerators (NPAP MOOC),https://coursera.org/learn/introduction-particle-accelerators,4.7,Intermediate Level,"['Physical Science and Engineering', 'Research Methods']"
456,From Freedom Rides to Ferguson: Narratives of Nonviolence in the American Civil Rights Movement,https://coursera.org/learn/nonviolence,4.8,None,"['Social Sciences', 'Governance and Society']"
457,Gameplay en videojuegos,https://coursera.org/learn/videojuegos-play,4.2,None,"['Computer Science', 'Design and Product']"
458,Introduction to Machine Learning,https://coursera.org/learn/machine-learning-duke,4.6,Intermediate Level,"['Data Science', 'Machine Learning']"
459,Race and Cultural Diversity in American Life and History,https://coursera.org/learn/race-cultural-diversity-american-life,4.6,Beginner Level,"['Personal Development', 'Personal Development']"
460,Leer a Macondo: la obra de Gabriel García Márquez,https://coursera.org/learn/macondo-gabriel-garcia-marquez,4.9,None,"['Arts and Humanities', 'Music and Art']"
461,"Application of AI, InsurTech, and Real Estate Technology",https://coursera.org/learn/wharton-ai-application-insurtech-real-estate-technology,4.6,None,"['Business', 'Finance']"
462,Biology Meets Programming: Bioinformatics for Beginners,https://coursera.org/learn/bioinformatics,4.5,Beginner Level,"['Health', 'Health Informatics']"
463,Capstone: Create your own professional journalistic portfolio,https://coursera.org/learn/become-a-journalist-capstone,4.7,None,"['Arts and Humanities', 'Music and Art']"
464,Cómo autoconstruir tu vivienda,https://coursera.org/learn/como-autoconstruir-tu-vivienda,4.7,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
465,Data Management for Clinical Research,https://coursera.org/learn/clinical-data-management,4.7,Beginner Level,"['Health', 'Research']"
466,Disease Clusters,https://coursera.org/learn/disease-clusters,4.6,Beginner Level,"['Health', 'Public Health']"
467,Project Planning and Machine Learning,https://coursera.org/learn/industrial-iot-project-planning-machine-learning,4.5,Intermediate Level,"['Computer Science', 'Design and Product']"
468,Innovation for Entrepreneurs: From Idea to Marketplace,https://coursera.org/learn/innovative-entrepreneur,4.4,None,"['Business', 'Entrepreneurship']"
469,What does it mean to identify as Transgender or Gender Non-Conforming (TGNC)?,https://coursera.org/learn/tgnc-gender-identity-social-change,4.5,Beginner Level,"['Personal Development', 'Personal Development']"
470,Inspiring and Motivating Individuals,https://coursera.org/learn/motivate-people-teams,4.8,None,"['Business', 'Leadership and Management']"
471,Financer un projet à impact social,https://coursera.org/learn/financer-un-projet,None,Intermediate Level,"['Business', 'Entrepreneurship']"
472,Développement psychologique de l'enfant,https://coursera.org/learn/enfant-developpement,4.8,Beginner Level,"['Health', 'Psychology']"
473,Introduction to Neuroeconomics: How the Brain Makes Decisions,https://coursera.org/learn/neuroeconomics,4.7,Beginner Level,"['Social Sciences', 'Economics']"
474,Julia Scientific Programming,https://coursera.org/learn/julia-programming,4.5,Beginner Level,"['Data Science', 'Data Analysis']"
475,Capstone Value Creation through Innovation,https://coursera.org/learn/capstone-value-creation-innovation,None,Intermediate Level,"['Business', 'Entrepreneurship']"
476,Standardisation & Technology,https://coursera.org/learn/standardisation,None,Beginner Level,"['Business', 'Business Strategy']"
477,Математика для всех,https://coursera.org/learn/matematika-dlya-vseh,4.8,Beginner Level,"['Math and Logic', 'Math and Logic']"
478,Visualization for Data Journalism,https://coursera.org/learn/visualization-for-data-journalism,None,Beginner Level,"['Data Science', 'Data Analysis']"
479,Acuerdos globales para el desarrollo sostenible,https://coursera.org/learn/acuerdos-globales,4.7,Beginner Level,"['Social Sciences', 'Governance and Society']"
480,Finance for Non-Finance Professionals,https://coursera.org/learn/finance-for-non-finance,4.8,Beginner Level,"['Business', 'Finance']"
481,"Química, guerra y ética",https://coursera.org/learn/quimica-etica,4.7,Beginner Level,"['Health', 'Basic Science']"
482,IT Security: Defense against the digital dark arts,https://coursera.org/learn/it-security,4.8,Beginner Level,"['Information Technology', 'Security']"
483,Reliable Cloud Infrastructure: Design and Process en Français,https://coursera.org/learn/cloud-infrastructure-design-process-fr,None,Intermediate Level,"['Information Technology', 'Cloud Computing']"
484,Launching into Machine Learning auf Deutsch,https://coursera.org/learn/launching-machine-learning-de,None,Intermediate Level,"['Data Science', 'Machine Learning']"
485,Unraveling the Cycling City,https://coursera.org/learn/unraveling-the-cycling-city,None,Intermediate Level,"['Social Sciences', 'Governance and Society']"
486,Human-Centered Design: an Introduction,https://coursera.org/learn/human-computer-interaction,4.7,None,"['Computer Science', 'Design and Product']"
487,Doing Business in Russia,https://coursera.org/learn/business-russia,None,Beginner Level,"['Business', 'Business Essentials']"
488,Blockchain and Business: Applications and Implications,https://coursera.org/learn/blockchain-business,4.7,None,"['Business', 'Business Essentials']"
489,From Brand to Image: Creating High Impact Campaigns That Tell Brand Stories,https://coursera.org/learn/brand-image-high-impact-campaign,4.6,Beginner Level,"['Business', 'Marketing']"
490,Proyecto Final: Chino básico - Lenguaje y cultura empresarial,https://coursera.org/learn/proyecto-final-chino-basico,None,None,"['Language Learning', 'Other Languages']"
491,Модели антикризисного жизненного цикла корпоративных систем,https://coursera.org/learn/modeli-antikrizisnogo-jiznennogo-cikla-korporativnyh-sistem,4.8,None,"['Computer Science', 'Software Development']"
492,Tinkering Fundamentals: Motion and Mechanisms,https://coursera.org/learn/tinkering-motion-mechanisms,4.9,Beginner Level,"['Personal Development', 'Personal Development']"
493,Architecting with Google Kubernetes Engine: Foundations em Português Brasileiro,https://coursera.org/learn/foundations-google-kubernetes-engine-gke-br,None,Intermediate Level,"['Computer Science', 'Software Development']"
494,Técnicas Microscópicas de Caracterización,https://coursera.org/learn/tecnicas-microscopicas-caracterizacion,4.6,None,"['Physical Science and Engineering', 'Research Methods']"
495,Ecologie Politique: défi de la durabilité pour les démocraties,https://coursera.org/learn/ecologie-politique,4.7,Beginner Level,"['Arts and Humanities', 'Philosophy']"
496,Discover Best Practice Farming for a Sustainable 2050,https://coursera.org/learn/best-practice-farming-sustainable-2050,4.6,Beginner Level,"['Health', 'Basic Science']"
497,Sustainable Fashion,https://coursera.org/learn/sustainable-fashion,None,Beginner Level,"['Business', 'Business Strategy']"
498,Introduction to Electronics,https://coursera.org/learn/electronics,4.7,None,"['Physical Science and Engineering', 'Electrical Engineering']"
499,Corporate Sustainability. Understanding and Seizing the Strategic Opportunity,https://coursera.org/learn/corp-sustainability,4.6,None,"['Business', 'Business Strategy']"
500,"Lighting, Reflection, and Post Processing Effects",https://coursera.org/learn/lighting-reflection-post-processing,4.8,Intermediate Level,"['Computer Science', 'Software Development']"
501,Computational Social Science Capstone Project,https://coursera.org/learn/css-capstone,None,Beginner Level,"['Data Science', 'Data Analysis']"
502,"Cloud Computing Applications, Part 1: Cloud Systems and Infrastructure",https://coursera.org/learn/cloud-applications-part1,4.2,Intermediate Level,"['Computer Science', 'Computer Security and Networks']"
503,Feature Engineering en Español,https://coursera.org/learn/feature-engineering-es,4.6,Intermediate Level,"['Data Science', 'Machine Learning']"
504,Global Adolescent Health,https://coursera.org/learn/youth-health,4.7,Beginner Level,"['Health', 'Public Health']"
505,"English for Science, Technology, Engineering, and Mathematics",https://coursera.org/learn/stem,4.8,Beginner Level,"['Language Learning', 'Learning English']"
506,Introduction to Acoustics (Part 2),https://coursera.org/learn/intro-to-acoustics-2,4.6,Intermediate Level,"['Physical Science and Engineering', 'Physics and Astronomy']"
507,Low Poly Art For Video Games,https://coursera.org/learn/low-poly-art-video-games,None,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
508,Statistics for International Business,https://coursera.org/learn/statistics-international-business,3.6,None,"['Business', 'Finance']"
509,Введение в механику деформируемого твёрдого тела (Introduction to the mechanics of deformable solids),https://coursera.org/learn/mekhanika-tvordogo-tela,4.9,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
510,Equivalent Circuit Cell Model Simulation,https://coursera.org/learn/equivalent-circuit-cell-model-simulation,4.6,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
511,Continuous Integration,https://coursera.org/learn/continuous-integration,3.6,Intermediate Level,"['Computer Science', 'Software Development']"
512,Representaciones culturales de las sexualidades,https://coursera.org/learn/representaciones-culturales,4.8,Beginner Level,"['Arts and Humanities', 'Philosophy']"
513,Инвестиции в акции,https://coursera.org/learn/investicii-akcii,3.9,None,"['Business', 'Finance']"
514,"History of Rock, Part One",https://coursera.org/learn/history-of-rock,4.8,None,"['Arts and Humanities', 'Music and Art']"
515,Политическая география,https://coursera.org/learn/politicheskaya-geografiya,4.8,Beginner Level,"['Social Sciences', 'Governance and Society']"
516,Interactive Computer Graphics,https://coursera.org/learn/interactive-computer-graphics,4.4,Intermediate Level,"['Computer Science', 'Software Development']"
517,Teoria Geral da Administração para Executivos,https://coursera.org/learn/tga-executivos,4.8,Beginner Level,"['Business', 'Business Essentials']"
518,Gathering and Developing the News,https://coursera.org/learn/gathering-the-news,4.7,None,"['Arts and Humanities', 'Music and Art']"
519,Mitigating Security Vulnerabilities on Google Cloud Platform,https://coursera.org/learn/mitigating-security-vulnerabilites-gcp,4.7,Intermediate Level,"['Information Technology', 'Cloud Computing']"
520,Digital Transformation of Financial Services - Capstone Project,https://coursera.org/learn/digital-transformation-financial-services-project,4.3,Intermediate Level,"['Business', 'Business Strategy']"
521,Native Advertising,https://coursera.org/learn/native-advertising,None,Beginner Level,"['Business', 'Marketing']"
522,The Wonders and Challenges of Bible Education,https://coursera.org/learn/wonders-challenges-bible-education,None,Beginner Level,"['Social Sciences', 'Education']"
523,Identifying Patient Populations,https://coursera.org/learn/computational-phenotyping,4.5,Intermediate Level,"['Data Science', 'Data Analysis']"
524,Методологии антикризисного жизненного цикла корпоративных систем,https://coursera.org/learn/korporativnye-antikrizisnye-methodology,4.6,None,"['Computer Science', 'Software Development']"
525,Fundamentals of Management,https://coursera.org/learn/fundamentals-of-management,4.5,None,"['Business', 'Leadership and Management']"
526,Data Pipelines with TensorFlow Data Services,https://coursera.org/learn/data-pipelines-tensorflow,None,Intermediate Level,"['Computer Science', 'Software Development']"
527,Advanced Styling with Responsive Design,https://coursera.org/learn/responsivedesign,4.7,None,"['Computer Science', 'Mobile and Web Development']"
528,Managing Talent,https://coursera.org/learn/managing-talent,4.5,None,"['Business', 'Leadership and Management']"
529,Systems Biology and Biotechnology Capstone,https://coursera.org/learn/systems-biology-capstone,4.5,None,"['Physical Science and Engineering', 'Research Methods']"
530,Cómo resolver problemas y tomar decisiones con eficacia,https://coursera.org/learn/resolucion-decisiones,4.4,None,"['Business', 'Leadership and Management']"
531,"Algorithms, Data Collection, and Starting to Code",https://coursera.org/learn/algorithms-data-collection-code,4,Beginner Level,"['Computer Science', 'Software Development']"
532,Ferrous Technology II,https://coursera.org/learn/ferrous-technology-2,4.7,Beginner Level,"['Physical Science and Engineering', 'Electrical Engineering']"
533,Molecular Evolution (Bioinformatics IV),https://coursera.org/learn/molecular-evolution,4.5,Beginner Level,"['Health', 'Health Informatics']"
534,Value Chain Management Capstone,https://coursera.org/learn/value-chain-capstone,4.8,Intermediate Level,"['Business', 'Leadership and Management']"
535,Взаимодействие языков и культур: сохраняем и расширяем свою идентичность (на примере изучения татарского языка как родного и иностранного),https://coursera.org/learn/tatar-language-and-culture,None,Beginner Level,"['Language Learning', 'Other Languages']"
536,Речевой этикет: вежливость и коммуникативные стратегии,https://coursera.org/learn/rechevoj-etiket,4.6,Beginner Level,"['Arts and Humanities', 'History']"
537,Egiptología (Egyptology),https://coursera.org/learn/egypt,4.9,Beginner Level,"['Arts and Humanities', 'History']"
538,Front-End Web Development with React,https://coursera.org/learn/front-end-react,4.7,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
539,EU policy and implementation: making Europe work!,https://coursera.org/learn/eu-making-europe-work,4.4,Intermediate Level,"['Social Sciences', 'Governance and Society']"
540,Beneficios y características de las redes sociales más significativas,https://coursera.org/learn/redes-sociales-caracteristicas,4.3,None,"['Business', 'Marketing']"
541,International Law in Action: the Arbitration of International Disputes,https://coursera.org/learn/arbitration-international-disputes,4.8,None,"['Social Sciences', 'Law']"
542,Medical Neuroscience,https://coursera.org/learn/medical-neuroscience,4.9,Advanced Level,"['Health', 'Research']"
543,Pre-Calculus,https://coursera.org/learn/introduccion-al-calculo,4.7,Beginner Level,"['Math and Logic', 'Math and Logic']"
544,Поиск структуры в данных,https://coursera.org/learn/unsupervised-learning,4.7,Intermediate Level,"['Data Science', 'Machine Learning']"
545,Inglés Empresarial: el márketing y ventas,https://coursera.org/learn/ingles-empresarial-marketing-ventas,4.7,Intermediate Level,"['Language Learning', 'Learning English']"
546,Machine Learning for Business Professionals,https://coursera.org/learn/machine-learning-business-professionals,4.6,Intermediate Level,"['Data Science', 'Machine Learning']"
547,Global Statistics - Composite Indices for International Comparisons,https://coursera.org/learn/global-statistics,4.9,Intermediate Level,"['Data Science', 'Data Analysis']"
548,"Internet History, Technology, and Security",https://coursera.org/learn/internet-history,4.8,None,"['Computer Science', 'Computer Security and Networks']"
549,Games without Chance: Combinatorial Game Theory,https://coursera.org/learn/combinatorial-game-theory,4.3,None,"['Math and Logic', 'Math and Logic']"
550,Психолингвистика (Psycholinguistics),https://coursera.org/learn/psikholingvistika,4.8,None,"['Health', 'Psychology']"
551,Operations Analytics,https://coursera.org/learn/wharton-operations-analytics,4.7,None,"['Business', 'Business Strategy']"
552,"Requerimientos, planeación, ejecución y medición de estrategias para redes sociales",https://coursera.org/learn/mercadotecnia-sociales,4.5,None,"['Business', 'Marketing']"
553,ART of the MOOC: Arte Público y Pedagogía,https://coursera.org/learn/arte-publico-pedagogia,4.7,None,"['Arts and Humanities', 'Music and Art']"
554,Keeping up with Change: Issues for the Finance Professional,https://coursera.org/learn/change-for-the-finance-professional,4.7,None,"['Business', 'Finance']"
555,How To Land the Job You Want (Capstone Project),https://coursera.org/learn/job-interview-capstone,None,None,"['Business', 'Business Strategy']"
556,Evaluación de inversiones en Bienes de Capital,https://coursera.org/learn/evaluaciondeinversiones,4.2,Intermediate Level,"['Business', 'Finance']"
557,Pixel Art for Video Games,https://coursera.org/learn/pixel-art-video-games,4.4,Beginner Level,"['Arts and Humanities', 'Music and Art']"
558,Foundations of Teaching for Learning: Being a Professional,https://coursera.org/learn/professional-teacher,4.7,None,"['Social Sciences', 'Education']"
559,علم النجاح: ما يجب أن تعرفه من الباحثين,https://coursera.org/learn/success-ar,4.8,Beginner Level,"['Business', 'Leadership and Management']"
560,Genomic Data Science Capstone,https://coursera.org/learn/genomic-data-science-project,4.6,None,"['Data Science', 'Data Analysis']"
561,التقانة والمستشعرات النانوية - الجزء الثاني,https://coursera.org/learn/taknulujia-alnnanu2,None,None,"['Physical Science and Engineering', 'Chemistry']"
562,First Steps in Making the Business Case for Sustainability,https://coursera.org/learn/sustainable-business,4.7,Beginner Level,"['Business', 'Leadership and Management']"
563,Cost and Economics in Pricing Strategy,https://coursera.org/learn/uva-darden-bcg-pricing-strategy-cost-economics,4.8,Beginner Level,"['Business', 'Marketing']"
564,Costos para los Negocios,https://coursera.org/learn/costosparanegocios,4.8,Intermediate Level,"['Business', 'Marketing']"
565,Feeding the World,https://coursera.org/learn/feedingtheworld,4.6,Beginner Level,"['Health', 'Basic Science']"
566,Software Architecture for the Internet of Things,https://coursera.org/learn/iot-software-architecture,4.2,None,"['Computer Science', 'Software Development']"
567,Control automático: La tecnología invisible,https://coursera.org/learn/control-automatico,4.6,Beginner Level,"['Physical Science and Engineering', 'Electrical Engineering']"
568,"FinTech: Foundations, Payments, and Regulations",https://coursera.org/learn/wharton-fintech-overview-payments-regulations,4.7,Beginner Level,"['Business', 'Business Essentials']"
569,Spatial Data Science and Applications,https://coursera.org/learn/spatial-data-science,4.4,Intermediate Level,"['Data Science', 'Data Analysis']"
570,口腔种植学 (Implant Dentistry),https://coursera.org/learn/implant-dentistry-chinese,4.9,Intermediate Level,"['Health', 'Patient Care']"
571,Fundamentals of Global Energy Business,https://coursera.org/learn/energy-business,4.6,None,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
572,Evaluating the Quality of Healthcare Delivery,https://coursera.org/learn/quality-of-healthcare,None,Beginner Level,"['Health', 'Healthcare Management']"
573,Introduction to Genetics and Evolution,https://coursera.org/learn/genetics-evolution,4.8,None,"['Health', 'Basic Science']"
574,The Outcomes and Interventions of Health Informatics,https://coursera.org/learn/the-outcomes-and-interventions-of-health-informatics,4.5,Beginner Level,"['Health', 'Health Informatics']"
575,"History of Rock, Part Two",https://coursera.org/learn/history-of-rock-2,4.8,None,"['Arts and Humanities', 'Music and Art']"
576,Nursing Informatics Training and Education,https://coursera.org/learn/training-others-nursing-informatics,4.6,Intermediate Level,"['Health', 'Health Informatics']"
577,Современный менеджмент,https://coursera.org/learn/modernmanagement,4.7,None,"['Business', 'Business Essentials']"
578,Social Impact Strategy: Tools for Entrepreneurs and Innovators,https://coursera.org/learn/social-impact,4.8,Beginner Level,"['Business', 'Entrepreneurship']"
579,Art and Science of Machine Learning 日本語版,https://coursera.org/learn/art-science-ml-jp,4,Intermediate Level,"['Data Science', 'Machine Learning']"
580,Geopolítica y gobernanza global: riesgos y oportunidades,https://coursera.org/learn/geopoliticaygobernanzaglobal,4.8,None,"['Social Sciences', 'Governance and Society']"
581,Mechanics of Materials II: Thin-Walled Pressure Vessels and Torsion,https://coursera.org/learn/mechanics2,4.8,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
582,Securing and Integrating Components of your Application,https://coursera.org/learn/securing-integrating-components-app,4.6,Intermediate Level,"['Computer Science', 'Software Development']"
583,iOS App Development Basics,https://coursera.org/learn/ios-app-development-basics,4.2,None,"['Computer Science', 'Mobile and Web Development']"
584,Calculus and Optimization for Machine Learning,https://coursera.org/learn/calculus-and-optimization-for-machine-learning,None,Intermediate Level,"['Math and Logic', 'Math and Logic']"
585,Framework for Data Collection and Analysis,https://coursera.org/learn/data-collection-framework,4.1,Intermediate Level,"['Data Science', 'Data Analysis']"
586,Relationship Management,https://coursera.org/learn/relationship-management,4.7,Advanced Level,"['Business', 'Leadership and Management']"
587,Estilos de Liderazgo: opciones para avanzar en desafíos complejos,https://coursera.org/learn/estilos-liderazgo,4.9,Intermediate Level,"['Personal Development', 'Personal Development']"
588,Studying Cities: Social Science Methods for Urban Research,https://coursera.org/learn/studying-cities-social-science-methods-for-urban-research,4.6,None,"['Social Sciences', 'Education']"
589,Introduction to Chemistry: Reactions and Ratios,https://coursera.org/learn/intro-chemistry,4.7,Beginner Level,"['Physical Science and Engineering', 'Chemistry']"
590,Embedded Software and Hardware Architecture,https://coursera.org/learn/embedded-software-hardware,4.6,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
591,International Leadership and Organizational Behavior,https://coursera.org/learn/organizational-behavior,4.7,None,"['Business', 'Leadership and Management']"
592,Negociações de sucesso: estratégias e habilidades essenciais (em Português),https://coursera.org/learn/negociacao,4.9,None,"['Business', 'Business Essentials']"
593,Mastering Data Analysis in Excel,https://coursera.org/learn/analytics-excel,4.2,None,"['Data Science', 'Data Analysis']"
594,Dealing With Missing Data,https://coursera.org/learn/missing-data,3.8,None,"['Data Science', 'Data Analysis']"
595,The Arts and Science of Relationships: Understanding Human Needs,https://coursera.org/learn/human-needs,4.4,Beginner Level,"['Personal Development', 'Personal Development']"
596,Weight Management: Beyond Balancing Calories,https://coursera.org/learn/weight-management-beyond-balancing-calories,4.7,Beginner Level,"['Health', 'Nutrition']"
597,Elastic Cloud Infrastructure: Scaling and Automation en Español,https://coursera.org/learn/gcp-infrastructure-scaling-automation-es,4.8,Intermediate Level,"['Information Technology', 'Cloud Computing']"
598,English for Business and Entrepreneurship,https://coursera.org/learn/business,4.8,Beginner Level,"['Language Learning', 'Learning English']"
599,"Инженер - менеджер настоящего, системный архитектор будущего",https://coursera.org/learn/systems-engineering-5,None,Intermediate Level,"['Business', 'Business Strategy']"
600,Chinese Culture and Contemporary China,https://coursera.org/learn/china-culture-contemporary,4.6,Beginner Level,"['Arts and Humanities', 'History']"
601,3D Printing Applications,https://coursera.org/learn/3d-printing-applications,4.6,Beginner Level,"['Business', 'Entrepreneurship']"
602,Strategic Management of Innovation,https://coursera.org/learn/strategic-management-of-innovation,4.7,None,"['Business', 'Business Strategy']"
603,Fundamentals of Accounting Capstone,https://coursera.org/learn/accounting-fundamentals-project,None,Beginner Level,"['Business', 'Business Essentials']"
604,Principles of fMRI 2,https://coursera.org/learn/functional-mri-2,4.7,None,"['Data Science', 'Data Analysis']"
605,"Introduzione alla fisica sperimentale: elettromagnetismo, ottica, fisica moderna",https://coursera.org/learn/fisica-sperimentale-fisica-moderna,4.9,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
606,Coaching Practices,https://coursera.org/learn/coaching-practices,4.7,None,"['Business', 'Leadership and Management']"
607,Single Page Web Applications with AngularJS,https://coursera.org/learn/single-page-web-apps-with-angularjs,4.9,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
608,"Functions, Methods, and Interfaces in Go",https://coursera.org/learn/golang-functions-methods,4.6,Intermediate Level,"['Computer Science', 'Software Development']"
609,Linear Circuits 2: AC Analysis,https://coursera.org/learn/linear-circuits-ac-analysis,4.7,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
610,Opioid Epidemic: From Evidence to Impact,https://coursera.org/learn/opioid-epidemic,None,Beginner Level,"['Health', 'Public Health']"
611,Bacteria and Chronic Infections,https://coursera.org/learn/bacterial-infections,4.6,None,"['Health', 'Patient Care']"
612,Human Resources Management Capstone: HR for People Managers,https://coursera.org/learn/human-resources-management-capstone,4.8,None,"['Business', 'Leadership and Management']"
613,Ethical Social Media,https://coursera.org/learn/ethical-social-media,4.5,None,"['Social Sciences', 'Governance and Society']"
614,Electric Vehicles and Mobility,https://coursera.org/learn/electric-vehicles-mobility,4.5,Beginner Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
615,Estrategia Empresarial,https://coursera.org/learn/estrategia-empresarial,4.7,Beginner Level,"['Business', 'Leadership and Management']"
616,Cultural intelligence: Become a global citizen,https://coursera.org/learn/cultural-intelligence,None,None,"['Business', 'Leadership and Management']"
617,The Raspberry Pi Platform and Python Programming for the Raspberry Pi,https://coursera.org/learn/raspberry-pi-platform,4.6,None,"['Computer Science', 'Software Development']"
618,Hands-on Text Mining and Analytics,https://coursera.org/learn/text-mining-analytics,4,Intermediate Level,"['Data Science', 'Data Analysis']"
619,Materials Science: 10 Things Every Engineer Should Know,https://coursera.org/learn/materials-science,4.6,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
620,Python and Machine-Learning for Asset Management with Alternative Data Sets,https://coursera.org/learn/machine-learning-asset-management-alternative-data,4.6,Intermediate Level,"['Business', 'Finance']"
621,Сравнение и создание групп,https://coursera.org/learn/sravneniye-sozdaniye-grupp,4.5,Intermediate Level,"['Data Science', 'Data Analysis']"
622,Agile Planning for Software Products,https://coursera.org/learn/agile-planning-for-software-products,4.7,None,"['Computer Science', 'Software Development']"
623,Data Analytics for Lean Six Sigma,https://coursera.org/learn/data-analytics-for-lean-six-sigma,4.8,Beginner Level,"['Data Science', 'Data Analysis']"
624,"System Validation (4): Modelling Software, Protocols, and other behaviour",https://coursera.org/learn/system-validation-software-protocols,4.7,Advanced Level,"['Computer Science', 'Software Development']"
625,Electric Power Systems,https://coursera.org/learn/electric-power-systems,4.7,Beginner Level,"['Physical Science and Engineering', 'Electrical Engineering']"
626,Disability Awareness and Support,https://coursera.org/learn/disability-awareness,4.5,None,"['Social Sciences', 'Education']"
627,Management Fundamentals,https://coursera.org/learn/management-fundamentals-healthcare-administrators,4.6,Beginner Level,"['Business', 'Leadership and Management']"
628,Cryptography,https://coursera.org/learn/cryptography,4.5,None,"['Computer Science', 'Computer Security and Networks']"
629,Business English: Meetings,https://coursera.org/learn/business-english-meetings,4.7,Intermediate Level,"['Language Learning', 'Learning English']"
630,International and Cross-Cultural Negotiation,https://coursera.org/learn/international-negotiation,4.7,Intermediate Level,"['Business', 'Leadership and Management']"
631,Electrones en Acción: Electrónica y Arduinos para tus propios Inventos,https://coursera.org/learn/electrones-en-accion,4.8,None,"['Physical Science and Engineering', 'Electrical Engineering']"
632,"Biological Diversity (Theories, Measures and Data sampling techniques)",https://coursera.org/learn/biological-diversity,4.3,Intermediate Level,"['Health', 'Basic Science']"
633,Leveraging Unstructured Data with Cloud Dataproc on Google Cloud Platform auf Deutsch,https://coursera.org/learn/leveraging-unstructured-data-dataproc-gcp-de,None,Intermediate Level,"['Data Science', 'Data Analysis']"
634,Sustainable Agricultural Land Management,https://coursera.org/learn/sustainable-agriculture,4.7,Beginner Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
635,Auditing II: The Practice of Auditing,https://coursera.org/learn/auditing-part2-the-practice,4.7,None,"['Business', 'Business Essentials']"
636,Monetary Policy in the Asia Pacific,https://coursera.org/learn/monetary-policy-asia-pacific,4.8,Intermediate Level,"['Social Sciences', 'Economics']"
637,Preparing for the Google Cloud Associate Cloud Engineer Exam,https://coursera.org/learn/preparing-cloud-associate-cloud-engineer-exam,4.7,Beginner Level,"['Information Technology', 'Cloud Computing']"
638,CAD/BIM技術與應用專項課程(CAD/BIM Specialization),https://coursera.org/learn/cad-bim-shiwu,None,None,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
639,Accounting Data Analytics with Python,https://coursera.org/learn/accounting-data-analytics-python,None,Intermediate Level,"['Data Science', 'Data Analysis']"
640,US Social Services Compared,https://coursera.org/learn/welfare-state,4.7,Beginner Level,"['Social Sciences', 'Governance and Society']"
641,Quantum Optics 2 - Two photons and more,https://coursera.org/learn/quantum-optics-two-photons,5,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
642,Introduction to Blockchain: Using and Securing Cryptocurrencies,https://coursera.org/learn/blockchain-using-securing-cryptocurrencies,4.9,Beginner Level,"['Information Technology', 'Security']"
643,AWS Fundamentals: Building Serverless Applications,https://coursera.org/learn/aws-fundamentals-building-serverless-applications,4.7,Beginner Level,"['Information Technology', 'Cloud Computing']"
644,UX Design Fundamentals,https://coursera.org/learn/ux-design-fundamentals,4.8,Beginner Level,"['Arts and Humanities', 'Music and Art']"
645,Évaluation & Mesure d'Impact Social,https://coursera.org/learn/evaluation-mesure-impact-social,4.6,Beginner Level,"['Business', 'Entrepreneurship']"
646,Interfacing with the Raspberry Pi,https://coursera.org/learn/raspberry-pi-interface,4.6,None,"['Physical Science and Engineering', 'Electrical Engineering']"
647,Leadership Communication for Maximum Impact: Storytelling,https://coursera.org/learn/leadership-storytelling,4.5,None,"['Business', 'Leadership and Management']"
648,Mi nueva empresa: los siguientes pasos,https://coursera.org/learn/nueva-empresa,None,Beginner Level,"['Business', 'Entrepreneurship']"
649,Practical Reinforcement Learning,https://coursera.org/learn/practical-rl,4.2,Advanced Level,"['Data Science', 'Machine Learning']"
650,Programming Mobile Applications for Android Handheld Systems: Part 1,https://coursera.org/learn/android-programming,4.6,None,"['Computer Science', 'Mobile and Web Development']"
651,Pricing Strategy in Practice,https://coursera.org/learn/uva-darden-bcg-pricing-strategy-practice,4.7,Intermediate Level,"['Business', 'Marketing']"
652,Developing FPGA-accelerated cloud applications with SDAccel: Practice,https://coursera.org/learn/fpga-sdaccel-practice,None,Intermediate Level,"['Computer Science', 'Design and Product']"
653,Razonamiento artificial,https://coursera.org/learn/razonamiento-artificial,4.4,Intermediate Level,"['Computer Science', 'Algorithms']"
654,Investment Strategy,https://coursera.org/learn/investment-philosophy,4.4,Intermediate Level,"['Business', 'Finance']"
655,"Sustainable Business: Big Issues, Big Changes",https://coursera.org/learn/sustainable-business-changes,4.6,Beginner Level,"['Business', 'Leadership and Management']"
656,Operating Systems and You: Becoming a Power User,https://coursera.org/learn/os-power-user,4.6,Beginner Level,"['Information Technology', 'Support and Operations']"
657,Прикладные задачи анализа данных,https://coursera.org/learn/data-analysis-applications,4.4,Intermediate Level,"['Data Science', 'Data Analysis']"
658,Biosphere 2 Science for the Future of Our Planet,https://coursera.org/learn/biosphere-science-future,4.8,Beginner Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
659,Entrepreneurship,https://coursera.org/learn/entrepreneurship,4.7,Beginner Level,"['Business', 'Business Strategy']"
660,Surveillance Systems: The Building Blocks,https://coursera.org/learn/epidemiology-surveillance-systems,None,Beginner Level,"['Health', 'Public Health']"
661,Mergers and Acquisitions – The Relentless Pursuit of Synergy,https://coursera.org/learn/mergers-and-acquisitions,4.4,Intermediate Level,"['Business', 'Finance']"
662,Channel Management and Retailing,https://coursera.org/learn/channel-management,4.3,Beginner Level,"['Business', 'Marketing']"
663,Software Product Management Capstone,https://coursera.org/learn/software-product-management-capstone,4.8,None,"['Computer Science', 'Design and Product']"
664,Essential Cloud Infrastructure: Core Services,https://coursera.org/learn/gcp-infrastructure-core-services,4.7,Intermediate Level,"['Information Technology', 'Cloud Computing']"
665,Firearm Purchaser Licensing Teach-Out: The Background Check Policy Not Enough People Are Talking About,https://coursera.org/learn/firearm-licensing,None,Beginner Level,"['Social Sciences', 'Governance and Society']"
666,Script Writing: Write a Pilot Episode for a TV or Web Series (Project-Centered Course),https://coursera.org/learn/script-writing,4.5,None,"['Arts and Humanities', 'Music and Art']"
667,Success,https://coursera.org/learn/wharton-succcess,4.8,Beginner Level,"['Personal Development', 'Personal Development']"
668,Getting and Cleaning Data,https://coursera.org/learn/data-cleaning,4.6,None,"['Data Science', 'Data Analysis']"
669,Trading Basics,https://coursera.org/learn/trading-basics,4.2,Beginner Level,"['Business', 'Finance']"
670,"Literacy Teaching and Learning: Aims, Approaches and Pedagogies",https://coursera.org/learn/literacy-teaching-learning,4.5,Beginner Level,"['Social Sciences', 'Education']"
671,Cálculo Diferencial e Integral unidos por el Teorema Fundamental del Cálculo,https://coursera.org/learn/calculo-diferencial,4.5,None,"['Math and Logic', 'Math and Logic']"
672,Understanding economic policymaking,https://coursera.org/learn/economic-policy,4.8,None,"['Social Sciences', 'Governance and Society']"
673,Advanced Linear Models for Data Science 2: Statistical Linear Models,https://coursera.org/learn/linear-models-2,4.7,Advanced Level,"['Data Science', 'Probability and Statistics']"
674,Functional Program Design in Scala,https://coursera.org/learn/progfun2,4.5,Intermediate Level,"['Computer Science', 'Software Development']"
675,Thoracic Oncology,https://coursera.org/learn/thoracic-oncology,4.9,Advanced Level,"['Health', 'Basic Science']"
676,Experimentation for Improvement,https://coursera.org/learn/experimentation,4.8,Intermediate Level,"['Data Science', 'Probability and Statistics']"
677,"Major Engineering Projects: Governance, Risk and Scope",https://coursera.org/learn/major-engineering-projects,4.7,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
678,"Understanding China, 1700-2000: A Data Analytic Approach, Part 1",https://coursera.org/learn/understanding-china-history-part-1,4.5,None,"['Data Science', 'Data Analysis']"
679,Accounting Analysis I: The Role of Accounting as an Information System,https://coursera.org/learn/accounting-information-system,4.9,Intermediate Level,"['Business', 'Business Essentials']"
680,Data Analysis Tools,https://coursera.org/learn/data-analysis-tools,4.5,None,"['Data Science', 'Data Analysis']"
681,Introduction to Who Wrote Shakespeare,https://coursera.org/learn/shakespeare,4.5,Beginner Level,"['Arts and Humanities', 'History']"
682,Ruby on Rails: An Introduction,https://coursera.org/learn/ruby-on-rails-intro,4.5,None,"['Computer Science', 'Mobile and Web Development']"
683,Preventative Healthcare for the Newborn Baby,https://coursera.org/learn/preventive-healthcare-newborn-baby,4.7,Beginner Level,"['Health', 'Patient Care']"
684,Introduction aux Droits de l’Homme,https://coursera.org/learn/droits-de-lhomme,4.8,None,"['Social Sciences', 'Law']"
685,Nanophotonics and Detectors,https://coursera.org/learn/nanophotonics-detectors,None,Advanced Level,"['Physical Science and Engineering', 'Electrical Engineering']"
686,Character Design for Video Games,https://coursera.org/learn/game-character-design,4.6,Beginner Level,"['Arts and Humanities', 'Music and Art']"
687,"Introduzione alla fisica sperimentale: meccanica, termodinamica",https://coursera.org/learn/fisica-sperimentale-meccanica-termodinamica,5,Beginner Level,"['Physical Science and Engineering', 'Physics and Astronomy']"
688,Autodesk Certified Professional: Inventor for Mechanical Design Exam Prep,https://coursera.org/learn/autodesk-inventor-mechanical-design,None,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
689,Serverless Machine Learning with Tensorflow on Google Cloud Platform em Português Brasileiro,https://coursera.org/learn/serverless-machine-learning-gcp-br,4.7,Intermediate Level,"['Data Science', 'Machine Learning']"
690,Using Python to Access Web Data,https://coursera.org/learn/python-network-data,4.8,None,"['Computer Science', 'Software Development']"
691,Matrix Methods,https://coursera.org/learn/matrix-methods,4.2,Intermediate Level,"['Math and Logic', 'Math and Logic']"
692,Ingeniería de Tráfico,https://coursera.org/learn/ingenieria-trafico,4.6,Beginner Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
693,Healthcare Consumerism and Implication for Care Delivery,https://coursera.org/learn/healthcareconsumerism,4.5,Beginner Level,"['Health', 'Healthcare Management']"
694,Multi-Axis CNC Toolpaths,https://coursera.org/learn/multi-axis-cnc-toolpaths,5,Advanced Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
695,Finance for Everyone: Markets,https://coursera.org/learn/finance-markets,4.6,Beginner Level,"['Business', 'Finance']"
696,Social Marketing Capstone Project,https://coursera.org/learn/social-marketing-capstone,4.9,None,"['Business', 'Marketing']"
697,Seguridad agroalimentaria,https://coursera.org/learn/seguridad-alimentaria,4.7,Beginner Level,"['Health', 'Nutrition']"
698,New Models of Business in Society,https://coursera.org/learn/uva-darden-business-society,4.6,None,"['Business', 'Leadership and Management']"
699,"Imagery, Automation, and Applications",https://coursera.org/learn/gis-applications,4.9,None,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
700,Terrorism and Counterterrorism: Comparing Theory and Practice,https://coursera.org/learn/terrorism,4.8,Beginner Level,"['Social Sciences', 'Governance and Society']"
701,Exploring Quantum Physics,https://coursera.org/learn/quantum-physics,None,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
702,MongoDB Aggregation Framework,https://coursera.org/learn/mongodb-aggregation-framework,4.7,Intermediate Level,"['Data Science', 'Data Analysis']"
703,Sales & Marketing Alignment,https://coursera.org/learn/sales-marketing-alignment,4.5,Intermediate Level,"['Business', 'Business Strategy']"
704,Введение в теорию построения процедур множественной проверки гипотез,https://coursera.org/learn/multiple-hypotheses-testing,None,Intermediate Level,"['Data Science', 'Probability and Statistics']"
705,Statistical Thermodynamics: Molecules to Machines,https://coursera.org/learn/statistical-thermodynamics-cm,4,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
706,Essential Cloud Infrastructure: Core Services 日本語版,https://coursera.org/learn/gcp-infrastructure-core-services-jp,4.7,Intermediate Level,"['Information Technology', 'Cloud Computing']"
707,Sequence Models,https://coursera.org/learn/nlp-sequence-models,4.8,Intermediate Level,"['Data Science', 'Machine Learning']"
708,Discrete Optimization,https://coursera.org/learn/discrete-optimization,4.9,Intermediate Level,"['Computer Science', 'Algorithms']"
709,Entreprendre dans les Industries Culturelles à l'ère du numérique,https://coursera.org/learn/entreprendre-culture,4.7,Beginner Level,"['Business', 'Entrepreneurship']"
710,Advanced Financial Reporting: Accounting for Business Combinations and Preparation of Consolidated Financial Statements,https://coursera.org/learn/advanced-financial-reporting,4.8,Advanced Level,"['Business', 'Business Essentials']"
711,Introducción a los modelos de demanda de transporte,https://coursera.org/learn/demanda-de-transporte,4.7,Intermediate Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
712,Developing Android Apps with App Inventor,https://coursera.org/learn/app-inventor-android,4.4,Beginner Level,"['Computer Science', 'Mobile and Web Development']"
713,Psychological First Aid,https://coursera.org/learn/psychological-first-aid,4.8,None,"['Health', 'Psychology']"
714,Healing with the Arts,https://coursera.org/learn/healing-with-the-arts,4.6,None,"['Personal Development', 'Personal Development']"
715,Закон стартапа: юридические основы технологического бизнеса,https://coursera.org/learn/zakon-startapa-tekhnologicheskogo-biznesa,None,Intermediate Level,"['Business', 'Entrepreneurship']"
716,Cyber Threats and Attack Vectors,https://coursera.org/learn/cyber-threats-attack-vectors,4.6,Beginner Level,"['Information Technology', 'Security']"
717,Elastic Cloud Infrastructure: Containers and Services en Français,https://coursera.org/learn/gcp-infrastructure-containers-services-fr,None,Intermediate Level,"['Information Technology', 'Cloud Computing']"
718,中医药与中华传统文化,https://coursera.org/learn/zhong-yi-yao-wen-hua,4.3,None,"['Health', 'Public Health']"
719,The Modern and the Postmodern (Part 1),https://coursera.org/learn/modern-postmodern-1,4.8,None,"['Arts and Humanities', 'Philosophy']"
720,Capstone Project: Teaching Impacts of Technology,https://coursera.org/learn/teach-impacts-technology-capstone,None,Beginner Level,"['Social Sciences', 'Education']"
721,Introduction to Enterprise Computing,https://coursera.org/learn/introduction-enterprise-computing,4.8,Beginner Level,"['Information Technology', 'Cloud Computing']"
722,Цифровая обработка сигналов Часть 1. Сигналы и системы дискретного времени,https://coursera.org/learn/cifrovaya-obrabotka-signalov-chast1,None,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
723,Emotions: a Philosophical Introduction,https://coursera.org/learn/emotions,4.2,Beginner Level,"['Arts and Humanities', 'Philosophy']"
724,Recommendation Systems with TensorFlow on GCP,https://coursera.org/learn/recommendation-models-gcp,4.5,Advanced Level,"['Data Science', 'Machine Learning']"
725,How Google does Machine Learning em Português Brasileiro,https://coursera.org/learn/google-machine-learning-br,4.8,Intermediate Level,"['Data Science', 'Machine Learning']"
726,Налоги и налогообложение: специальные налоговые режимы,https://coursera.org/learn/specialnye-nalogovye-rezhimy,4.3,Beginner Level,"['Business', 'Finance']"
727,Chinese for HSK 3 PART I,https://coursera.org/learn/hsk-3,4.7,Intermediate Level,"['Language Learning', 'Other Languages']"
728,Scandinavian Film and Television,https://coursera.org/learn/scandinavian-movies-tv,4.6,Beginner Level,"['Arts and Humanities', 'Music and Art']"
729,Business Process Management in Healthcare Organizations,https://coursera.org/learn/business-process-management-in-healthcare-organizations,4.5,Beginner Level,"['Health', 'Healthcare Management']"
730,Практика разрешения конфликтов. Я - семья - работа - общество,https://coursera.org/learn/conflict-resolution,4.8,Beginner Level,"['Personal Development', 'Personal Development']"
731,ART of the MOOC: Activismo y Movimientos Sociales,https://coursera.org/learn/activismo-movimientos-sociales,5,None,"['Arts and Humanities', 'Music and Art']"
732,On Premises Installation and Fundamentals with Google Cloud's Apigee API Platform,https://coursera.org/learn/onprem-fundamentals-apigee-gcp,4.7,Intermediate Level,"['Computer Science', 'Software Development']"
733,Qualitative Research,https://coursera.org/learn/qualitative-research,4.5,Intermediate Level,"['Business', 'Marketing']"
734,Serverless Data Analysis with Google BigQuery and Cloud Dataflow 日本語版,https://coursera.org/learn/serverless-data-analysis-bigquery-cloud-dataflow-gcp-jp,4.4,Intermediate Level,"['Computer Science', 'Software Development']"
735,The Search for Great Ideas: Harnessing creativity to empower innovation.,https://coursera.org/learn/start-your-own-business-2-ideation,3.8,None,"['Business', 'Entrepreneurship']"
736,L'avenir de la décision : connaître et agir en complexité,https://coursera.org/learn/lavenir-de-la-decision,4.7,None,"['Business', 'Leadership and Management']"
737,Measuring Causal Effects in the Social Sciences,https://coursera.org/learn/causal-effects,4.2,None,"['Social Sciences', 'Governance and Society']"
738,Elastic Cloud Infrastructure: Scaling and Automation em Português Brasileiro,https://coursera.org/learn/gcp-infrastructure-scaling-automation-br,4.9,Intermediate Level,"['Information Technology', 'Cloud Computing']"
739,Material Behavior,https://coursera.org/learn/material-behavior,4.7,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
740,Psychology of Popularity,https://coursera.org/learn/popularity,4.6,Beginner Level,"['Health', 'Psychology']"
741,Introduction to Classical Music,https://coursera.org/learn/introclassicalmusic,4.9,None,"['Arts and Humanities', 'Music and Art']"
742,Multiplatform Mobile App Development with NativeScript,https://coursera.org/learn/nativescript,4.5,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
743,El arte de negociar,https://coursera.org/learn/arte-de-negociacion,4.5,None,"['Business', 'Leadership and Management']"
744,Positive Psychology: Resilience Skills,https://coursera.org/learn/positive-psychology-resilience,4.9,Beginner Level,"['Health', 'Psychology']"
745,Systèmes d’Information Géographique - Partie 1,https://coursera.org/learn/sig-1,4.5,Beginner Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
746,New Venture Finance: Startup Funding for Entrepreneurs,https://coursera.org/learn/startup-funding,4.6,None,"['Business', 'Entrepreneurship']"
747,The Merkle Tree and Cryptocurrencies,https://coursera.org/learn/merkle-cryptocurrencies,None,Beginner Level,"['Computer Science', 'Algorithms']"
748,Quantum Optics 1 : Single Photons,https://coursera.org/learn/quantum-optics-single-photon,4.9,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
749,Business English: Planning & Negotiating,https://coursera.org/learn/business-english-negotiating,4.8,Intermediate Level,"['Language Learning', 'Learning English']"
750,Write A Feature Length Screenplay For Film Or Television,https://coursera.org/learn/write-a-feature-length-screenplay-for-film-or-television,None,Beginner Level,"['Arts and Humanities', 'Music and Art']"
751,Visual Perception and the Brain,https://coursera.org/learn/visual-perception,4.7,None,"['Health', 'Basic Science']"
752,Ethical Leadership Through Giving Voice to Values,https://coursera.org/learn/uva-darden-giving-voice-to-values,4.7,Beginner Level,"['Business', 'Leadership and Management']"
753,Leading Positive Change through Appreciative Inquiry,https://coursera.org/learn/appreciative-inquiry,4.7,None,"['Business', 'Leadership and Management']"
754,Data Analytics Foundations for Accountancy I,https://coursera.org/learn/data-analytics-accountancy-1,4.4,None,"['Data Science', 'Data Analysis']"
755,Применение производной и интеграла в курсе общей физики,https://coursera.org/learn/proizvodnaya-i-integral-v-fizike,4.3,None,"['Math and Logic', 'Math and Logic']"
756,Construction Finance,https://coursera.org/learn/construction-finance,4.8,Beginner Level,"['Business', 'Business Strategy']"
757,iOS Project: Transreality Game,https://coursera.org/learn/transreality-gaming,4.9,None,"['Computer Science', 'Mobile and Web Development']"
758,¿Cómo llegamos aquí? Una historia del poder en México,https://coursera.org/learn/historia-de-mexico,4.8,Beginner Level,"['Social Sciences', 'Economics']"
759,Six Sigma Advanced Define and Measure Phases,https://coursera.org/learn/six-sigma-define-measure-advanced,4.7,Intermediate Level,"['Business', 'Leadership and Management']"
760,Corporate Strategy,https://coursera.org/learn/corporate-strategy,4.6,None,"['Business', 'Business Strategy']"
761,Teach English Now! Theories of Second Language Acquisition,https://coursera.org/learn/language-theories,4.9,None,"['Social Sciences', 'Education']"
762,Marketing Verde,https://coursera.org/learn/marketing-verde,4.8,None,"['Business', 'Marketing']"
763,Capstone Project: Business Technology Management,https://coursera.org/learn/business-tech-project,4.3,Beginner Level,"['Business', 'Business Strategy']"
764,How Google does Machine Learning 日本語版,https://coursera.org/learn/google-machine-learning-jp,4.5,Intermediate Level,"['Data Science', 'Machine Learning']"
765,Influencer Marketing Strategy,https://coursera.org/learn/influencer-marketing-strategy,4.5,Intermediate Level,"['Business', 'Marketing']"
766,Enterprise Systems,https://coursera.org/learn/enterprise-systems,4.8,Beginner Level,"['Information Technology', 'Support and Operations']"
767,International Entertainment and Sports Marketing,https://coursera.org/learn/international-entertainment-sports-marketing,4.6,None,"['Business', 'Marketing']"
768,Nursing Informatics Leaders,https://coursera.org/learn/health-informatics-leadership,4.4,Beginner Level,"['Business', 'Leadership and Management']"
769,Democracia y decisiones públicas. Introducción al análisis de políticas públicas,https://coursera.org/learn/democracia,4.8,Beginner Level,"['Social Sciences', 'Governance and Society']"
770,Introduction to Psychology,https://coursera.org/learn/introduction-psych,4.9,None,"['Health', 'Psychology']"
771,Patent Law,https://coursera.org/learn/patents,4.9,None,"['Social Sciences', 'Law']"
772,The Power of Markets II: Market Structure and Firm Behavior,https://coursera.org/learn/market-structure,4.7,None,"['Business', 'Business Essentials']"
773,Career Success Project,https://coursera.org/learn/career-success-capstone,4.5,None,"['Business', 'Business Essentials']"
774,El plan de marketing,https://coursera.org/learn/plan-de-marketing,4.6,Beginner Level,"['Business', 'Marketing']"
775,Building R Packages,https://coursera.org/learn/r-packages,4.2,Intermediate Level,"['Data Science', 'Data Analysis']"
776,Business English: Management and Leadership,https://coursera.org/learn/management-leadership-english,4.7,Intermediate Level,"['Language Learning', 'Learning English']"
777,Cybersecurity and the X-Factor,https://coursera.org/learn/cybersecurity-and-x-factor,4.6,Beginner Level,"['Computer Science', 'Computer Security and Networks']"
778,Software Security,https://coursera.org/learn/software-security,4.6,None,"['Computer Science', 'Computer Security and Networks']"
779,End-to-End Machine Learning with TensorFlow on GCP,https://coursera.org/learn/end-to-end-ml-tensorflow-gcp,4.5,Advanced Level,"['Data Science', 'Data Analysis']"
780,FinTech Risk Management,https://coursera.org/learn/fintech-risk-management,4.5,Beginner Level,"['Business', 'Business Essentials']"
781,Criando e publicando um aplicativo para iPhone e iPad na App Store,https://coursera.org/learn/projeto-final-ios,None,None,"['Computer Science', 'Mobile and Web Development']"
782,Music Production Capstone,https://coursera.org/learn/music-production-capstone,4.9,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
783,Семантика (Московская семантическая школа и близкие теории),https://coursera.org/learn/moscow-semantic-school,4.8,None,"['Arts and Humanities', 'Philosophy']"
784,"Emergency Care: Pregnancy, Infants, and Children",https://coursera.org/learn/emergency-care-pregnancy-infants-children,4.9,Beginner Level,"['Health', 'Patient Care']"
785,"Performing Network, Path, and Text Analyses in SAS Visual Analytics",https://coursera.org/learn/network-path-text-analyses-sas-va,None,Intermediate Level,"['Data Science', 'Data Analysis']"
786,Packet Switching Networks and Algorithms,https://coursera.org/learn/packet-switching-networks-algorithms,4.7,Intermediate Level,"['Computer Science', 'Computer Security and Networks']"
787,Mindshift: Transforma tu mente para superar obstáculos en el aprendizaje y descubrir tu potencial oculto.,https://coursera.org/learn/mindshift-transforma-mente,4.7,Beginner Level,"['Personal Development', 'Personal Development']"
788,Machine Learning Algorithms: Supervised Learning Tip to Tail,https://coursera.org/learn/machine-learning-classification-algorithms,4.8,None,"['Data Science', 'Machine Learning']"
789,Pain Management: Easing Pain in Palliative Care,https://coursera.org/learn/pain-management-easing-pain-in-palliative-care,4.7,Beginner Level,"['Health', 'Patient Care']"
790,Reinforcement Learning for Trading Strategies,https://coursera.org/learn/trading-strategies-reinforcement-learning,None,Intermediate Level,"['Data Science', 'Machine Learning']"
791,Why Iowa? A Primer on Primaries and Caucuses Teach-Out,https://coursera.org/learn/why-iowa-a-primer-on-primaries-and-caucuses,None,Beginner Level,"['Social Sciences', 'Governance and Society']"
792,Systems Thinking In Public Health,https://coursera.org/learn/systems-thinking,4.6,None,"['Health', 'Public Health']"
793,CBRS Professional Training,https://coursera.org/learn/google-cbrs-professional-training,None,Beginner Level,"['Information Technology', 'Networking']"
794,Análise de oportunidade de Blockchain,https://coursera.org/learn/analise-oportunidade-blockchain,None,Intermediate Level,"['Business', 'Business Strategy']"
795,Computational Thinking for K-12 Educators: Sequences and Loops,https://coursera.org/learn/computational-thinking-k12-educators-sequences-loops,5,Beginner Level,"['Social Sciences', 'Education']"
796,Introduction to Software Product Management,https://coursera.org/learn/introduction-to-software-product-management,4.6,None,"['Computer Science', 'Design and Product']"
797,Decision Criteria & Applications,https://coursera.org/learn/decision-criteria-and-applications,4.7,Beginner Level,"['Business', 'Finance']"
798,Administración Estratégica y Emprendedora,https://coursera.org/learn/administracion-estrategica,4.6,None,"['Business', 'Entrepreneurship']"
799,Gestión de marca y producto,https://coursera.org/learn/gestion-marca-producto,4.7,None,"['Business', 'Marketing']"
800,Электростатика и магнитостатика,https://coursera.org/learn/electrostatica,4.7,None,"['Physical Science and Engineering', 'Physics and Astronomy']"
801,Психодиагностика,https://coursera.org/learn/psykhodyahnostyka,4.8,None,"['Health', 'Psychology']"
802,Architecting with Google Kubernetes Engine: Production en Español,https://coursera.org/learn/deploying-secure-kubernetes-containers-in-production-es,None,Intermediate Level,"['Computer Science', 'Software Development']"
803,Disease Screening in Public Health,https://coursera.org/learn/screening,4.5,Beginner Level,"['Health', 'Public Health']"
804,Orientação a Objetos com Java,https://coursera.org/learn/orientacao-a-objetos-com-java,4.8,Intermediate Level,"['Computer Science', 'Software Development']"
805,Hôtel “De l'étoile” - a hotel in crisis?,https://coursera.org/learn/hotel-management-project,4.5,None,"['Business', 'Business Strategy']"
806,"Spanish Vocabulary: Sports, Travel, and the Home",https://coursera.org/learn/spanish-vocabulary-sports-travel-home,4.5,Beginner Level,"['Language Learning', 'Other Languages']"
807,Foundations of Data Science: K-Means Clustering in Python,https://coursera.org/learn/data-science-k-means-clustering-python,4.7,Beginner Level,"['Data Science', 'Machine Learning']"
808,Building Conversational Experiences with Dialogflow,https://coursera.org/learn/conversational-experiences-dialogflow,4.5,Beginner Level,"['Computer Science', 'Software Development']"
809,Diversity and inclusion in the workplace,https://coursera.org/learn/diversity-inclusion-workplace,4.7,Beginner Level,"['Business', 'Leadership and Management']"
810,Python and Statistics for Financial Analysis,https://coursera.org/learn/python-statistics-financial-analysis,4.5,Beginner Level,"['Business', 'Finance']"
811,What’s Your Big Idea?,https://coursera.org/learn/big-ideas,4.6,None,"['Business', 'Business Strategy']"
812,The City and You: Find Your Best Place,https://coursera.org/learn/city-and-you-find-best-place,4.7,Beginner Level,"['Social Sciences', 'Governance and Society']"
813,Verb Tenses and Passives,https://coursera.org/learn/verb-passives,4.8,Intermediate Level,"['Language Learning', 'Learning English']"
814,Fundamentos del análisis de datos para la toma de decisiones,https://coursera.org/learn/analisis-de-datos,4.5,None,"['Business', 'Business Strategy']"
815,Gestión de las empresas de alimentación y bebidas,https://coursera.org/learn/empresas-alimentos-bebidas,4.8,None,"['Business', 'Leadership and Management']"
816,Introduction to Neurohacking In R,https://coursera.org/learn/neurohacking,4.6,Intermediate Level,"['Data Science', 'Data Analysis']"
817,Security and Privacy for Big Data - Part 2,https://coursera.org/learn/security-privacy-big-data-protection,4.5,Beginner Level,"['Information Technology', 'Data Management']"
818,Sequence Models for Time Series and Natural Language Processing,https://coursera.org/learn/sequence-models-tensorflow-gcp,4.4,Advanced Level,"['Data Science', 'Machine Learning']"
819,Использование механизмов операционных систем в разработке программного обеспечения,https://coursera.org/learn/os-v-razrabotke-po,4.1,Beginner Level,"['Computer Science', 'Software Development']"
820,Safety in the Utility Industry,https://coursera.org/learn/safety-utility-industry,4.7,Beginner Level,"['Physical Science and Engineering', 'Electrical Engineering']"
821,International Business I,https://coursera.org/learn/international-business,4.6,None,"['Business', 'Business Strategy']"
822,Data Science in Stratified Healthcare and Precision Medicine,https://coursera.org/learn/datascimed,4.6,Intermediate Level,"['Data Science', 'Data Analysis']"
823,Основы поиска дела жизни. Часть 1. Как перестать откладывать дела на потом?,https://coursera.org/learn/prednaznachenie-delo-jizni,4.8,Beginner Level,"['Personal Development', 'Personal Development']"
824,Основы разработки на C++: белый пояс,https://coursera.org/learn/c-plus-plus-white,4.9,Intermediate Level,"['Computer Science', 'Software Development']"
825,Advanced Data Structures in Java,https://coursera.org/learn/advanced-data-structures,4.8,Intermediate Level,"['Computer Science', 'Algorithms']"
826,Control of Mobile Robots,https://coursera.org/learn/mobile-robot,4.8,None,"['Computer Science', 'Mobile and Web Development']"
827,Clinical Epidemiology,https://coursera.org/learn/clinical-epidemiology,4.7,Intermediate Level,"['Health', 'Basic Science']"
828,Digital Footprint,https://coursera.org/learn/digital-footprint,4.6,Beginner Level,"['Personal Development', 'Personal Development']"
829,Increasing Real Estate Management Profits: Harnessing Data Analytics,https://coursera.org/learn/analytics-capstone,4.7,None,"['Data Science', 'Data Analysis']"
830,Planification des mobilités,https://coursera.org/learn/planification-mobilites,4,Beginner Level,"['Social Sciences', 'Governance and Society']"
831,Fornire un feedback utile (Giving Helpful Feedback),https://coursera.org/learn/feedback-it,4.6,None,"['Business', 'Business Essentials']"
832,Architecting with Google Kubernetes Engine: Workloads 日本語版,https://coursera.org/learn/deploying-workloads-google-kubernetes-engine-gke-jp,None,Intermediate Level,"['Computer Science', 'Software Development']"
833,Lactation Biology,https://coursera.org/learn/lactation-biology,4.9,Beginner Level,"['Health', 'Basic Science']"
834,Preventing Chronic Pain: A Human Systems Approach,https://coursera.org/learn/chronic-pain,4.7,Beginner Level,"['Health', 'Patient Care']"
835,Robotics: Computational Motion Planning,https://coursera.org/learn/robotics-motion-planning,4.2,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
836,Chino básico: La etiqueta social en los negocios,https://coursera.org/learn/chino-etiqueta-negocios,4.2,None,"['Language Learning', 'Other Languages']"
837,Java Programming: Solving Problems with Software,https://coursera.org/learn/java-programming,4.6,Beginner Level,"['Computer Science', 'Software Development']"
838,Mobile Interaction Design: How to Design Usable Mobile Products and Services,https://coursera.org/learn/mobile-interaction-design,5,Intermediate Level,"['Computer Science', 'Design and Product']"
839,Tecnología musical con software libre: Proyecto final,https://coursera.org/learn/tecnologia-musical-proyecto,None,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
840,《论语》的智慧,https://coursera.org/learn/kongzi,4.6,None,"['Arts and Humanities', 'Philosophy']"
841,Sports and Society,https://coursera.org/learn/sports-society,4.8,None,"['Social Sciences', 'Governance and Society']"
842,Data-driven Astronomy,https://coursera.org/learn/data-driven-astronomy,4.8,Intermediate Level,"['Physical Science and Engineering', 'Physics and Astronomy']"
843,Mind of the Universe - Genetic Privacy: should we be concerned?,https://coursera.org/learn/mind-of-the-universe-genetic-privacy,3.9,Beginner Level,"['Arts and Humanities', 'Philosophy']"
844,Leading People and Teams Capstone,https://coursera.org/learn/leading-teams-project,4.7,None,"['Business', 'Leadership and Management']"
845,Fundamentals of Digital Image and Video Processing,https://coursera.org/learn/digital,4.6,None,"['Physical Science and Engineering', 'Electrical Engineering']"
846,What future for education?,https://coursera.org/learn/future-education,4.6,None,"['Social Sciences', 'Education']"
847,Speaking to inform: Discussing complex ideas with clear explanations and dynamic slides,https://coursera.org/learn/inform-speech,4.8,Beginner Level,"['Personal Development', 'Personal Development']"
848,Русский как иностранный B2-1,https://coursera.org/learn/russkiy-kak-inostrannyy-b2,5,Intermediate Level,"['Language Learning', 'Other Languages']"
849,Data and Health Indicators in Public Health Practice,https://coursera.org/learn/data-public-health,4.7,Beginner Level,"['Health', 'Public Health']"
850,Air Pollution – a Global Threat to our Health,https://coursera.org/learn/air-pollution-health-threat,4.7,Beginner Level,"['Health', 'Public Health']"
851,Data Science Ethics,https://coursera.org/learn/data-science-ethics,4.6,Beginner Level,"['Data Science', 'Data Analysis']"
852,Теория и практика создания онлайн-курсов,https://coursera.org/learn/howtomooc,4.7,Beginner Level,"['Personal Development', 'Personal Development']"
853,Generative Design for Additive Manufacturing,https://coursera.org/learn/generative-design-additive-manufacturing,4.9,Beginner Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
854,برمج بنفسك! مقدمة حول البرمجة,https://coursera.org/learn/intro-programming-ar,None,None,"['Computer Science', 'Software Development']"
855,Estrategias para ganar. Meteorología en la vuelta al mundo,https://coursera.org/learn/estrategiasparaganar-meteorologia,4.8,Intermediate Level,"['Physical Science and Engineering', 'Physics and Astronomy']"
856,"Grow to Greatness: Smart Growth for Private Businesses, Part I",https://coursera.org/learn/uva-darden-smart-growth-strategy-1,4.7,None,"['Business', 'Business Strategy']"
857,Introdução ao Desenvolvimento de Aplicativos Android,https://coursera.org/learn/introducao-aplicativos-android,4.6,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
858,"Промышленность, инженерное образование и наука: история и перспективы",https://coursera.org/learn/promyshlennost,4.8,Intermediate Level,"['Physical Science and Engineering', 'Research Methods']"
859,Global Health: An Interdisciplinary Overview,https://coursera.org/learn/global-health-overview,4.6,None,"['Health', 'Public Health']"
860,Game Developers and Esports Organizations,https://coursera.org/learn/game-developers-esports-organizations,4.5,Beginner Level,"['Business', 'Leadership and Management']"
861,"Knowledge Exchange: Using, Protecting and Monetizing Ideas with Third Parties",https://coursera.org/learn/knowledge-exchange,4.3,Intermediate Level,"['Business', 'Entrepreneurship']"
862,The Power of Markets III: Input Markets and Promoting Efficiency,https://coursera.org/learn/market-efficiency,4.8,None,"['Business', 'Business Essentials']"
863,Crash Course on Python,https://coursera.org/learn/python-crash-course,4.8,Beginner Level,"['Information Technology', 'Support and Operations']"
864,Building Batch Data Pipelines on GCP,https://coursera.org/learn/batch-data-pipelines-gcp,4.8,Intermediate Level,"['Information Technology', 'Cloud Computing']"
865,After the Arab Spring – Democratic Aspirations and State Failure,https://coursera.org/learn/after-the-arab-spring,4.7,Beginner Level,"['Social Sciences', 'Governance and Society']"
866,Computational Social Science Methods,https://coursera.org/learn/computational-social-science-methods,None,Beginner Level,"['Data Science', 'Data Analysis']"
867,Potenciando mi aprendizaje en el primer año de Universidad,https://coursera.org/learn/potenciando-aprendizaje,4.7,Beginner Level,"['Social Sciences', 'Education']"
868,Foundations for Big Data Analysis with SQL,https://coursera.org/learn/foundations-big-data-analysis-sql,4.8,Beginner Level,"['Data Science', 'Data Analysis']"
869,"Musicianship: Tensions, Harmonic Function, and Modal Interchange",https://coursera.org/learn/musicianship-harmony,4.8,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
870,Cloud Computing Basics (Cloud 101),https://coursera.org/learn/cloud-computing-basics,None,Beginner Level,"['Information Technology', 'Cloud Computing']"
871,G Suite Mail Management 日本語版,https://coursera.org/learn/g-suite-mail-management-jp,None,Beginner Level,"['Computer Science', 'Computer Security and Networks']"
872,Infonomics I: Business Information Economics and Data Monetization,https://coursera.org/learn/infonomics-1,4.6,Beginner Level,"['Business', 'Business Essentials']"
873,Taxation of Business Entities I: Corporations,https://coursera.org/learn/taxation-business-entities-part-1,4.6,Intermediate Level,"['Business', 'Business Essentials']"
874,Develop and Deploy Windows Applications on Google Cloud Platform,https://coursera.org/learn/develop-windows-apps-gcp,4.6,Beginner Level,"['Computer Science', 'Computer Security and Networks']"
875,Basic Elements of Design: Design Principles and Software Overview,https://coursera.org/learn/basic-elements-design,4.6,Beginner Level,"['Arts and Humanities', 'History']"
876,Business Models for Innovative Care for Older People,https://coursera.org/learn/business-models-innovative-care,4.5,Intermediate Level,"['Business', 'Entrepreneurship']"
877,Ancient Philosophy: Aristotle and His Successors,https://coursera.org/learn/aristotle,4.8,None,"['Arts and Humanities', 'Philosophy']"
878,"C++ For C Programmers, Part B",https://coursera.org/learn/c-plus-plus-b,4.3,None,"['Computer Science', 'Software Development']"
879,The Olympic Games and the Media,https://coursera.org/learn/olympic-games,4.7,Beginner Level,"['Business', 'Marketing']"
880,Building Resilient Streaming Systems on GCP em Português Brasileiro,https://coursera.org/learn/building-resilient-streaming-systems-gcp-br,4.3,Intermediate Level,"['Data Science', 'Data Analysis']"
881,Anatomy: Human Neuroanatomy,https://coursera.org/learn/anatomy403-3x,4.9,Beginner Level,"['Health', 'Basic Science']"
882,Marketing Management II,https://coursera.org/learn/marketing-management-two,4.8,None,"['Business', 'Marketing']"
883,Маркетинговая стратегия в digital среде (Digital marketing strategy),https://coursera.org/learn/digital-marketing-strategy,4.6,Intermediate Level,"['Business', 'Marketing']"
884,Advanced Neurobiology II,https://coursera.org/learn/advancedneurobiologyii,4.2,Intermediate Level,"['Health', 'Basic Science']"
885,Presentation skills: Public Speaking Project,https://coursera.org/learn/public-speaking-project,4.7,Intermediate Level,"['Business', 'Business Essentials']"
886,Gestión del canal de distribución y retailing,https://coursera.org/learn/canal-distribucion,4.6,None,"['Business', 'Marketing']"
887,Circular Economy - Sustainable Materials Management,https://coursera.org/learn/circular-economy,4.9,Beginner Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
888,SEL for Students: A Path to Social Emotional Well-Being,https://coursera.org/learn/sel-for-students,4.8,Advanced Level,"['Social Sciences', 'Education']"
889,Chinese Politics Part 2 – China and the World,https://coursera.org/learn/chinese-politics-2,4.8,None,"['Social Sciences', 'Governance and Society']"
890,Arranging for Songwriters,https://coursera.org/learn/arranging-for-songwriters,None,Intermediate Level,"['Arts and Humanities', 'Music and Art']"
891,Introduction to Calculus,https://coursera.org/learn/introduction-to-calculus,4.8,Intermediate Level,"['Math and Logic', 'Math and Logic']"
892,Applied Social Network Analysis in Python,https://coursera.org/learn/python-social-network-analysis,4.6,Intermediate Level,"['Data Science', 'Data Analysis']"
893,Constitutional Reforms in Russia,https://coursera.org/learn/constitutional-reforms-in-russia,4.7,Intermediate Level,"['Social Sciences', 'Law']"
894,Cuidado de heridas en el ámbito hospitalario,https://coursera.org/learn/cuidado-heridas,4.8,Intermediate Level,"['Health', 'Patient Care']"
895,Digital Analytics for Marketing Professionals: Marketing Analytics in Theory,https://coursera.org/learn/marketing-analytics,4.5,None,"['Business', 'Marketing']"
896,Fundamentals of particle accelerator technology (NPAP MOOC),https://coursera.org/learn/fundamentals-particle-accelerator-technology,4.8,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
897,"Grow to Greatness: Smart Growth for Private Businesses, Part II",https://coursera.org/learn/uva-darden-smart-growth-strategy-2,4.8,None,"['Business', 'Business Strategy']"
898,Introduzione alla Storia dell'Architettura Contemporanea,https://coursera.org/learn/architettura-contemporanea,4.7,Beginner Level,"['Arts and Humanities', 'Music and Art']"
899,Rails with Active Record and Action Pack,https://coursera.org/learn/rails-with-active-record,4.7,None,"['Computer Science', 'Software Development']"
900,"Инвестиционные проекты, слияния и поглощения",https://coursera.org/learn/sliyaniye-pogloshcheniye,4.7,None,"['Business', 'Finance']"
901,Неорганическая химия,https://coursera.org/learn/neorganicheskayakhimiya,4.8,Intermediate Level,"['Physical Science and Engineering', 'Chemistry']"
902,מבוא לאנרגיה מתחדשת - Introduction to Renewable Energy,https://coursera.org/learn/renewable-energy,4.3,None,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
903,"Health, Housing, and Educational Services",https://coursera.org/learn/health-housing-educational-services,4.8,Beginner Level,"['Social Sciences', 'Governance and Society']"
904,Advanced Algorithms and Complexity,https://coursera.org/learn/advanced-algorithms-and-complexity,4.6,Advanced Level,"['Computer Science', 'Algorithms']"
905,مقدمة عن البيانات الضخمة,https://coursera.org/learn/big-data-introduction-ar,4.3,None,"['Data Science', 'Data Analysis']"
906,Dino 101: Dinosaur Paleobiology,https://coursera.org/learn/dino101,4.9,Beginner Level,"['Health', 'Basic Science']"
907,"Recruiting, Hiring, and Onboarding Employees",https://coursera.org/learn/recruiting-hiring-onboarding-employees,4.7,None,"['Business', 'Business Essentials']"
908,Kit básico (para evitar los errores más frecuentes) de finanzas,https://coursera.org/learn/finanzas-basicas,4.7,Beginner Level,"['Social Sciences', 'Economics']"
909,Managing Uncertainty in Marketing Analytics,https://coursera.org/learn/uncertainty-marketing-decisions,4.3,Intermediate Level,"['Business', 'Marketing']"
910,《新教伦理与资本主义精神》导读,https://coursera.org/learn/max-weber,4.6,None,"['Arts and Humanities', 'Philosophy']"
911,Contabilidad para no contadores,https://coursera.org/learn/contabilidad,4.7,Beginner Level,"['Business', 'Finance']"
912,"Graph Search, Shortest Paths, and Data Structures",https://coursera.org/learn/algorithms-graphs-data-structures,4.8,Intermediate Level,"['Computer Science', 'Algorithms']"
913,Spacecraft Dynamics Capstone: Mars Mission,https://coursera.org/learn/capstone-mars-mission,4.8,Advanced Level,"['Physical Science and Engineering', 'Physics and Astronomy']"
914,Building Data Visualization Tools,https://coursera.org/learn/r-data-visualization,4,Intermediate Level,"['Data Science', 'Data Analysis']"
915,Displays,https://coursera.org/learn/displays,None,Advanced Level,"['Physical Science and Engineering', 'Electrical Engineering']"
916,Electric Industry Operations and Markets,https://coursera.org/learn/electricity,4.8,Beginner Level,"['Physical Science and Engineering', 'Environmental Science and Sustainability']"
917,Introduction to Engineering Mechanics,https://coursera.org/learn/engineering-mechanics-statics,4.7,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
918,Powerful Tools for Teaching and Learning: Digital Storytelling,https://coursera.org/learn/digital-storytelling,4.6,Beginner Level,"['Social Sciences', 'Education']"
919,Habilidades gerenciales: Proyecto final,https://coursera.org/learn/hgproyectofinal,4.8,Beginner Level,"['Personal Development', 'Personal Development']"
920,Drug Discovery,https://coursera.org/learn/drug-discovery,4.6,Beginner Level,"['Health', 'Healthcare Management']"
921,Risk governance: Engage the board,https://coursera.org/learn/risk-governance-engage-the-board,4.9,Beginner Level,"['Business', 'Leadership and Management']"
922,Concurrency in Go,https://coursera.org/learn/golang-concurrency,4.6,Intermediate Level,"['Computer Science', 'Software Development']"
923,Python Data Representations,https://coursera.org/learn/python-representation,4.8,Beginner Level,"['Computer Science', 'Software Development']"
924,Compassionate Leadership Through Service Learning with Jane Goodall and Roots & Shoots,https://coursera.org/learn/compassionate-leadership-jane-goodall,4.9,Beginner Level,"['Social Sciences', 'Education']"
925,إدارة شركات المستقبل,https://coursera.org/learn/company-future-management-ar,5,None,"['Business', 'Leadership and Management']"
926,人体生理学导论(中文版),https://coursera.org/learn/sheng-li-xue,4.8,None,"['Health', 'Basic Science']"
927,Project: Predicting House Prices with Regression using TensorFlow,https://coursera.org/learn/tensorflow-beginner-predicting-house-prices-regression,4.7,Beginner Level,"['Data Science', 'Machine Learning']"
928,Advanced Converter Control Techniques,https://coursera.org/learn/current-control,4.8,Intermediate Level,"['Physical Science and Engineering', 'Electrical Engineering']"
929,Market Research and Consumer Behavior,https://coursera.org/learn/market-research,4.2,Beginner Level,"['Business', 'Marketing']"
930,Leadership Through Design Innovation,https://coursera.org/learn/leadership-design-innovation,4.1,None,"['Business', 'Leadership and Management']"
931,Claves para la innovación en la docencia universitaria,https://coursera.org/learn/innovacion-docencia-universitaria,4.8,None,"['Social Sciences', 'Education']"
932,Everyday Parenting: The ABCs of Child Rearing,https://coursera.org/learn/everyday-parenting,4.9,Beginner Level,"['Health', 'Psychology']"
933,Introdução ao Teste de Software,https://coursera.org/learn/intro-teste-de-software,4.8,Beginner Level,"['Computer Science', 'Software Development']"
934,Практики оперативной аналитики в MS Excel,https://coursera.org/learn/praktiki-operativnoy-analitiki-excel,4.8,Beginner Level,"['Business', 'Business Essentials']"
935,ADHD: Everyday Strategies for Elementary Students,https://coursera.org/learn/adhd-treatment,4.7,Beginner Level,"['Social Sciences', 'Education']"
936,Google Cloud Platform Big Data and Machine Learning Fundamentals auf Deutsch,https://coursera.org/learn/gcp-big-data-ml-fundamentals-de,None,Intermediate Level,"['Data Science', 'Machine Learning']"
937,Spanish Vocabulary: Careers and Social Events,https://coursera.org/learn/spanish-vocabulary-careers,4.6,Beginner Level,"['Language Learning', 'Other Languages']"
938,L'art des structures 1 : Câbles et arcs,https://coursera.org/learn/structures,4.8,Beginner Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
939,Public Policy Challenges of the 21st Century,https://coursera.org/learn/public-policy,4.6,Beginner Level,"['Social Sciences', 'Governance and Society']"
940,Magic in the Middle Ages,https://coursera.org/learn/magic-middle-ages,4.6,Beginner Level,"['Arts and Humanities', 'History']"
941,"C++ For C Programmers, Part A",https://coursera.org/learn/c-plus-plus-a,4.4,None,"['Computer Science', 'Software Development']"
942,Innovation Career Lessons from a Master,https://coursera.org/learn/startup-entrepreneurship-innovation-career-lessons,4.3,Beginner Level,"['Business', 'Entrepreneurship']"
943,Computational Thinking for K-12 Educators: Variables and Nested Loops,https://coursera.org/learn/block-programming-k12-educators-variables-nested-loops,None,Beginner Level,"['Social Sciences', 'Education']"
944,¿Qué hacen los buenos directivos? Prioridades de la Alta Dirección,https://coursera.org/learn/alta-direccion,4.8,Beginner Level,"['Business', 'Finance']"
945,Teaching Intermediate Grammar Project,https://coursera.org/learn/teaching-english-grammar-project,None,Intermediate Level,"['Language Learning', 'Learning English']"
946,Public Economics,https://coursera.org/learn/public-economics,4.5,Intermediate Level,"['Social Sciences', 'Economics']"
947,Economics of Transition and Emerging Markets,https://coursera.org/learn/economics-transition-emerging-markets,4.3,Beginner Level,"['Social Sciences', 'Economics']"
948,"L'Art des Structures 2 : treillis, poutres, dalles et cadres",https://coursera.org/learn/structures2,4.6,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
949,Data Structures,https://coursera.org/learn/data-structures,4.7,Intermediate Level,"['Computer Science', 'Algorithms']"
950,Mindfulness in Integrative Healthcare,https://coursera.org/learn/mindfulness-integrative-healthcare,5,Beginner Level,"['Health', 'Research']"
951,Financial Markets and Investment Strategy Capstone,https://coursera.org/learn/investment-strategy-capstone,4.7,Beginner Level,"['Business', 'Finance']"
952,Étudier en France: French Intermediate course B1-B2,https://coursera.org/learn/etudier-en-france,4.8,Intermediate Level,"['Language Learning', 'Other Languages']"
953,DDoS Attacks and Defenses,https://coursera.org/learn/ddos-attacks-and-defense,4.6,Beginner Level,"['Computer Science', 'Computer Security and Networks']"
954,Organ Donation: From Death to Life,https://coursera.org/learn/organ-donation,4.8,Intermediate Level,"['Health', 'Basic Science']"
955,Data Science for Business Innovation,https://coursera.org/learn/data-science-for-business-innovation,3.9,Beginner Level,"['Data Science', 'Data Analysis']"
956,The Psychology of Thrill Seekers,https://coursera.org/learn/psychology-of-thrill-seekers,4.5,Beginner Level,"['Health', 'Psychology']"
957,Evaluating Problems,https://coursera.org/learn/evaluating-problems,4.7,Beginner Level,"['Business', 'Leadership and Management']"
958,IBM IT Assessment: Identifying the Right Career for You!,https://coursera.org/learn/ibm-it-assessment,4.1,Beginner Level,"['Personal Development', 'Personal Development']"
959,Multiplatform Mobile App Development with React Native,https://coursera.org/learn/react-native,4.7,Intermediate Level,"['Computer Science', 'Mobile and Web Development']"
960,Power Onboarding,https://coursera.org/learn/power-onboarding,4.2,Beginner Level,"['Business', 'Leadership and Management']"
961,The Importance of Listening,https://coursera.org/learn/importance-of-listening,4.6,None,"['Business', 'Marketing']"
962,Machine Learning With Big Data,https://coursera.org/learn/big-data-machine-learning,4.6,None,"['Data Science', 'Machine Learning']"
963,Computational Thinking for K-12 Educators: Nested If Statements and Compound Conditionals,https://coursera.org/learn/block-programming-k12-educators-nested-if-statement-compound-conditionals,None,Beginner Level,"['Social Sciences', 'Education']"
964,Internet of Things: Sensing and Actuation From Devices,https://coursera.org/learn/internet-of-things-sensing-actuation,4.4,None,"['Physical Science and Engineering', 'Electrical Engineering']"
965,Preparing for the Google Cloud Professional Cloud Architect Exam,https://coursera.org/learn/preparing-cloud-professional-cloud-architect-exam,4.6,Advanced Level,"['Information Technology', 'Cloud Computing']"
966,"Computer Science: Algorithms, Theory, and Machines",https://coursera.org/learn/cs-algorithms-theory-machines,4.8,Intermediate Level,"['Computer Science', 'Algorithms']"
967,Religious Transformation in Early China: the Period of Division,https://coursera.org/learn/religious-transformation-early-china-the-period-of-division,4.9,Intermediate Level,"['Arts and Humanities', 'History']"
968,Using Databases with Python,https://coursera.org/learn/python-databases,4.8,None,"['Computer Science', 'Software Development']"
969,Драгоценные камни: диагностика и экспертиза,https://coursera.org/learn/kamni,4.9,Beginner Level,"['Physical Science and Engineering', 'Research Methods']"
970,Investment Strategies and Portfolio Analysis,https://coursera.org/learn/investment-strategies-portfolio-analysis,4.1,None,"['Business', 'Finance']"
971,Intro to TensorFlow en Français,https://coursera.org/learn/intro-tensorflow-fr,None,Intermediate Level,"['Data Science', 'Machine Learning']"
972,Business English: Capstone Project,https://coursera.org/learn/business-english-capstone,4.7,Intermediate Level,"['Language Learning', 'Learning English']"
973,"Anatomy of the Chest, Abdomen, and Pelvis",https://coursera.org/learn/trunk-anatomy,4.7,Intermediate Level,"['Health', 'Basic Science']"
974,Feature Engineering auf Deutsch,https://coursera.org/learn/feature-engineering-de,None,Intermediate Level,"['Data Science', 'Machine Learning']"
975,International B2B (Business to Business) Marketing,https://coursera.org/learn/b2b-marketing,4.6,None,"['Business', 'Marketing']"
976,Effective Business Presentations with Powerpoint,https://coursera.org/learn/powerpoint-presentations,4.6,Beginner Level,"['Business', 'Business Essentials']"
977,Seeing Through Photographs,https://coursera.org/learn/photography,4.7,None,"['Arts and Humanities', 'Music and Art']"
978,Art & Activity: Interactive Strategies for Engaging with Art,https://coursera.org/learn/art-activity,4.7,None,"['Arts and Humanities', 'Music and Art']"
979,Макроэкономика (вводный курс),https://coursera.org/learn/makroekonomika,4.5,Beginner Level,"['Business', 'Marketing']"
980,Essentials for English Speeches and Presentations 英语演讲与演示,https://coursera.org/learn/yingyuyanjiang,4.7,None,"['Personal Development', 'Personal Development']"
981,Introduction to Business Analytics: Communicating with Data,https://coursera.org/learn/intro-business-analytics,4.8,Intermediate Level,"['Business', 'Leadership and Management']"
982,Fundamentals of Fluid Power,https://coursera.org/learn/fluid-power,4.8,None,"['Physical Science and Engineering', 'Mechanical Engineering']"
983,الشبكات العصبية والتعلم العميق,https://coursera.org/learn/neural-networks-deep-learning-ar,None,Intermediate Level,"['Data Science', 'Machine Learning']"
984,Guided Imagery,https://coursera.org/learn/guided-imagery,4.7,Beginner Level,"['Health', 'Research']"
985,International Humanitarian Law in Theory and Practice,https://coursera.org/learn/international-humanitarian-law,4.8,Beginner Level,"['Social Sciences', 'Law']"
986,So You Think You Know Tango?,https://coursera.org/learn/tango,4.5,Beginner Level,"['Arts and Humanities', 'Music and Art']"
987,Chinese Characters for beginner 汉字,https://coursera.org/learn/hanzi,4.7,Beginner Level,"['Language Learning', 'Other Languages']"
988,Quality Improvement in Healthcare Organizations,https://coursera.org/learn/quality-improvement-in-healthcare-organizations,4.7,Beginner Level,"['Health', 'Healthcare Management']"
989,Population Health: Health & Health Behaviour,https://coursera.org/learn/population-health-behaviour,4,Intermediate Level,"['Health', 'Psychology']"
990,Strategic Innovation: Building and Sustaining Innovative Organizations,https://coursera.org/learn/strategic-innovation-building-and-sustaining-innovative-organizations,4.8,None,"['Business', 'Marketing']"
991,Intercultural Communication and Conflict Resolution,https://coursera.org/learn/intercultural-communication,4.2,None,"['Business', 'Business Essentials']"
992,"Social Services for Families, Seniors and Those with Disabilities",https://coursera.org/learn/social-health-policy-programs,4.7,None,"['Social Sciences', 'Governance and Society']"
993,Spanish Vocabulary: Meeting People,https://coursera.org/learn/spanish-vocabulary-meeting-people,4.6,Beginner Level,"['Language Learning', 'Other Languages']"
994,Understanding Obesity,https://coursera.org/learn/understanding-obesity,4.6,Beginner Level,"['Health', 'Nutrition']"
995,Machine Design Part I,https://coursera.org/learn/machine-design1,4.8,Intermediate Level,"['Physical Science and Engineering', 'Mechanical Engineering']"
996,Docencia para la capacitación laboral y el aprendizaje a lo largo de la vida.,https://coursera.org/learn/docencia-capacitacion-laboral,4.6,Intermediate Level,"['Social Sciences', 'Education']"
997,Learning Technologies Foundations and Applications,https://coursera.org/learn/learning-technologies-foundations-applications,4.4,None,"['Social Sciences', 'Education']"
998,Cyber Attack Countermeasures,https://coursera.org/learn/cyber-attack-countermeasures,4.8,Intermediate Level,"['Computer Science', 'Computer Security and Networks']"