-
Notifications
You must be signed in to change notification settings - Fork 2
/
Poor.csv
We can't make this file beautiful and searchable because it's too large.
2470 lines (2470 loc) · 722 KB
/
Poor.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
Id,Review,Label
49,This course doesn't contain any new information. It does not teach you but just excitedly shows commonly known facts.There are better ways to invest your time.,1
71,"I do not find very interesting this course. too many interviews. It could works for the first course, but not for the second. I was expecting to have more technical material and lessons.",1
79,A lot of speaking without any sense. Skip it at all cost,1
105,This course doesn't contain any new information. It does not teach you but just excitedly shows commonly known facts.There are better ways to invest your time.,1
173,It's not a course... this is a very short general introduction to 3D Printing,1
187,"First of all, I really enjoyed Professor Ittner's presentations. Sadly, his presentation was only 25% of the course. Professor Ittner was very direct but also was very engaging in how he delivered his content. I had a good feeling that I could really understand the material he was teaching. If I could give a rating for just Professor Ittner, I would give a 5 star rating. Now, this is why I am giving this course a 1 star rating. But I do have to say, going into the depths of Accounting Analytics is not easy. You really need to have a good grasp of Accounting otherwise you will get lost. Professor Bushee did not make the first 3 weeks really easy to get through. While I enjoyed his examples & case studies, he simply did not do a great job of really explaining and illustrating the concepts he was teaching. And worst of all, he setup a digitally generated classroom where he had his computer generated students ask pointless questions, make pointless statements, or answer with pointless statements/answers. I really wish I had the time to analyze how much of the course time he spent doing this, I would estimate that it's around 10% but it could very well be higher. There are so many different examples to pick form, but I'll just pick a few here. ""I didn't read the Iliad or Odyssey some I'm not going to ask you to"" in reference why in regression there are Greek letter used for coefficients (it's a fair assumption that someone taking this class understands coefficients), a 30 second exchange where a PC generate student says that they're ""stocked"" to run some regression followed by Proffessor Bushee informing us that ""we're going to run some narly regressions"", Professor Bushee saying he doesn't know how to perform Earning Management Analysis on Mars but he certainly knows how to do it on Earth, and a joke why people don't like accountants. These segments add absolutely zero value. They lengthen the time of the course. To make maters worse, I'm sure Proffessor Bushee had to spend even more time creating this additional interaction together.",1
192,No practical knowledge learnd and no clear examples of the topics. Too complex all the course,1
224,"Professors need to undergo a presentation and Instruction Design skills. They were talking a lot and everything was going over my head, the reason was there were not visual prompt for the examples, specifically in the last week.",1
264,The Capstone project has been getting delayed since JanDont expect yourself to complete the specialization,1
272,Very boring,1
273,"Easiest accounting common sense. If you ever took acct , this will be a wasting of time.",1
332,"I didn't like that course because of:-weak explanations of algorithms-almost all assignments I googled, I spent all my time googling these algorithms-when code is submitted and something goes wrong It is not possible to understand what is really happened",1
334,poor course. never give any algorithm. No clue where the problem come from. The forum is only help a few people. No general ideas how to solve the problem. waist a lot of time debugging but still couldn't pass the assignment.total waste my time and garbage course.,1
364,Mo comment went way too fast no contact not deep,1
386,Don't recommend.You're better off skimming through the ableton manual and using the search function to get the answers you want.,1
525,"is a very very boring curse, don't recommend anyone, please for your good at everyboduy else kill this course, don't embarrass yourself and the universities that represents",1
532,I am dropping this course. don't e-mail any more for this course. How do I unroll in this course.,1
558,"If you don't speak Chinese it's a terrible course...The lectures are recorded from lectures at university and the rhythm is very slow and not very well explained (at least the first week). The transcriptions into English are incomplete, so understand this course is very very complicated.I do not recommend it at all.",1
630,"I was terribly disappointed in this course. Mr. Onuf spends the majority of these lectures implying what Jefferson thinks without discussing much in the way of actual history. Further, the course seems more of a commercial for the University of Virginia than anything else. Overall, a waste of time.",1
644,The lectures are just videos of the professor bloviating about Jefferson. There is nothing academic about this course.,1
665,79 USD? just to be able to submit peer-graded assignments... talk about greed,1
796,"It says 'advanced writing' but it is advanced for college students, not advanced overall. I found it extremely basic.",1
865,"Extremely poor quality of instruction. The lectures themselves are little more than the material being read directly off the slides by an individual with a poor grasp on the English language. The majority of the slides are walls of unclear and non-descriptive text. Even with reading directly from the slides, the lecturer is overly circumstantial in her explanations if not just outright tangential. I commend the authors for putting together a course outside of their native language but, in this case at least, it does more harm than good.In short, this course has the air of a group of first year students giving a presentation verbatim from the slides, as another commenter also mentioned below.",1
866,"This course is a discreditation to coursera, and it's low standards are appalling. From a purely certificate based perspective, the only requirement to complete the course are completely the quizzes. They are short, and can easily be googled, or the slides can be downloaded and the answers simply CRTL+F for keyboards. There is zero need to watch the lectures ( at least for the first 2 weeks).The lectures are terrible themselves. The English is beyond horrible, and I don't understand the modern culture of having teachers teach in languages they can't speak. It is purely reading off the slides in any case, word for word. I learned more about the basics in neuroscience in a 20 minutes lecture from a separate course, ""Computational Neuroscience"" than the entire first week here.If you actually want to learn neuroscience, check out HardvardX's intro course.",1
868,"This is the worst, most pathetic course I have taken online. If Peking University believes this is their best - I'll not be taking another course with them. The instructor's command of the English language is awful and the sub-titles are some help, but not a lot. Instructors are just talking faces up front - they cannot teach. They may be great in the lab, but keep them out of the classroom. I toughed out the course, but it only got worse. I had originally signed up for parts 1 and 2 of this course. Canceled part 2. The use of slides that are not clear / too small and not on the screen long enough to digest the information did not help. Do yourself a favor - avoid this course. As a side note - I have taken in excess of 25 online courses, this was the most painful.",1
870,Very boring... The professor is just reading (with a bad English). The illustrations are also very boring...,1
874,"The professors sound like a group of first-year students presenting a group project, literally reading notes off of a powerpoint slide. The professors also can't speak English, so instead of explaining things in depth, they have to very, very slowly read basic phrases (to explain complex subject matter) off of what's basically a teleprompter.",1
880,"Really poor powerpoint presentations and videos, half in chinese. The accent of the teacher is horrible (i'm not an english-native speaking person so it's hard for me to follow english when badly spoken, so i cut off the sound and only read the subtitles.)The content is interesting though.",1
883,"I don't want to be mean, but the first week was terrible! I was expecting what it said: ADVANCED neurobiology.I feel bad giving this review. I'm just dropping the course.",1
884,"After finishing week 1, I have decided to stick with Duke university's Medical neuroscience which is starting up again. I also highly recommend ""Understanding the Brain The Neurobiology of Everyday Life"" which I believe was taught by the University of Chicago. I found them to be far more engaging the viewer and the format to be much easier to follow. I found it visually disturbing and also have to keep pausing to read the slide before it switches.It's too bad because I was really looking forward to this course. It also seemed she had trouble pronouncing many of the words and I do not want to learn how to pronounce many of them incorrectly also many of the slides did not have an English translation on them.",1
887,"This course is useless and perhaps even harmful.The professors would have done much better if they had taught the class in their native Chinese language and then got a really good translator to make subtitles in English.I tried turning off the sound and just watching the presentation while reading the subtitles, but even this was so badly done in terms of language and presentation, that although I desperately wanted to take a course in advanced neurobiology, I felt that this course could actually destroy my love for the subject or teach me things that are incorrect because of language mistakes.If you are not a native speaker of English then by all means steer even further clear as you will learn some very bad English habits and pronunciation.I'm sure the profs' English ability is fine for collaborating with other professionals who already know the material, but teaching in English was a big mistake.Again, I highly suggest they re-do the entire thing in Chinese and get really good translations and subtitles made and then I think it could be an awesome course. Now, as is, it would be truly foolish to take this course.",1
890,"Lots of good information, but the presentation is very bad. Not only are the professors clearly struggling with the English (and the material, calling anatomical planes ""plates"" and confounding sulci with fissures, etc), but some of the recording/video editing decisions make it less engaging and more difficult to follow. For example, the size of the images is often compromised because they chose to show the professor on the left side of the screen, even though it is absolutely unnecessary to do so.Overall, I do not recommend this course.",1
895,"coursea does not allow me to quit the class. Also, I cannot do the homework or watch video at my own pace.",1
905,"The transition from the original Coursera platform to the new one has significantly reduced my overall satisfaction with the course experience (I have previously taken the 4 earlier Rice courses in this series and enjoyed them immensely).Major contributing factors to my dissatisfaction:-- The user interface changes are unwelcome and have detracted from my ability to engage with the material.-- There have been arbitrary (and unannounced) changes to polices, e.g. dropping distinction grading.-- The price increase per course and locking down of assignments to only those who have paid has unfortunate side effects, including.-- In contrast to previous courses in this series which had an active community engagement the discussion forums are now relatively empty, running the courses more often is not going to help this situation.Having previously been an unpaid evangelist for the Coursera approach and materials I now find myself extremely reluctant to recommend this revised experience to colleagues.",1
918,No translations available despite what subtitles and transcripts say.,1
1012,"the tutorials is not for average students, it takes a very high skill to understand them . also the quiz nd the assignments r too tough.hope you can make them a bit easy, the last one ,ie with graphs and trees was a bouncer. If the maths required is so high, please take a week to first explain the math fresher required in course and then start the main course",1
1148,the tests are difficult.,1
1156,"Poor visual aids, course content and format.",1
1265,very bad course,1
1559,This course should retrieved from Coursera. It is plenty of mistakes. One of the quiz is repeated. Questions do not have relation with lectures.,1
1624,"This course is not about Excel or MYSQL. This is only about Probability distribution, binary classification etc. So, if you're interested in learning some Math, this is a great course for you. But certainly not for learning some basic Excel and MYSQL. I am very disappointed and have lost all my money for nothing. I did not learn what I had initially thought I will. I feel cheated, I have lost both time and money at the same time.",1
1657,"Quizzes don't match what's been taught in the video lectures. Very poorly-designed questions, where there is more than one correct answer.",1
1726,"The instructor is VERY bad at presenting. SO dry and monotonic. Omg, I really want to learn all this but can't stand him talking.",1
1728,The course is very superficial in nature and there is no difficulty...,1
1729,The quality of videos is not good. There is some absurd voice in between. Also the course for week 3 has information related to finance which is beyond understanding levels of a person with no financial background.,1
1749,"What's the point of online education if one can only access the assignments if him has purchased the course? With no access to assignments, how could one evaluating his efficient of study?",1
1769,The course could be completed in a matter of a few hours. Super basic stuff. Waste of money.,1
1817,"If you are going to try and complete the specialization for this course series I suggest you look elsewhere. I was able to complete the first course with ease, but the second course to this specialization felt incomplete and does not tie in very well with the how excel is used. Don't be fooled by how easy the first weeks assignment is for the second course of this specialization.**My initial rating for this course alone was 4 stars, but due to the lack of effort and information in the 2nd course of this specialization I have to give this 1 star as these courses are all tied together.",1
1838,"I an very disappointed that DUKE hits your up for $79 just to grade the fist quiz (which should cost them $0). This is the fist time I have seen an Institution do this. I can understand charging for a certificate, or for a Final project, but not right out of the gate. I hope that the spirit of Coursera is not changing to a ""pay to play"" site. There are other higher rated Universities that take a more noble approach. I wonder if all the reviewers paid $79 day 1 for this class, or did DUKE recently changed their pricing policy after the reviews...",1
1870,"Very difficult to apply the knowledge without some support material with the content, e.g. PPT slides.",1
1873,"I would not recommend this course for a few reasons:1. There are no course notes accompanying the video lectures. Transcripts of the lectures in unformatted text files and a glossary are available for download. I really can’t figure why the instructor doesn’t provide an outline of what key concepts he wants us to learn from each lecture. Also, I’m surprised that Coursera doesn't require a basic set of learning tools for a paid class, such as lecture notes or an outline. This might be a good class for you if learn well from videos.2. The quizzes contain ambiguously written questions for no good reason.3. Two weeks in and there is little substance. For example, week 2 includes a few Skype videos of the professor interviewing former students from a Duke Master’s program. They seemed like very intelligent and nice people but the content of the videos offered little value (i.e., nothing new) to someone already working in corporate IT.",1
1898,Coursera does not want to give me a Certificate. I've got 95% for this course,1
1946,This is no real need for this course. Everything sounds like bits and pieces from magazine articles.... I suspect the sole purpose of its inclusion in the specialization is to fund Coursera. $79 at a time....,1
2039,"Really bad course. Badly taught, strange choice of assignments and quiz questions. Unfortunately, I did the free trial and Coursera didn't process my cancellation so that I had to pay for a whole month for this.Complete waste of time AND(!!!) money!",1
2070,"My experience with Teradata has been awful. Connection issues, latency, time outs. What should have taken 45 minutes took nearly two hours because of the load times for datasets. No clock or indication of progression for the queries.",1
2086,"I think this course if poorly organized. The instructor is really trying to show us that the real life data sets and databases are messy, but providing only written instructions for me it proved useless. I, for one, need to see what other people are doing and not read long pages of horrible written explanations.I paid for the course just to be able to do the exercises, which I also think it's a minus.All in all it didn't ""ENHANCE"" my career prospects, mostly because nothing useful was taught here. Wouldn't recommend anyone to pay for it.",1
2123,Unprecedented high speaking speed.,1
2138,"This course is too much doggy! Please do not use Coursera for advertising your friends´companies, or at least learn how to do it a little more professionally to look really relevant! This psychiatric lady also seems to be sexits. Looking at differences between pictures with a girl and pictures with a boy is really abominable and shows an intentional discrimination and racism. It is really shameful.",1
2189,"The technical support of this course is just terrible: just like many many other students (see the Discussion forums), I have experienced serious difficulties to access the databases platforms we need to learn and to complete our assignments. I can only echo the innumerable complains from my co-students about the lack of efficient support and technical reliability of this course; many of us are very unhappy about this, especially as they have paid for this course ... and what is Coursera doing about it, by the way?My advice: beware before enrolling in this course and even in this entire specialization, and search for alternative options (there are many, not only on Coursera but also on EdX and others ...)!!!",1
2227,"It is very interesting, but we have to face problems with Teradata, I have not been able even to log in, and a lot of students are in the same situation, and the problem persists, even in the duedate of the test.",1
2255,Perfect guided course. The only handicap to me is the accent of the speaking English. I hardly understand what they are saying without subtitles.Thx for your all precious effort.,1
2314,Unable to even start it... Click on videos of week 1 and nothing happens,1
2325,very boring and didn't learn anything i didn't already know. this was more like watching an anti drug propaganda film that I couldn't finish it.,1
2339,"yeah i would give zero if possible. very shallow and general, cannot learn much from it. if u want a course about neuroscience there's way better course than this. what the hell emory? what hte hell coursera? i feel less and less sincerity in coursera's mooc these days. edx is doing a much better job in my perspective.",1
2347,"If possible, I would give this course zero stars. It provides an incredibly closed minded view towards all topics and provides very minimal factual information. The makers of this course, and especially the instructor, obviously have had very little to no experience of any kind with most of the topics they discuss.",1
2377,"Feels underwritten by the DEA, and aimed at perhaps high school students? Very slow pace; info could've been distilled into less than half the lectures (I completed the '7 weeks' in 3 days). Doesn't really distinguish between users without serious problems & addicts (which I believe amplifies gateway effects & experimentation once people meet users who aren't brain damaged or addicts). Creates an exaggerated and arbitrary distinction between prescribed drugs as all good and recreational as all bad, and dismisses any possible benefits of substances that are not legal, noting only that medical marijuana has been helpful for HIV patients, which is certainly an understatement. Components are also helpful for cancer patients, anxiety, and more. Perhaps break this into studies of common drugs, how they work, & effects and separately, the mechanisms of addiction and treatment. However, I appreciated the 'reduce harm' policy economics.",1
2400,"Really disappointing course. Content is shallow, despite the impressive credentials of the Professor. Quizzes are ridiculously easy.",1
2442,Interesting to say the leastWhy cant i access my certificate. I paid and successfully passed,1
2491,Unprecedented high speaking speed.,1
2494,"There needs to be more help available, at least for paying students, to answer questions and clear misunderstanding. The quizzes are taking too much time.",1
2528,Could've learnt this on youtube - really not very good. Dr. Egger's courses are rigorous and full of math. This is just a bunch of pretty pictures. Shouldn't be included in this specialization.,1
2595,Tableau is garbage and their assignment practice questions don't work,1
2618,The course content is itself interesting but the lack of active mentors to provide guidance makes the course really difficult to learn. So many unanswered questions on the discussion board and many confused students. I am so glad I am not paying for this course.,1
2624,There is a gap between the instruction level and the difficulty of quizzes and final projects.,1
2667,"Online grader for labs is terribly buggy. Attempted submitting labs several occasions - all fail. Local builds work fine with apps working as expected and tests pass. The online builder gives very little feedback other than ""BuidError"". £40 wasted. Will not recommend and will never fall for it again. AVOID!",1
2677,"Outdated and unsupported !The code for the exercises was made for Eclipse ADT and Google dropped support for Eclipse a while ago. The official IDE for Android development is Android Studio now.I could import the project for Lab1 but I'm unable to compile the tests and the program with Android Studio, I get a ton of errors. My post in the forums about this is unanswered for 3 days now.",1
2723,"Very fast pace with no support. Be prepared to make countless online searches or to discuss solely with peers. Many drop out by the end of the course. Final Project is far too difficult for this course, because it did not prepare me at all. If you want to learn Android programming, I suggest you look elsewhere.",1
2733,"I was disappointed in the lack of explanation for the tools. Since everything depends on the IDE, and there was no instruction about the IDE, I found it difficult to do the labs. In the course of trying to, the IDE somehow managed to corrupt my hard drive. After that I pretty much lost interest in the course.",1
2765,No passion is on his lecture. There is only dryness and ethical superior pride through his theory.. Altruism without love is an empty vanity and well-designed commercial intention for selling his theory.,1
2773,"Too many lectures, specialized audience with huge competition, not accessible by novices of philosophy and only assessed through a single peer-reviewed assignment-essay.",1
2780,poor design on presentation assignment,1
2845,Very poor in all aspects.,1
2853,"Shame on you University of Houston SystemI did the first three lessons, which are less than average, then went on to quiz 1, after completion, a window appeared to ask me for money to get my results! This information should have been provided when I enrolled! I find that very mis leading.",1
2857,"The lectures are rather simple and easy to follow, but it's impossible to pass the quizzes with only a basic knowledge of mathematics/physics, only for experts. With the information provided in the video lectures you won't recieve a grade, there's a lot of extra work necessary with no other help given then some wiki that only a math genius would understand without any further help.",1
2914,"Horrible, endless rambling, no solutions to the quiz questions (unlike cal 1 course). sucks all the fun out of math, avoid this course, find an alternative where you can learn more with less time spent watching him write out 20 numbers.",1
3098,I did not know what was going on and I have to stop.,1
3105,Bad video quality and errors in course material. Worst course on Coursera.,1
3109,"I can't even begin to describe how much pain this course gave me.The code snippets and instructions in the exercise videos are incomplete/have errors and it's impossible to complete the exercises just using those (it's hours of extra work to get things working). Also, at some point you are given a new version of part of the files in the project, which won't match the rest of the files so there's remedial work to be done for that too. Some of these issues were flagged on the forum 5 months ago and still the course material wasn't updated. It all gets even worse as all assignments build upon the code written in these exercises.The assignment instructions are unclear. You are shown a demo of how the solution should look in the assignment videos, and then you are told you actually have to build something different than what you were shown. I also couldn't understand some of the grading criteria. You will get/lose marks on uploading a screenshot or naming variables/functions a certain way.I was really interested in this specialization so I kept going hoping it will get better but it only got worse. After 11 weeks of work I am ready to start something different. Wasn't expecting such low quality content on Coursera.",1
3182,Too hard to listen his English,1
3259,Very bad explanation too boring lectures,1
3278,"not good as usual one, the code you provided can not work, I had to debug againand the instructions for the assignments are not concrete as the last two courses",1
3281,no basics being taught! straight away code snippets are pasted.,1
3300,Not happy with this course.,1
3403,"Too long videos, you should make more short videos, instead of one boring long video. You speak too slow and that makes a 8 minutes video turns into 30 minutes video.",1
3509,The course is very boring and monotonous. It should be made more engaging. One needs to capture the concentration of students for a subject like Angular.,1
3548,TOO MUCH Peer rating too little hard information,1
3694,All this peer grading nonsense is garbage. If we are gonna pay 63$ a month of something we can at least get the proper grading system included.,1
3745,Startinng it now,1
3780,Linking programming language to hardware sucks. Do not waste time on this course.,1
3815,If I am auditing this class why can't the quizzes be free also?What happened to free Coursera?,1
3859,The course is almost about nothing. It seems to me that the teacher didn't make enough preparations and make a lot of mistakes during the couse. After 8 weeks of Arduino-related courses I've got almost nothing new besides first 2 chapters of Arduino Starter Kit book.,1
3914,"No forum, what are you thinking!",1
3949,This course is too short and have little real time example .,1
3956,One week of this course was only marginally relevant to the subject. The instructor even said as much.,1
4015,I don't need the teacher to read Aristotle for me. Reading is not Teaching.,1
4045,"I took all 5 previous courses in this series and they were all great.But suddenly Coursera has changed its policy, and one can not take courses for free anymore.If you just want to learn and gain knowledge without chasing the certificate, than the course is useless, because you can't receive feedback for your work.",1
4152,"I thought this course would teach art appreciation,but seems geared towards Teachers.",1
4155,The teachers there do not do what they teach: they rattle down their text as fast as they can speak and do not emphasize the content with movement or even change of expression. I was disappointed.,1
4177,The first three weeks assigments were way too easy and the answers could be found in the material.The last assignment was very poorly described and the material was very limited in explaining OOP. That meant it took a lot of time figuring out what exactly was needed to complete the assignment and how to do it.Disappointing after a great first course. Hoping the next will be better.,1
4211,"Waste of time and I did not learn anything from this course.It is basically 6 weeks of the ""facilitator"" asking questions without offering much in the form of answers.",1
4214,"Such lame quizes, I cannot pass them although I know this material in my sleep,because the english is so bad and has so many ambiguities; There are no single answers to a question, instead you need the check the correct answers, which are phrased in s misleading way, and one little mistake fails the whole question. So I try and try and try and never get all the correct checks for the specific questions. So I just fail and retry and fail and retry. This is so frustrating I consider I will unroll this course. Same because I know all this material !!!!",1
4234,"I´m quite disappointed in this course. First you should know that the first week doesn´t reflect at all the rest of the course in difficulty and in matter. As I was delighted by the first week presentation and way of explaining as soon I started the second week I was wondering what happen to the clear, concise examples and ideas presented in the first one. First The presentation of the following weeks is done by handwriting on software that give a very very poor graphic view. It´s BARELY READABLE ! It allows really smalls amounts of infos to be displayed. That could be redeemed by good explanations you may say but sadly it´s not the case most of the time. The examples are rarely connected to something real, numbers come up from ... nowhere. The level of difficulty could be challenging if you don´t have a bachelor of sciences like Math or Physics or Bio. It´s NOT A BEGINNER COURSE.To give more context I have done and succeed more 16 courses , 2 specializations, followed/audited about 3 others courses and that is the first time I´m giving a bad review. I´m sure the teachers put a lot of effort in doing the course , there is a lot subjects presented but I definitely suggest a change in the presentation to start then connect and fully explain examples. With some changes that course will fly high :)",1
4239,"Not very helpful for those with a solid statistical background. I prefer to use R to do the modeling things, while this course should talk more about pivot tables and existing useful financial functions which advantage over other statistical tools.",1
4243,Not enough detail and information provided in the lectures to undertake the final assessment.,1
4245,"Irrationally difficult and inexplicably sloppy. Having taken first ""Business Metrics for Data Driven Companies"" I had high hopes that it would be on the same level.Well, I was wrong. It was extremely messy, jumping around from definition to definition with little to no explanation and there was a general lack of motivation from professor Egger's part.Apart from week 1 that had some necessary basic knowledge of Excel, all of the next weeks' lessons were fast paced beyond a beginner's comprehension. By week 5 I had lost the motivation to go on and was only able to finish it through a great deal of trial and error on the quizzesI would not recommend it, unless you have some basic knowledge of the economic theories used in this lesson.",1
4249,"An absolutely dreadful course. The only things you'll end up studying are how to use the spreadsheets given and what the instructor was thinking when creating them... I can't figure out what, and there doesn't seem to be any way of finding out. The lectures were mostly stuff I learned at school and really quite easy, but I just have no idea what the final project has got to do with the lectures.",1
4257,if you do not have a background in statistics do not expect to pass this course,1
4283,This is more of an introduction to statistics lesson than one in excel... not what I had signed up for,1
4284,"Not done with the course yet, but I have to say it started out very well and organized. I was actually learning how to use excel in the first week WHILE the instructor was teaching. The later weeks, however, seem to be completely different. They're disorganized and I'm struggling to see how the material correlates. It's as if I'm being bombarded with random topics, in addition to the fact that the instructor literally stops using excel to teach. After week 1, lessons are just random notes on a blackboard with a link at the end to the excel sheet in which the instructor has already prepared before with A LOT of info that you need familiarize yourself with solo. I had high hopes when I was done with the first week, but now I have to say I'm bored and demotivated!! (so far)",1
4286,"This course has nothing to do with Excel. It should be called ""Statistic and binary modelling with little use in excel"". If you except to learn about functions, pivot tabels, macros and the many other exciting features of excel, this is NOT the course for you.",1
4287,I dislike this course because I have to complete so many assignment in one week. Instructions could have improved and slides could have improved rather than using chalkboard. Sorry there are a number of times I have to rewatch the videos and still dont understand. Hence I even have to place myself in another slot because I could not finish the assignment. Please improve on this module so that it is more enjoyable for learners who really want to learn. Thank you.,1
4314,Title misleading. Never ever a beginners course.,1
4315,"The concepts here are useful and Mr. Egger is a knowledgeable instructor but 1) this class is really about gathering information with Excel as the tool - you aren't learning anything about Excel functionality, so the title of this course is really misleading if you just want to become a stronger user in Excel 2) there is a huge disconnect between the video lessons and the excel worksheets used to complete the assignments and since many previous reviewers mentioned this, it seems like that's not going to change. 3) the disconnect between the lessons and the assignments wouldn't be an issue if the instructor could be bothered to respond to forum questions. Mine sat unanswered for 5 days as the deadline passed. You are NOT going to get support if you dont understand something.",1
4316,Really unhappy with how difficult and over complicated it is. I came here to learn about Excel. Pivot tables? functions? The course really loses focus and its unfortunate that I am now stuck here and cannot continue the entire specialization.,1
4322,"Very poor lecture, I barely learn anything about excel from this course. The course title is quite mis-leading",1
4326,"When the instructor for the course expresses amazement at the level of difficulty people are expressing in the forums that tells you a lot about how out of touch he is with what he is teaching and what is really required prerequisite knowledge.There is minimal actual instruction in excel-most often concepts are taught much like Khan Academy, on a digital blackboard. Nothing inherently wrong with that but when your course title has the word 'EXCEL' in it one would reasonably expect the instructor to actually demonstrate using excel. Nope, not here.If you've never heard of linear regression or Bayes Theorem don't bother with this course. Honestly. While those things may be easy to explain without the math they are very difficult concepts to implement and a simple 10 minute video won't clear the fog.You absolutely will not 'master' data analysis with this course. I've used Excel for over 15 years, daily, and to have the gall to say your course will 'master' something with a few videos is misleading and deceptive.If it wasn't for the TA/Mentors who do the lions share of work in the forums answering questions and deciphering the questions so students can understand them this course would be an abysmal failure.If you're wanting to jump on the data analysis/ scientist bandwagon look elsewhere. i.e. EdX has a great course on a true introduction to data analysis that is more in line with people's impression of actually using excel in that context.Now, having bashed the course I do believe the instructor to be a very competent and knowledgeable individual, but I feel he's been in academia too long and has grown accustomed to teaching those who've been in school continuously and still have algebra/ stats fresh in their minds vs. those who need to brush away the cobwebs. The course in more on the level of a 201 and in certain parts 401 level but not 101.",1
4329,Misleading course name/title. Was expecting a course on using Excel. Forums were cluttered and not monitored often.,1
4335,It is very easy and unusefull course.,1
4339,"Really wanted to take this class. Unfortunately, I believe it is more about advanced statistics then excel. It was advertised as a beginners class and that is not the case. I recommend having a significant knowledge of statistics before taking this course. I'm a 15 year senior level accounting executive and I was easily spending 10 to 15 hours a week plus watching the videos 3 or 4 times each in order to understand the content. It was very difficult to understand. Disappointing.",1
4346,"Poorly coordinated lectures. References to resources that are not provided. No response (at least, for days on end) when questions are posted on the forums",1
4348,"This is an advanced Statistics class. Learning was chaotic, confusing, and fast paced. Strong Mathematics skills required. As icing on the cake, there is an 8 hour project at the end of the course .. and they only tell you at the end that you should have been working on this all along! Not at all what I wanted to learn or find productive in the real world.",1
4350,"No relevance to specialisation. Do not expect to get through this if you have not taken multiple statistics courses at university level or higher maths. Barely any practical application, does not prepare you for final project.",1
4354,"Concepts are fantastic but the material developed to deliver the course is short of expectations, especially from a university. Excel sheets do not match what is demonstrated in video lectures, lots of confusion around how to complete tasks, quiz answer options not being correct, and missing Excel spreadsheets (e.g. video lecture says to refer to accompanying excel spreadsheet, but no spreadsheet available). Also, judging from past discussions by students, some inconsistencies around formulas being presented in video lectures versus assignment questions. could have been a great course, but the inconsistencies have made is very disappointing.",1
4355,"Interesting statistical concepts, and great theory. However, the lectures and the quizzes do not prepare the student well for the final project.",1
4357,Really confusing and struggled a lot. The course doesn't prepare you for the final project.,1
4359,The course doesn't prepare you for the final project.,1
4361,"The title is very misleading. Excel is an afterthought for this course; instead there is a heavy focus on statistics. The class claims to be for beginners, but that is clearly not the case, as it requires previous knowledge in inferential statistics and calculus.Excel is hardly used and is certainly not the focus; there are weeks where Excel is not used at all. There are no practice assignments, only quizzes.It's clear that this course is outdated and poorly maintained, as the videos refer to examples that are not included or content that was not presented.Needless to say, I will not be taking any other courses in this specialization.",1
4369,The course structure is not thoughtfully prepared. There is a lot of confusion around what the instructor wants to say. The practice quizzes and course content have no match whatsoever,1
4384,"Content is not well organized, videos are disconnected from one another, explanations are not clear, spreadsheets contain vast information that is not explained anywhere. It is been quite difficult to follow through the course and I bet many students are giving up.",1
4398,"this course is definitely NOT for beginners. you MUST have intermediate to advanced knowledge of statistics and math. I had to resort to google and khan academy extensively just to grasp the concepts in this course. This course also does not teach you everything about excel, let alone master it. you just refer to pre made excel sheets for quizzes. thats it. Good luck figuring those out.",1
4407,"Don't be fooled by how detailed and clear the first weeks videos are. The second thru the final weeks are lacking details and explanations and found myself lost during most of the videos. There were even a few typos and errors. Be ready to do a lot independent research and learning from other sources in order to complete the weekly quiz. I was unable to complete the final project of this course due to the lack of knowledge provided by the lecture videos and some of own research. I was hoping to complete the specialization for this, but it doesn't seem like this course provided me with enough to proceed.** The use of excel on the weekly basis was poorly integrated with the flow of the course.",1
4423,"Complex concepts (e.g., regression), which cannot be taught in such a short course format (I know from extensive prior training), are taught here in an arcane way. I don't know how students without prior knowledge on these topics (e.g., regression, ROC curve analysis) could possibly understand this when taught this way.Course is also in an 'early draft' mode, with plenty of mistakes in the videos/slides. The course (and specialization) really tarnishes - instead of enhancing - this institution's outside image and reputation.Really a deception; sorry I took this class and specialization, a complete waste of my time and money. The initial presentation was misleading (and I have found online many people sharing the same feeling).",1
4426,"Given this is the third (or fourth) iteration of this course, it's telling that the errors from the original release remain in the videos and quizzes. There are other, higher-quality Data Science MOOCs available.",1
4429,"Too advanced, not enough Excel",1
4433,"Probably the worst class I have ever taken on Coursera. The teacher asked us to do tons of things without explaining how and used tons of complicated math formulas without explaining what they were, what they did, or when and how to use them. There were also actual incorrect answers in the videos on occasion, so that even if you did do things correctly, you would think you were wrong and be confused, and there were a lot of inconsistencies between the spreadsheets used in the videos and the methods used to solve things compared to the actual spreadsheets given to us, which makes things pretty impossible to learn. If you're more advanced, it may be easier to find and understand the differences between the video and the spreadsheets, but the whole point of this class is that it is for beginners.",1
4445,Not for beginners as promised. You need strong statistical skills to understand it.,1
4459,The course requires good knowledge of statistics as a pre-requisite.,1
4463,"Unfortunately, the material and lectures of this course fell short of my expectations. Lectures don't follow a logical path and are all over the place, and some concepts are not expanded as required. Overall, I believe they need to improve how the content is presented, and how it's applied in a real world context.",1
4466,"Being honest, the lessons in the course are disconnected with the weekly tests, specially for the final exam. Professor Daniel Egger and his assistan MUST improve the lessons, including examples step by step specially for the multiple linear regression su",1
4470,In the course info this is described as the first course in the series and that it requires no prior knowledge but the first week quiz contains questions referring to an equation 'discussed in the previous course'.,1
4473,"Was very frustrated with this course. Does not have a strong emphasis on Excel skills and the statistics models provided seem to be randomly chosen and poorly explained. Quizzes were interesting, but time-consuming because of the necessary extra research outside of provided lectures.",1
4495,I would not recommend this course. It was very poorly planned and seemed thrown together.,1
4508,"the course neither explains statistics properly, nor teaches how to use excel effectively, disappointed",1
4512,"If I could give it less than 1 star, I would. It wasn't an Excel class, rather it was a targeted business statistics class with only disjointed lectures and no benefit of textbook to actually help you learn. Lots of errors in the lectures and tests, and little to no support from course staff. Stay away! You won't regret it.",1
4519,"im in week 4 , cant master data analysis in Excel",1
4534,"Very confusing lectures, he says you don´t have to have a basic level of excel to do the course but I didn´t find that true. Struggled through all of the lecture videos and the quizzes seemed to come out of left field.",1
4535,"Very poor material and instruction videos, with no logical flow or process.",1
4540,absolutely one of the worst courses... I am deleting it from my list.no slides make it harder to follow.,1
4545,"Warning: The lecture videos along will NOT be enough to prepare you for the final assignment! Be prepared to do your own research for the extra study materials. On the forum, many students said they had to drop out during the last week (probably without getting a refund!) because they were completely caught off guard by the huge knowledge gap between lectures and the final assignment. If you are determined to get the specialization certificate, you should definitely start the final assignment as early as possible. Don't wait until the last week or two!!",1
4567,"Don't know how to apply the statistics and excel formula in real world situation. Besides, it becomes focus on approving statistics equation than teaching data analysis in excel",1
4572,Where is the course study material and are you providing a book on this subject and Excel? You have me lost.,1
4714,Instructor was boring,1
4841,"Personal difficulty in understanding accents, my own lack of ability.",1
4849,I found it very hard to understand the lecturers and what they were saying.,1
4878,"The teachers doesn't seem to enjoy beeing there.......... The all seem like ''The faster we do this, the sooner it will be finished....''",1
4903,"The articles that were limited were actually somewhat helpful. The google hangouts seemed lackluster and draining. I would recommend more substance in the videos, or MoMA might switch to an article/book MOOC that doesn't rely as much as people talking about their opinion without a ton of evidence or support. Wouldn't recommend participating in this MOOC",1
5072,"Way too much videos and too little hands-on learning. Felt like the course mostly taught you to remember stuff, and not actually learning a skill, though I broke the course early.",1
5137,this course was a waste of my time; luckily I found out after wasting only 6 hours on the preview. this course apparently requires a level of probability knowledge I don't,1
5152,Uses R with no explanation. Why does it use a challenging programming language that is not the point. The point is to learn statistics.Use Statcrunch - so students can focus on statistics not programming,1
5193,"The course is as much about computer programming as it is about statistics. The statistics I can do with pen and paper; the programming, I found very, very unhelpful and confusing. Eventually, I gave up on the course.",1
5263,"Puerile, made up examples with made up data, no deeper treatment of the mathematics involved than the here-is-a-magic-formula-use-it approach and mistakes (including serious conceptual and factual errors) evident in the quizzes and the R labs. Far better to look out for the ""Data Analysis and Statistical Inference"" course by Duke on Coursera that is presented by a passionate statistics teacher, covers the same material (and more) and provides a far better introduction to R than this course.One of the stated purposes of this specialization is to clean up the way social scientists conduct science and are perceived as scientists; in this respect, it appears that the worst enemies of social scientists are social scientists.",1
5270,"I love the main lecture of the statistics. The Subject is fun. After couple lecture, my mind was very clear.But most of the time I'm working on the statistics software name R. I think it would be better if require R knowledge. If not, student like me will need more than weeks to get use to R. I don't mean learn another software is bad idea. I will always like to learn something new. That's why I go MOOC. What I mean is R and Basic Statistics should be separated. First R, than Basic Statistic. Or first Basic Statistic than R.I really enjoy the class. but the extra is a bit heavy for me.",1
5289,"Good lectures, but the R-lab is horrible. Do not take this class.",1
5374,"This course is bad!I had come upto week 4. While Chris Impey is knowledgeable and good, the course structure is very poor and leaves a lot to be desired. I would venture to make some suggestions:a. Restrict each video to a max of 7 minutes. More than that makes one sleepy.b. Reduce the number of videos in each module to a max of say 6.c. Instead of having Chris expound it like an audio reading, please include some slides, pictures,tables so that the matter to be learnt becomes self evident and Chris doesn't have to speak so much. A good example is the Coursera ""The Global Financial Crisis"", which I am also doing currently.d. If you feel all the material in this course has to be studied, then to achieve the objectives in (a) and (b) above, divide this course into two parts, Astronomy: Exploring Time and Space - part I & II.e. The written assignments are very simple and do not require any mental resources other than memory. Can you make the questions more challenging? For example, in Telescopes (Assignment 2), can you not ask a question like ""In addition to Atacama, Chile, using Google earth, which other parts of the globe may be suitable for installation of ground based telescopes?"" or ""To obviate the blurring effect of the atmosphere, discuss the possibility of high altitude balloon based telescopes?"" or ""What do you feel about the fact that since today's mobile phones have high computing ability, their components can be used to make a low-cost space based interferometric telescopes?""Kudos to Chris and his team! On the whole, knowledge wise, this is a good course.",1
5393,I can't have my certirficate and already I pay for it!,1
5396,Boring,1
5449,"The first three courses in this Duke series were superbly well done. I have taken numerous courses from Harvard and Johns Hopkins, and none of them compare in quality of execution of the first three Duke courses in this series.And then there was Bayesian Statistics: much of the ""instruction"" in this course was truly awful. The quality of the slides and video and so on was still excellent, but the ""teaching"" was horrible. Vast amounts of totally unexplained jargon and very extensive equations were thrown at the students with the apparent assumption that the course was a review for postdoctoral statistics students. When material is beyond the scope of what perspective students can reasonably be expected to understand, faculty members should be honest enough to just say so rather than pretending to teach the subject matter.I appreciate very much what the Duke faculty achieved in the first three courses, but the treatment of Bayesian statistics that I have just suffered through was shameful.",1
5451,"This is easily the worst course in the Statistics with R specialization. Contrary to the earlier courses, which were very competently taught by Dr Cetinkaya-Rundel, teaching quality is very poor in this course. Both of the main instructors are unable to explain what's going on. There is vagueness and ambiguity, which is almost impossible for the uninitiated to resolve. All in all, a very frustrating experience. The course would urgently need re-recording. As it stands, it shows a huge disrespect for the student's time and effort.",1
5455,"This class assumes a lot of statistical knowledge and background that is not covered in the first three classes of the series. So much statistical terminology and jargon was used by the instructor, it felt like taking a class in another language where I had to constantly stop the video and google for the terminology she used. It took a lot of grit to finish the class, which was overall a very demoralizing and negative experience.",1
5468,"The first three classes in this certification were excellent; this course was anything but that. There seems to be a significant disconnect between the first three courses (probability, inference, linear regression) and the fourth course (bayesian). I do not have a strong statistics background but I felt the first three classes in the certification challenged me, while providing an adequate level of support and thorough / articulate examples; the pace was perfect. Yet, with the fourth course I believe that either: 1) there needs to be a bridge course that prepares you for the bayesian course, or 2) the material needs to be taught at a slower pace with more specific and well presented examples / frameworks to work from. Although I was able to complete the course, I will now have to find an alternative source to learn from in order to really understand bayesian stats.",1
5474,I get really frustrated when the tutor doesn't explain lots of concept/symbols in the materials.....,1
5477,"This course needs much more work from instructors before it gets offered to the public. It is poorly assembled, offers hardly comprehensible material with no or very few resources to turn to. Reading material is listed, but they are useful for people already skilled in Bayesian Statistics. Exercises are worded such, that even the questions are a challenge to understand. Quizzes contain material never mentioned during lessons. Discussion forums are left unanswered by the teaching staff - or if they reply, they do it in a very negligent manner. No support on the merits. A major disappointment.",1
5479,"About two years ago I completed Dr. Mine's course ""Data Analysis and Statistical Inference"" and was quite impressed by it. I always hoped that there'd be a follow up on bayesian statistics, so I was really excited when I heard that a course on this topic had finally been created. However while attending the course I became more and more disappointed. Dr. Mine does a nice job explaining things, other teachers in this course aren't as talented. Most slides / videos are quite useless for teaching because they skip over important steps without giving appropriate explanations. Also I was quite disappointed that this course pretty much only focuses on conjugate priors. MCMC is only skimmed over and the introduction to MCMC is more than questionable - instead of showing a simple example, MCMC is squeezed into the topic of bayesian model selection. Another point is R - this course doesn't really teach bayesian stats with R. It teaches how to call one-liners like bayes_inference (from package statsr) or bas.lm (from package BAS) instead of lm. This is totally disappointing. I wish this course would skim over conjugate prior methods and then focus on MCMC sampling methods by teaching how to build interesting and practically useful models using JAGS/STAN/PyMC/whatever. For anyone interested in bayesian stats I'd recommend reading ""Doing Bayesian Data Analysis - Using R, JAGS, and STAN"" and ""Probabilistic Programming and Bayesian Methods for Hackers"". These books are actually cheaper than this course.",1
5485,"This course is not well-presented. Lectures are unimaginative, and there isn't enough supporting material or readings.",1
5487,The course lacks of explanation and it's very difficult to follow. It seems that the instructor just reads the slides without reasoning and explanation. Suggested reading materials are needed.,1
5489,"I don't understand how come this course can get such high reviews. My experience with this course is horrible. First of all, most quiz are poorly designed, lots of mistakes. For instance, there are 10 Qs in week 1, 3 of them have mistakes. Wasted me tons of times.Lectures are also difficult to follow. Instructors usually just give formulas without further explanation. I forced myself to go through them until week 4, I finally give it up. I feel like it is a waste of my time. I need to find a better course on this topic.Most coursera courses are very well designed. This one is the worst I have ever experienced.",1
5497,Not much useful. Limited in interactivity. Dropped out after a week and half,1
5512,too many theory and too boring,1
5526,I found this course is very much theoritical. I should have included mathatical models and ways to relate them with our day to day life.Thanks,1
5533,She is fluent just like reading the scripts.,1
5551,"Very bad course. The content can barely be applied outside US, you don't know from which perspective it's explained (for sales or purchasing people), the videos are bad quality, the teacher is babbling, no extra resources, no interaction with the audience outside the assessments.",1
5552,This course offered nothing significant or new to anyone who has spent any time around business or government negotiations. It really seems as though the instructor either assumes all of her students are completely inept or that because it is a free course that producing a reasonably viable product is not necessary.,1
5557,"Too short, too easy, too costly. Beautiful picture, beautiful title, but low content.",1
5561,"The Instructor doesn't give enough info about principles and her presentation skills are very week,the studying material also are very poor",1
5566,"Boring, didn't have strength to finish",1
5570,"teacher talks much too slowly, and uses many complex terms when they are not needed",1
5581,"Course depends too much on multiple third-party sites to be as enlightening as I had hoped. I learned about some great resources, but that's about it.",1
5627,Painful to watch and boring as hell!,1
5673,"I didn't learn anything more than what I already knew- which was basic concepts- and was able to pass anyway. I'm very disappointed. I want to be a good programmer, and this did not teach me any programming.The videos are not conducive to learning. You need a more engaging teaching plan. Don't just read slides to me, I can do that myself. Use videos to explain concepts, but stuff your videos with practice problems. Put more code in the videos and walk me through it. Put in mini-quizzes in the middle of videos, to keep the student aware of how they are doing in short increments. Don't move on to the next thing unless they have learned the first thing.I was unable to complete the projects because the practical coding was not taught - don't throw a third of the course into the first practice I get to without first walking me through short, contained examples of how to actually use the code, and testing me on each piece before putting it all together.",1
5675,"The entirety of this course is ""watch and listen"". There are no hands-on activities/assignments that get you implementing what you are (supposedly) learning. The assignments that are offered are optional and consist of filling in the blank code without actually providing you a way to see how your code works in the big picture.For example - they go on and on about how intents are complicated and tricky, but they don't actually give you a required assignment. It's optional. Then the actual assignment is ""Do this here, and this here, and then this here"" and only when you have completed every step can you actually run the code. But this doesn't actually show you how to build the intent. All you did was write down what they told you to and where. You never actually build anything yourself. You don't actually get an idea of how these things work or how to implement them yourself from scratch.The quizzes are also pointless. Every quiz is multiple choice, select all that apply. There's no thought required, just regurgitation of info from the lectures.Also, the entire week 1 lectures are HORRIBLE. The lectures on git are sssoooo dull that I could not stay awake no matter how much I wanted to. They are given in a monotone, bored tone that will drive you insane.Overall, this course seems more like it was hastily slapped together, without much thought, and then never looked at again. I would not recommend anyone take this course, let alone pay for it.",1
5679,"More practical application would be helpful in solidifying knowledge. Concepts seem abstract outside of any programming practice. Additionally, flow of lectures seems scattered at times: concepts are introduced then not expounded upon. This creates a distracted learning path that makes it difficult to follow the lessons. (From a beginner programmer's view).",1
5689,"Course work was entirely optional and only started at the end of week 2. The required level of involvement was too low to be helpful. I don't learn well just watching lectures - I can get that much from YouTube!!! However, I expect a bit more when paying $500 for a specialisation.The first module in the series was too basic but at least there was a lot of coding involved. This (second) module didn't even have that.",1
5690,"I was really disappointed with this course, especially considering how great the first course was. IMO...there was too large of a jump between the two courses, and the plethora of ""I'm totally lost..."" threads in the forums would seem to back up my opinion. I'm currently reading Head First Android Development and it is exactly what I needed to grasp basic concepts as well get my bearings in the Android world. If this class remains the same I wouldn't be surprised to see attendance drop in further courses and/or Coursera starts receiving complaints about the difficulty.",1
5703,This course gives good perspective on innovation process and how to bring idea to life. However it was disappointing to me that content of the course has nothing to do with Art and Culture.,1
5718,"I would like to give this course worse than a 1 star. The course explanations are very poor. The explanations drag on and make no sense. I had to go to outside sources to make sense of what the videos were discussing, which I felt like defeats the purpose. Why am I paying for something when I have to use other sources to better explain. I would never recommend this course to anyone. Listening to these teachers explain each subject poorly was killing me. I like to learn through examples but what they provide just makes it more confusing and hard to follow. Each instructor got worse and worse! The videos were so hard to watch and the accents made it even more worse! I feel robbed from taking this course. I should have asked for my refund within the first week, but I felt since I was paying, I would stick it out a little longer. You will get a better explanation if you take each subject and youtube the videos on each subject. Very useless course. Hated every week of this course and I wouldn't dare to continue with the full specialization program. It's very sad to hear that this course gets recommended a lot, but it missed it's mark completely.",1
5730,"I don't recommend this course. The lectures barely touch on the topics being taught, you are expected to go learn on your own. I learned more from the free Khan academy than from this course. It would have been worth more buying good literature on algorithms.",1
5809,"Def a useful skills to have when starting to interview for jobs. This is a hard course to teach to begin with. I found the lectures really boring, too long, hard to understand and just not really motivated well. I think the homework problem are good, but they are very time consuming. You need to use various methods to find edges cases and though that might be a good skill to have as well, it's just too much to get done in one week and somewhat frustrating when you're only stuck in one test case. I think this could be an excellent course with a few modification on the slides and adding more motivations and making shorter homework problems that focuses on the main part of the material for that as oppose to things we've already covered in the previous week. At the moment, I don't think I'll continue this specialization the way it's designed.",1
5839,"If one has taken the Algorithms 1 and 2 course by Profs. Sedgewick and Wayne, this course will be a disappointment and waste of time.",1
6002,"So much of the content was limited without paying for the course, that calling it a MOOC is a real stretch. Because of these limitations, most of my work was done on my own, and by purchasing the related book. Since my local Community College used to run this course, but now points to this onine course instead, it's a huge disappointment. Most folks who are going into business for themselves need good information but have little cash. The one star is for the handouts (I believe pulled from other websites but pointed to by this course) - these have been useful.",1
6078,"Why is this course dangerous?I took this course because first I liked the idea to have a history lesson spanning the age of the whole universe. Maybe it is also intriguing to explain everything just with one principle: the second law of thermodynamics. BUT as it turned out they don't have any clue what this second law of thermodynamics means. They always forget the second part of it: it is just valide in a closed system. I think everbody will agree, that the earth for example isn't a closed system.In the beginning they tell you you should be critical about everything new you hear or get taught. But if you are critical and question things they teach you they will ignore you. One glance at the discussion forum shows: they are fast in answering good feedback and compliments by students, but critical questions (with scientific papers who show different facts) get ignored for weeks and months. They are cherry picking. They just see what encourages their view and their opinion and ignore everything that contradicts their course, opinion, believe and dogma. In this respect they are so dangerous. That is the same principle how cults work.Maybe their goal, stopping polluting and changing the world in such a speed seems to be a good one. But also here you have to be careful. When they talk about climate change and the overuse of ressources they are exaggerating by a factor of 50! In my opinion you are damaging an important discussion if you are lying and exaggerating in such a shameless way. For sure it is not helpful! But again, the truth doesn't fit in their world view.Furthermore they ""teach"" that cities get blown away by taifoons is caused by the ""universe balancing entropy"". This isn't just lack of understanding physics, or history, or flow mechanics, it is just insane.In summary: this is not a history course, but the ""teachings"" of a lying, exaggerating, cherry picking cult with no knowledge in particle physics, cosmology, chemistry, biology or even history.So please: if you take this course, be aware of this pitfalls and their intentions.",1
6114,"I find the week 6 of this course completely irrelevant. Also, I'm attending courses on Coursera to learn and quizzes are IMO an essential part of that process, but definitely not essays. For me personally, essays are just waste of time and there's nothing beneficial about them.Another thing that bugs me is how questionably and often misleadingly are thermodynamical laws interpreted by the professors in this course.",1
6208,the class gave me nothing. nobody wan's to waste tons of hours to learn nothing. so I personally think this course is on of the worst classes among the Coursera.,1
6209,Course is not good at all. The instructor assumes that you have a good genomic background.,1
6210,I struggled so hard! No way near the same level as the other courses.Came from Computer science background and felt that I missed so many terms and concepts that were required for this course,1
6212,"Very frustrating and disappointing experience. The lectures were hard to follow on many levels:1) The enunciation was unclear and subtitles were often of-the-point, plus they covered-up the code lines that were being discussed.2) The lecturer often failed to explain logical constructs that were being used, despite the fact that the course should have been understandable with no R cran/Bioconductor experience.3) The method arguments were either not explained, or very vaguely mentioned, which means applying them to new situations was unnecessarily complicated.4) No feedback at all was offered from course organisers/reps to anyone, even after complains in discussion forum about quiz questions.5) No feedback for solving the questions/correct answers even after the deadline.6) Quiz questions required methods and logical constructs that were not explained/used/mentioned in the lectures. One quiz lacked background information of what data needed to be used (the info was available in the previous version of the course). Some quiz questions were biologically inaccurate i.e. confusing genes/transcripts/exons.",1
6218,complier error all the time!!!!!!,1
6308,*No Stars*Another boring animal class that I would not recommend. The teachers do seem nice and well educated however it is still too boring and slow for me.,1
6337,"Too many animal mistreatment clips were shown, also some gross misstatements of biological-scientific truths and widely held facts. Humans cannot change the genome of any living creature, DOGS are WOLVES and always will be. We have domesticated and bred for certain personality traits and characteristics. Done with your course.",1
6524,This course was nothing like true Tibetan Buddhism which is my religion ! please consider canceling it immediatly or having me or a real lama as the teacher,1
6526,This is a course that sounds like a bad audiobook. The prof. reading a the lecture and giving lot of information without any soul or teaching energy to engage. I prefer then read a book about this topic than being here at this course get bored listening at the same tone a reading of a lecture.,1
6527,Audio is terrible - can't continue,1
6528,Not well presented at all. Great disappointment.,1
6532,"Really horrible in instruction, experience and application ability of lecturers, poorly put together and assembled. It was astonishing to experience such self-promoting hacks rather than knowledgeable practitioners of the art of meditation. It is very important to clarify the content of a somewhat titled misnomer. The course was an academic study in mediation bring is rather esoteric, questionable, and personal opinion concepts and comments; in effect a mesh-mash.",1
6536,I am very disappointed about the content. It is not a course. Pr David Germano is just reading text. No design no learning experience. I would learn much better with just reading a book. It is a shame I was very interested in the subject.,1
6539,"The course is very useless, there is no meat, only water - there is no substance - only talking around the topic. I am appalled that such research exists, and ashamed for the coursera",1
6543,The course appears unfinished and very disorganized. The lectures are monotonous and boring.,1
6547,Not for the basic student looking for information. Very detailed,1
6551,"Too much theoretical. Probably this is not the course I was looking for when I joined it. Nevertheless, I will try to get some concepts from it, particularly for what concerns the practice of meditation and mindfulness.",1
6558,"Watch one or 2 lectures before you join the course, if you felt okay then go ahead, otherwise don't waste your time and money, something wrong in the course structure...",1
6561,"I think the teacher had to little expression , it was like he was reading loud, and I felt I might have red the text myself. I lacked some enthusiasm",1
6575,Terrible...can't believe how a quality the course is. Embarrassing.,1
6577,too hard to follow,1
6592,extremely boring teachers,1
6631,not very good audio.,1
6632,Very poorly structured. Purely academic and dull as dishwater. Buddhist meditation is a profoundly beautiful tradition but there is no beating heart here. I gave up quickly.,1
6634,I waited a long time for this class to start but now that it is here I find it impossible summon enough will to pay attention to the lectures. As a retired teacher I have more of an ability to stick to a class than many but life is too short to wait for this class to perk up. The professors seem very knowledgable but their teaching methodology leaves a lot to be desired.,1
6636,As a beginner to the subject... I feel like I know even less if that was possible after just the first few weeks!! I plan to start again sometime in the future and see if I can figure things out in this course.. after I learn about Buddhism somewhere else first!,1
6642,Far too academic. Nothing of substance but lists. I'm not here for monotonous lectures.,1
6646,"I was looking forward to starting this course, but so far, checking through the delivery of the first 4 weeks, I can't see spending time voluntarily following this. There is no doubt a lot of work put into this, but it is painful to take part, so no thanks for me.",1
6650,The introduction is great. After that it's unbearably boring.,1
6651,Badly taught,1
6655,"Joined this course as I was really interested in understanding meditation itself from a scientific perspective. The monotonous drone of the instructors combined with the super low volume that one has to strain to hear, the extra extra long essays which read like one long chapter less novel, the videos which extend what could've been covered in 5-7 minutes to nearly 30, all take the interest away. Unclear if this was intentional & intended to enable participating students to be more patient and tolerant of imperfections around them.",1
6656,boring,1
6868,I submitted homework for week 1. I get an email telling me I did not submit. Then week two the course makes references to material not covered in week 1. it looks like a week is missing between week 1 and week 2?,1
6870,Boring course!,1
6940,Not what I expected,1
7062,A waste of time.,1
7137,"My course 3/4 in this specialization is still incomplete because the questions had wrong answers in the module quizzes and it was literally taking HOURS to complete the quizzes because you had to guess which one of the wrong answers would be correct this time. The questions rotate through slightly different questions each attempt so you can't simply use elimination on each attempt, YOU GUESS EVERY SINGLE TIME. IT'S LITERALLY 100% LUCK! I thought maybe course 4/4 would be better but nope, same problems here. I've wasted over 6 hours in total trying to pass these broken tests and I'm completely over it. I also reached out to chat support, they went through and said they couldn't find anything wrong and couldn't help me and a refund was impossible because it's past the refund date. Even though I paid for 2 broken, un-proofread, time wasting courses. Also, in course 4/4, the math tables in the videos are staggered all over the place and looks terrible. Seriously an issue of someone not even looking at the video before publishing, would have taken less than 5 mins to fix for the entire course. Also, every time a ""checkpoint"" question is supposed to pop up, nothing happens. In every single video, they're all missing. I've used Coursera for a few other courses and thought they were reliable but this makes me think otherwise and I feel like such an idiot for paying $200 for this COMPLETE GARBAGE. Other people in the forums have shown they have the same problem posted over a month ago but nothing. Please, someone from Coursera get a hold of me and help me resolve this ridiculous problem.",1
7153,"Nothing much to learn, the videos were rather short. There's no lecture on computing the angles and the full features of the framework. The framework wasn't updated for Swift 3.",1
7154,waste of time and money,1
7155,"Why there is no ""minus one"" star? Because one star is way to much for this course. Stay away!",1
7156,"In this capstone project, you're given a framework to work with, and asked to create an app with pretty minimal required criteria. The problem is, there's very little instructions or support, so it feels like a classroom where the instructor said ""do whatever you want"" and walks out of the door. Overall the specialization feels ill-organized and of questionable quality, and there are plenty of negative sentiments in the forums.",1
7157,"After the first week, the instructors never showed up to answer a single question in the forums. The capstone project itself was disappointing, I learned much more from doing my own app in class #3.I took the Coursera Android specialization, which was eons better than this. I would not recommend this iOS specialization to anyone. I would never again take a MOOC from U of Toronto.",1
7159,"This capstone project was a huge disappointment to me. The course caption stated that this would be where we would use Location, Design and Usability, and Persistence and Settings to build a high quality app. Also stated is that ""you’ll apply your skills to create a fully-functioning photo editing app for iPhone, iPad, and Apple Watch."" Earlier I have also read that we would be allowed to build an app of our choice or according to teacher's specification. That text now seems to have been removed.Anyway, none of these promises were kept. Instead we got something like 20 minutes of lectures in total for the whole four weeks, all on a simple framework to track face features. Unfortunately this framework isn't very competent, so there's only so much you can do with it. Most of us have only placed some static images and simple animations on top of the face shown in the camera view, and that is actually enough to get full marks according to the form used in the peer review. How does that even begin to fulfil the promises of the caption?We have paid as much for this course as for the previous three. There should of course be a similar amount of lectures on more advanced topics like current best practises for UI design, the Location API which was promised, and other interesting things that provide the building blocks for a state of the art iOS app. For a real cornerstone project, I expect that more than 4 weeks would be necessary in order to be able to build a good app, since many of us are doing this on our spare time.I feel sad that I had the misfortune of signing up for this course before it was made, but hope that you will take our collective criticism and make a good course out of this for future students.",1
7162,This is a joke.,1
7163,"If I could, I would rate it 0/5 stars.Do not, I repeat, DO NOT pay and enroll this course. And you will be disappointed if you do. There, now you have been warned.This part of the specialization has been put together in a haste, without effort and absolutely without any care of teaching. I'm completely shocked and disappointed.In other words:It is a complete joke and a sad excuse for a MOOC. Shame on you University of Toronto!Yes, harsh words, and here's why:The course description does not reflect the contents nor the final assignment. Face tracking? That's pretty far from what I expected from this when I paid $284 for the specialization.In total, there is only 25minutes of video lectures. Really? That's it? It's way too little for a capstone project course.Staff does not care about learners's concerns. Zero effort to respond in the discussion forums. It takes days before there is any response at all.The assignment descriptions and requirements are sparse and vague. Why are we doing face tracking when the description talks about location apis and ""putting it all together""?",1
7164,"The course has been released way too early, clearly it lacks most of its content and what does exist isn't working properly either.",1
7181,Course material is very poor and did not give much support for doing assignments.,1
7224,"As a manager in an IT consultancy, I can't justify sending my personnel through this course, even at $69 per course. The amount of information gained is very thin and does not move one toward being productive.",1
7231,"Poorly designed assignment on data modeling did little to expand my knowledge on the topic. Which is a shame since the individual lectures were well done and very interesting. The ""Pink Flamingo"" peer-peer-reveiwed exercise needs to go.",1
7233,The last peer review is really hard to do. Hard is because the wording is very ambiguous and not all understand how to review. There was a guy who answered with SQL query. This is hardcore since we have not learned that yet...,1
7235,Not worth your time or money.,1
7239,"Very basic, the 'hands on' exercises are not very hands on and do not actually add much value",1
7245,"hard to follow not because it is difficult, but the lecture is only slides, texts, reading slides, very boring and not so many hand-on instruction. only thing i remember is the instructor's face after finish this class. Dont know why you add this into such a good specialist.",1
7258,"Compared to the other Coursera course I attended ,this one is by far the least useful one. The instructor is super brief and his slides are mostly made of a list of acronyms!I would not recommend it until they make some serious changes to the content and presentation of material.",1
7280,"lecture too focus on the theory that not very useful on business world. The BI tool ""microStrategy"" used in the homework is too slow and crash from time to time.",1
7283,The material and the lecture is not so engaging.,1
7333,"Some lectures are just right for the public in general but most of them seem to be built from common sense, there´s where I wonder if the American people are so unliterate on food issues. The quality of the visual material is also variable, I am sure that including animation of more appealing graphics would be helpful to engage more people into the course; another challenge would be to prepare more challenging content.",1
7407,Not very useful.,1
7548,"The course is very basic, videos contain a lot of repetitions and quiz questions are too easy (in addition, I believe that there are too much negative questions). I believe that this course should be called an Introduction to the basics of Nutrition and it's only for complete newbies. There are no insights in specifics of child nutrition besides general concepts of balanced diet and some tips how to make your kids be more enthusiastic in eating vegetables.",1
7700,Too basic and too focused on 'farmers market' thinking.,1
7786,"I am really disappointed with the content of this course. If what you're looking for is the most basic of information on making better choices and remembering to wash your cutting board after handling raw meat, maybe this course is for you. If, however, you come to this course wanting specific information about how to build great meals for babies, toddlers, and young children, or you'd like to know how their needs change over time, this course is not for you. I was hoping for information like how to teach your toddler to chew/eat difficult things (ex: whole apples). I wanted to know at what age/weight you switch to 2% milk. I wanted to know how many calories a meal should be based on height and weight and how that changes over time. I wanted to know medically verified tips on getting the right amount of each nutrient into a toddler's diet and what, if any, extra vitamins should be added. I wanted tips on weaning if you're still nursing a toddler... I guess I just wanted more.In addition, the quizzes are so easy as to be silly. Actual quiz question and correct answer: Which is NOT a good way to approach grocery shopping if healthy choices are desired? Answer: Visit the supermarket hungry and walk through the candy aisle first. COME ON! Did I need a Stanford University course to tell me that one?!?!?While the instructor is knowledgeable, this course is geared toward someone with NO knowledge, not someone who wants to gain a deeper understanding. The videos are painfully slow (am I waiting for a doodle here???) and I could read the entire course worth of transcripts in under a half hour rather than go through all of the videos. And the recipes... good god! I don't think that someone interested in learning more about child nutrition is needing a slow tutorial on how to make basic oatmeal on the stove top. If she'd upped the game- showed basics and then talked about the benefits of adding, say, chia seeds, different fruits, flax, etc. and how best to make a basic bowl of oatmeal into a complete breakfast, that would have been a useful topic.I'm just hugely disappointed. This course is best suited to perhaps a health department; not to someone seeking college level information about a topic that matters to their children's lives.",1
7850,Not very good nor scientific,1
7888,I only took this Course because I was forced too and I don't think it matters what you eat it's just how much you eat. You also don't need to eat lots of Vegetables and Fruit to be a Health person just saying .Plus this course is boring as hell,1
8032,"Worst course ever. I stopped partway through. Too many links to outside stuff. Tests/quizes were not based on what was presented in the lessons. Test design is horrible, too many negative questions. Glances over the good true information about nutrition to tell us about free range farms, farmers markets, etc., which most people do not have access to or can not afford.Giving it 1 star is being nicePeople who sponsored it should get their money back.",1
8170,"""much better than the data science with R concentration provided also by John Hopkins. This course has concrete examples, and the lecturer doesn't treat his audience like the first-grade kids."" I take this back. The lecturer doesn't know what he's taking about and what he is gonna talk about for at least half of the time.",1
8176,"This course was a complete joke. Many practice quiz questions and even test questions had wrong answers marked as right so you had to re-write test over and over until you guessed which one of the wrong answers was right. Also, there was a theme of lazily worded questions and answers throughout the entire course. There is always a way to write in non ambiguous ways, it just takes some effort. Very frustrating to decipher the lazily worded questions. Someone should have proof read this course. I feel like an idiot for paying for it.",1
8198,"It is hard to be constructive when you do have something brilliant to compare with.The very first thing to say is that the course is presented through poorly drawn cartoons for 5-year-olds and ineffective lecture videos with little or no eye contact with the instructors. The presentations are filled with strange icons and drawings appearing every here and there, making not much of a professional impression.After watching videos, in just about 5 minutes after the lecture is over, the retained information was always going to zero. Sometimes I had to rewind the video to retrieve the points they were trying to make. Or maybe I just didn't want to listen to them. But it seems impossible due to the fact I am interested, and I do finish every course on Business writing I run into. Always with 100% final grade.The overall demeanor is not as professional as it has to be. I recommend the designers to watch ""Write Professional Emails"" with Gerry Landers by Georgia Tech and ""Teach English Now!"" with Dr. Shane Dixon by Arizona State University. I do not normally remember the instructors' names, except for brilliant ones. I do not remember the ones of this course.I do hope my criticism will eventually lead to a better experience for your students. I apologize if I was overly direct and wordy.Regards,Rafael",1
8211,Good for someone who has no idea of anything about calculus,1
8260,"The course content is okay and covers the basics well enough. However, the assignments are structured for memorization not learning and contribute little to the experience. I decided to cancel my subscription as there are better options on EdX and other Coursera courses.",1
8282,"Presenter is very bad lecturer. She seems to be reading (badly) from a tele prompt, rather than lecturing. The quality of the slides is very poor. Not the level of a reputable University.",1
8351,I cannot complete the course due to installations problem of the software required even if I have all the requirements needed on my laptop.,1
8420,Last exercise is half the course and took many frustrating hours to install and for me never worked. No support provided by instructors. You are on your own.,1
8427,"Too many things I already know and which are quite obvious, when you have some little computer science knowledge, less practical information; the explanations for installing Cloudera etc are insufficient!!!",1
8443,"Language is not good, and Lack of Info",1
8445,"Honestly, for the price paid, the value given is quite low. I expected to have more hands-on working with the Hadoop ecosystem rather than this course's focus on background that really does not help one to become productive.",1
8451,"The course provided almost no value , and there was almost nothing covered that you couldn't find online for free. The presentation was probably the worst part of the course: It was extremely boring and made it hard to get through the videos.I didn't expect much practical parts in the course, but there was even less than what I expected: What was described as setting up a hadoop cluster consisted of downloading a preconfigured VM image and running it, and then typing in a couple of commands that were provided to you. Again, nothing of value was added, and quickly going over the FAQ page of any of the products mentioned would be more helpful, faster and a lot more interesting.",1
8458,Less useful than reading an introductory chapter. Being able to reiterate acronyms or idiosyncratic mnemonics does not demonstrate any real understanding of this field. The minimal information provided and low level of the instruction at least clarified that this specialization is not worth pursuing.,1
8459,"Very disappointing. Poorly written quizes and presentations. The level of the course is far too basic to be of value, but is required for the specialization. Why not offer an option to test out of basic introduction courses?",1
8488,"Very basic. All this information of this course can be self taught by Googling and the hands on exercise at the end of the course is a joke. For the $59 price of the course, expected more.",1
8502,"Extremely basic intro, not valuable if you have any understanding of the the space",1
8567,It´s a requirement to put down a payment to take the quiz,1
8647,"Hello all. I'm glad I took this course successfully. However, I have some notes. As a 4th year medical student, I see that the information is superficial. I finished the course in around 3 weeks, so medical students wouldn't get so much benefit out of the course. I wanted to learn more details, specially in depth about each type of the 5 cancers from the basics to clinical. Secondly, there was no interaction between the students and the doctor supervising the course in the discussion blogs. Thirdly, I believe that the assessment was too easy. I suggest a 60% passing grade with a more challenging assessment. Finally, this is my personal opinion. I enjoyed the course and I would like to see more improvement in the future.",1
8779,the instructor keeps repeating the same information throughout all the lectures. It is not as impactful as I thought it would be. The last straw was her saying that-that was an article.,1
8783,Very boring,1
8786,very low quality and not practical,1
8799,I couldn't access all of the reading materials and could never finish this course.,1
8829,This course is not designed well.,1
8842,Poor content. Clearly filler material for the specialization. :),1
8866,Some questions in the quiz for module 2 are unclear and seem unrelated to the course work.,1
9077,The instructor does a very poor job of explaining the material.,1
9109,"It is impossible to input solutions to quizzes/exams - even when they are correct, they are graded as wrong - a massive waste of time",1
9197,"you must use the exact format to get the correct answer on problems, or it will be marked wrongthe course is ""as is"" meaning when there are mistakes in the coursework neither web hosting nor faculty have are available to correct mistakesmoderators are not allowed to correct course content, so what they end up doing is editing your post in the forum. get use to this: ""A moderator deleted your post in Calculus One because of spam""""Review our forum Code of Conduct to learn more about guidelines for participating in course discussions"", but i and others are only posting problem areas, thus rendering the forum discussions uselesssince the moderators only have the power to delete and edit your post, there is a list of content errors for the course that you will need to look at. real smart. i asked to have my grade adjusted, but they deleted that post also",1
9246,"I think this course is great, I like everything about it, but I can't say the same about the quiz format, it is rigid and non-standardI gave up on the course many times because of thisHow do write Sqrt(5) for instance ? 5x must be 5*x or it is not acceptable.I am sorry, this is pretty bad",1
9323,C,1
9342,Not enough material to understand the concepts.,1
9375,"Really frustrating method of teaching. Class is incredibly slow and does way, way too much simple addition, subtraction, and multiplication to prove extremely basic points for a calculus course.",1
9417,It was too advanced for me,1
9507,This course is not good in giving lessons with examples that will help a with studying for the quizzes.,1
9650,Did not go over determining a point on a graph of g from two functions but had it on the first quiz,1
9694,Nothing is making sense. None of the videos are related to the quiz. None of the examples are remotely related to the quiz to even give you a suggestion on how to solve them.,1
9709,"A total waste of time -- not challenging at all in any aspect. It was quite funny that many word problems were identical with only some parameters changing :) Buckeyes... please, try harder next time :)",1
9799,It's better to watch the Youtube videos to understand the concepts.,1
9813,Very disappointing course. Far too much repetition. A lot of opinion based on scant evidence. It would have been much better as a 30 minute video without all the fluff and unsubstantiated inferences. I would not recommend this course.,1
9828,"This course is badly structured, with proposed tasks not being well oriented, and videos where teachers are constantly doubting and making mistakes. Not really happy with it.",1
9843,"There are serious issues in the IT infrastructure for this Online Course. Coursera needs to upgrade their IT infrastructure for it to be real time. You may go through the threads in Help for more information and issues posted by other users.Apart from this, it is extremely difficult to communicate with someone in Coursera regarding anything and in any form, i.e email, live chat, etc.",1
9899,i was very excited at the beginning of the coursebut when i figure out that i must paid for unlock some important lecturei really felt disappointed i thought i should only paid if i want to took the Certificatei had been wasted some time at this coursenow i have to search for another course but complete one this time.,1
9902,"Poor material, terrible french accent, not a good Android course at all.I don't raccoment it unless you're a total novice at Android development.",1
9914,"The free version of the course is far more restricted than other courses I've taken, the content wasn't brilliant, and it wasn't really more advanced than other tutorials with far better presenters which can be found online for free",1
9916,I thought it was free. I might was well go to Google to learn Android development.,1
9917,"You really need prior coding experience to understand the training. I also was very disappointed in the teaching. We have an incredible opportunity to improve education, and I feel that this course is merely an extension of current learning techniques. It was extremely difficult for me to fully participate without paying. I was using this course to make a specific android app to control my wheelchair. I act as an analyst for my programmer husband. So I fully understand code architecture, but absolutely hate coding by hand. This course glossed over coding however it is far more code intensive then I was led to believe.",1
9920,This is real boring I just learned that,1
9924,"not exciting, instructor too stiff and looked like reading a paper",1
9927,Can't finish even week 1 if you don't pay,1
9954,"It uses mixed material from other platforms meant for pure Python programming learning, jumps between sections in the external platform going forward and back so its pretty confusing to find problems involving content that you have no chance to know if you do not have previous experience with python. I would not recommend this course for beginners in programming.",1
9973,"Very badly linked with other websites that provide the actual content. This is more like a click-bait setup than the actual course. I'm not sure why it's even offered on Coursera, other than to make money on a more popular website using the content hosted by less popular one. Very bad experience.",1
9976,Frustrating as hell. Too much math and computer coding.,1
9983,"Again a course that comes with very simple (and not always good prepared) video lectures but for recieving a grade an enormous math knowledge is necessary, with no further help given",1
10056,"the quality of this course is very low, and the content are not interesting and useful at all.",1
10063,"Quizzes kept requiring information that was oddly specific (needing an exact decimal number without multiple choice options), which would have been okay except that it was not covered in the lectures. Ended up dropping course because there is no way to get through the quizzes if the information is not covered.",1
10074,This is a very bad course,1
10080,Very poor explanation and very complicated topics.,1
10082,"This course is supposed to be the most interesting, and most challenged one of this specialization. However i am quite disappointed with the instructor and the contents he put together. He speaks too fast without much clarity, and worst of all, i can tell most of the time he reads from the scripts without really conveying much knowledge about the contents.",1
10106,"I was unhappy with this. It was clear that this course was pulled together from a superset of other material, and that it was not checked for consistency or completeness. The students were tested on their ability to write down a specific phrase from a video rather than on application of the principles learned from utilization of the graph database tools. (Broccoli -- REALLY???)Further, the lack of response to questions posted in the forum indicates a lack of engagement from instructors and / or facilitators.",1
10112,"The material on graph analytics was of introductory level. A string of interesting ideas, with unclear explanations. The lesson on GraphX was basically a copy-paste introduction to it's abilities without actually teaching how to use it. The transcripts are full of mistakes. Someone not proficient in English or hard of hearing would be confused by them. It was somewhat difficult to understand the main lecturer. The best part was the explanation of Neo4j - and it was at an introductory level. A disappointment.",1
10130,"Too much technical. I would have preferred high level generic concepts. Also, the exercises were quite tricky for a beginner.",1
10135,"Not very engaging. Information overflow and poorly delivered lectures where the instructor is just reading from slides. I don't recommend paying for this, it is better to just check out the syllabus and read about this stuff online.Note to instructor: Very simple concepts were explained using overly complicated language. Also, please refrain from over using the word 'essentially'.",1
10157,The slides are unclear and very very ugly and old style.The assignment is very specific to Linux based machine.Only one programming assignment.More theory than practices.The QCMs don't really help understand. They are just about remembering values.I woudn't recommande this course since it is more like a book then it is like a course.,1
10195,"Can't actually be done as a free course, like others on the site; you have to pay just to get a quiz grade.",1
10307,"I cannot take the quizzes, because of money. The other courses let us take the quizzes without paying money. I dislike you paying policy. Please, let us take the tests without money payment.Sincerely,Garik",1
10374,It would be nice to see more detailed explanation instead of reading the lines in slides. Also there is less practical content for real time usage,1
10392,Only an introduction which was also not proper.,1
10396,Its very boring. Just someone reading off slides. One could read from a book instead. No examples or explanation to the information on the slides.,1
10400,it is very basic course just giving the introduction to a layman.,1
10405,very pedantic. course teacher just repeats the information on the slides verbatim. an interesting subject is made quite dull. would request more emphasis be put on presentation skills as the course material seems ok for a refresher,1
10416,"Poor context, no real examples. The guy just reads what is written on the slides without further explanations.",1
10461,Very Limited material.,1
10480,"It's almost desk work, not practical.",1
10481,not of a worth,1
10508,The contents of PPTs are just read out in the video lectures. It's as good as providing only the PPTs.,1
10567,The information is not presented well and the math is not always taught.,1
10600,"Poor lectures, inaccurate and incomplete information. Narrative about changing colors is reminiscent of Sal Khan. I just can't listen to any more of this.",1
10612,"Redundant, poor explanations and a complete lack of examples about the general concepts and the foundations of this discipline. The interaction between the teacher and the slides is limited to a reading exercise that does not provide any add value at all. Very dissapointed and still wondering if this course is worth my attention -and extremely limited time- or not. Plenty of room for improvement.",1
10613,"I have sat through 4 of the lessons and I am not very impressed. I fell that the topic is very interesting, but the professor does not do a very good job explaining the algorithms. It may be because I do no have the textbook, but overall a rather poor course. There need to be a little more explanation beyond the slides.",1
10617,too theoretical without enough practical quiz and assignment,1
10618,"Just read the slide., The presentations add very little since the presenter is (stumbling) over just reading the text on the slides.",1
10634,"This seemed more appropriate for a startup, and most of the content was rudimentary",1
10673,Rudimentary HR / new supervisor level information. Not specific to Data Science either.,1
10772,"This course deserves no starts. There were no instructors answering the many questions raised by the students. There were no explanations for wrong answers, and so no opportunity to learn. I was helping other students understand the assignments, and spent extra time grading submissions as no teaching assistants were available to help.There were a couple of very good teachers in the specialization, however the structure is critically flawed and your time would be better spent studying on your own.Avoid not just the capstone, but this entire series.",1
10776,"The capstone, just like the courses of the specialization are a strong illustration of the problems of higher ed.",1
10777,"Bad course. Things mentioned by the instructors are naive. According to my knowledge (my knowledge about Chinese philosophy come from A History of Chinese Philosophy, Youlan Feng; History of Chinese Philosophy, Sze-kwang Lao), that is not Chinese philosophy at all.",1
10829,"I think this course has very interesting information but it needs a way better format. It needs agile presentations, better, infographics, graphics and design and to be much more flexible and fun.I have not finished it but it does not make me get involved in the content even it is very interesting.It needs a better script and handling of the information to be able to conect with new students.",1
10869,"Very disappointed with the information provided. I went through the second week, completing all assignments and quizzes, but did not learn anything new. Most of the information provided is common knowledge anymore. I was also a little put off by the frequent self promotions by the instructor, in reference to his treatment center, organizations and book. I am withdrawing from the class.",1
10937,"It absolutely amazing course , I personally benefit a lot. really it's not just the certificate .Thank you Coursera for this huge chance.",1
11000,I learned very little from the course. The tests were easy. But that's because there was little to be learned.,1
11006,"very poor. even though for the most part I found the videos engaging, the course's overall structure doesn't help to 'read the novel together', as is stated in the title. the quizes are poorly written, even for me, a native russian speaker, it was often hard to understand the questions, and sometimes its plain guess work on the opinions of the course authors. often a required number of answers to pass a quiz is the same as the total number of questions in that same quiz. the essay's topics rarely correspond with the actual reading of the book. for the very first week the essay required knowledge of the book that hasn't been read yet by the participants. or it should be stated that one needs to read the book prior to taking the course. then again that would require the change of the course's name.",1
11022,bad course .. teaching was poor... assignments were very high level.. but teachings very of low profile,1
11040,"The lectures are unpolished and hard to follow, especially as the captions are inaccurate. The mathematics in the course are not explained clearly.",1
11044,"Need a good foundation with knowledge of calculus(integrals), electrical engineering and wave and acoustics. Not just a course to pick up for fun.",1
11047,Lectures have very poor teaching skills.,1
11062,"This course offered many interesting ideas about flipping school classrooms, but offered no suggestions about the practical methods to do so. As a teacher, I need to have realistic suggestions about the technology necessary to flip my math class, not a series of testimonials about how great it's going to be once my class is flipped.",1
11110,I did not find that this course added anything to what I already learned. Seems mainly a re-hash of prior material slimly disguising marketing pitch of other Northwestern courses.,1
11180,The structure of the lectures is not really effective.,1
11400,I would not recommend this course because the video lessons are quite poor. The teacher mostly reads notes from his iPad without a proper presentation or some kind of text.,1
11560,"Lightweight and marginally informative. While it is clearly aimed at a lay audience, a deeper presentation of the scientific foundations of the disorder is sorely needed. If you're interested in the etiology of autism, you'll need to look elsewhere.",1
11566,"I found it very easy. But if you do not know anything about Autism, I think you might would contribute from it.",1
11575,"I was really, really hoping that this course would be educational. I personally work with an individual with AS and I excepted to have a better insight into some of the things he goes through. So far, however, I have found many of the lectures condescending. As a person with a disability I find it highly offensive when people speak like they're doing the person with whatever kind of disability a favor for even helping them. People with disabilities are just that, people.",1
11623,the videos are too longassignments are difficultand dr asfahani is not like dr larryi loved dr larry much moredr asfahani is not interesting in his presentations at all,1
11627,"Good material, fair presentation, too many peer evaluations.",1
11651,Peer to peer assignments are really slow and due time dependent.,1
11665,"Instructor speaks too slow and sometimes hardly audible with my earphones plugged in with 100% sound. Incredibly slow paced. Coffee must!!! Too much of story and history and introduction. Much less material presented for concepts shown. Much of the lecture time is wasted on things which does not matter, for example Djikstra shortest path... I would be more interested to know about the algorithm than a huge lecture on who is Djikstra, and also would like to have some exercise to implement the same and realise. Very unsatisfied with the course. But there is no other courses offered for C++ programming language in English Language. Not worth the time.",1
11672,too hard in practice,1
11677,"I am highly disappointed with the policy of providing the homework only to the paid participants. It seems this is gearing towards another means of making bussiness when it comes to education.I understand that grading and providing feedback requires effort and the fees charged is required to the cover those cost, but like before we must have an option to get access to the homework, allowing us to apply our learning while it maybe be acceptable not to have any feedback or certificate on the course completion.Currently, the closed homework policy goes against the basic objectives of MOOC and I hope it is reconsidered.",1
11678,Very Boring!!,1
11681,"I've already written a review for part 1 and I have the same opinion about this one. The course is rather poor and not challenging. Only general information about relevant topics that as well read on wikipedia. No exercises, no code assignments. A lot of this content was repeated from first two parts of this specialization.",1
11733,"I had a very poor experience being graded by peers. Although the Capstone Project Assignment itself is EXCELLENT, the peer grading rubric is not. I was not fairly graded, and I am sure of this 100%.",1
11847,"I have studied some Bayesian Statistics before. I feel like the materials itself is not sufficient for entry level, and will actually confuse some of the learners. Anyway, this is just my two cents. :)",1
11938,Complete garbage...items not really presented in relevant details with respect to standard industry practices. What you will learn here is not how things are done on the job.,1
11957,"Not very applicable -just a bunch of concepts.It feels like a very disorganised course.Paul Harris is extremely repetitive and takes so much time to get to the point. Sometimes he over-explains unnecessary things. His lectures need serious upgrade.Lecturers speak too slow, I have to use the 1.5x speed not to fall asleep.",1
11978,"I do not recommend this course. It did not fill my expectations. I am not able to create application for mobile phone after finishing it.First 4 modules were somehow useful but since module 5 onward it is just waste of time, I did not learn anything useful, I did not learn how to code. Advices for sources were very shallow and it was not shown how to work with them. I could gain same information with basic search engine request.The teacher is nice and willing to give information to students. But unfortunatelly he did not prepare for recordings of videos. His speeches lacked structure and focus. Very often he was lost in talking and he often re-explained (in detail) staff which was already explained in previous videos. This caused that videos were too long considering the amount of knowledge that was provided to students and watching them was waste of time.The course was shallow, information did not go deep. Students participation was not supported (nor required) after 1 module.",1
11990,Outdated,1
12022,"I think that it would be a good idea to improve the grader, release more informative assignment information (take a look at the Algorithms course for example) and lecture materials in pdf format.",1
12087,"Inattentive lectures. There're only a few videos that are worth watching. You need to be prepared for wasting a lot of time for programming assignments -- it's not because the assignments are tough but because of poor descriptions and out of sync with lectures. If you're interested, just download the online material (not videos) and read through it. Much better than wasting your time with the lecture videos and assignments.",1
12102,Lots of bugs,1
12119,Week three quiz is real bad. I suggest you give it a try and see for yourself.,1
12150,"Taking this course in January/ February 2017, I found it to be jumbled, out-dated and frustrating.Materials are presented in a chaotic, roundabout way, which is neither chronological nor thematic, leaving huge lacunae. The initial lecture started with an entirely uncontextualised location-visit to Lewes, and mention of the Battle of Lewes in the Barons' War, with plenty of merry jumping over the *rather more important* Magna Carta. In later lectures, there is similar dancing around the English Civil War, which is shocking, given its constitutional importance... and then lots of vague, hand-wavy references to European law. I understand that these lectures were filmed before last summer's shock result in the EU referendum, but - honestly - would it have killed Professor Gearey to have discussed the context and possible implications of the referendum? By contrast, I'm currently following a Futurelearn course which is a repeat iteration of the original material (that's how online courses are viable - I understand that) BUT which the educator cared about enough to updated with topical material from the very week in which we were following it (Week 1 of President Trump)!It would have been far better to have gone into the Common Law course with clear historical anchors (e.g. Magna Carta, Civil War, Great Reform Act, EU membership), which would have given a proper framework for studying the development of common law, through cases and precedent. Instead, we get Professor Gearey sliiiiiiding into half a dozen subjects per lecture and then ""leaving that question there for a later lecture.""I must mention that other lecturer is much more coherent, and that he talks sensibly through various cases, actually demonstrating how precedent works. However, that's just not enough to make up for Professor Gearey's flibbertigibbet style of exposition, which seems to make up the bulk of the course.On a technical level, the un-corrected transcripts of ""lectures"" were a huge headache, since they didn't make much more sense than the lectures themselves, and at times made even less sense, due to incorrect transcriptions. It was particularly frustrating to have legal references mis-spelled (e.g. ""Blackstone"" as ""Blackspen""), making it difficult to track down better sources to supplement the lectures.I can't actually be bothered to see this course through to the end, and am very glad I didn't purchase it.",1
12154,"I have found this a deeply frustrating experience. The main lecturer, Professor Adam Gearey, clearly knows his subject well but is a terrible communicator. His lectures are poorly constructed, repetitious and sometimes confusing. He seems at times to be delivering the lecture as a stream of consciousness rather than a properly prepared lecture: as a result he sometimes misspeaks himself, for example saying that murder trials are conducted in the High Court rather than the Crown Court, and these errors have not been picked up and corrected. I am forced to wonder whether anybody in the University of London team bothered to quality check these videos. These problems are compounded by the uncorrected subtitles and 'transcripts' of the lectures, obviously done by somebody with no understanding of the subject. It is also frustrating that when I raised these concerns in the weekly discussion forum, I received replies from a volunteer moderator which were so badly written as to be almost unintelligible. This moderator made no attempt to enter into constructive discussion, but told me that 'you cannot say our professor is wrong because you disagree with him' and that I should 'read the sentence properly': in other words, no criticism, however constructive, can be tolerated. Even some of the questions in the quizzes are carelessly constructed: for example, the 'correct' answer to q8 in the final quiz uses the word 'allowed' (which implies an element of discretion) instead of 'required', which would have properly reflected the provision in question (s.6 HRA 1998 - 'the authority could not have acted differently' ). All in all, the presentation of this course falls far short of the academic standards I expected from a university with London's reputation.",1
12170,Really badly organised. Course lectures are interesting however end of section quizes have no relevance to the material taught. There are no external links or additional relevant material attached to even link the question to the lessons taught.,1
12226,"Margaret Meloni was constantly looking down to read directly from a poorly-rehearsed script while trying to stumble through phrasing and lecture points. Considering this is a course about communication, this was very disappointing. The quizzes were vague and either didn't have clear correct answers or didn't feel applicable to the module to which it was assigned. After reviewing the material, I had to complete the quizzes by trial-and-error since the answers were not reflected in the lectures.",1
12228,"Overly-remedial information, but that is not what earns this course such a poor evaluation from me. The poor evaluation comes from the composition of the review quizzes: The end-of-section quizzes ask questions to which there can be more than one correct answer, yet only a single response will receive credit.Example: ""A recommended solution to a problem is valued by an executive because..."" Followed by four possible answers: One of which is clearly incorrect while one makes an awful assumption. These two choices can be eliminated easily. However, the final two options are BOTH UNARGUABLY CORRECT, but only one was briefly mentioned in the material (reading or video), and thus only that one receives credit.Unfortunately, this demonstrates the course creators' desire to value a student's memorization of the instructor's own unique words over the student's assimilation of the course content and ideas.Course-takers beware, this course seems more tailored to stroking Ms. Bravo's ego than to you actually learning anything of commercial value.",1
12231,I thought it was going to be good. Did the first week videos and Lectures. But I feel cheated because it will not let me take the quiz to move on without paying for the course. No where did I ever see anything that said ahead you had to pay -- if you didn't want a certificate or to do the whole specialization. Coursera used to be a platform I used and recommended. No more.,1
12237,Way too much reading material. Not enough video lectures/ explanations. The professor also needs to speak a little slower for people to follow.,1
12251,"Cannot believe UCI have just very short course, compared to san diegi/Duke/Virginia/Copnehagan who have courses worthing thousands of dollars for free as compared to this one. UCI have exception course in objective C which is worth the money to be paid, but this series, are extremely below the expected standard",1
12280,The test questions are abysmal.,1
12292,"It very short and brief. I was thinking it will also emphasise and help us to grow our communication skills for the 21st century communication, but it's just a brief explanation of some changes and nothing more.",1
12297,The link to down,1
12298,"I paid the course and the course seem to be no longer supported, I tried without success to switch session , in summary : You paid and don't get to follow the course, incredible :-( ....... !",1
12338,The course is a wonderfulBut the idea of a peer and the final assignment a very badYou need to wait ... for several days and a waste of your time in order to be assessed by other peopleThese people may be incompetent and give you a zero for no reasonAnd lost your effort and your time,1
12372,Disappointed by the course content ( except for the 4th week).The course content is US specific which has no relevance for international students. How am I bothered about Obama care or other american statutes?!!,1
12377,Too US-centric. Very strange concept of non-monetary benefits. It very common to forgo cash remuneration for non-monetary benefits (mainly for tax advantages) which was largely ignored in this course.,1
12395,"I think the last project was very badly positioned and explained. First the Coursera is using Cloudera VM, but if you execute and run the Cloudera Express to set the Cloundera environment up the Coursea exercises do not run There should be a warning!. If you do then the simplest Jupyter exercise it fails - this took me about 10 hours to figure out.Then for the final Project, technically to succeed you must miss country names in all lower case and you cannot match with countries with a 'space' e.g. 'Cape Verdi' and if you try to take any of this into account you do not get the same numbers to pass the test. There needs to be some warning on how to interpret and manage the files so that you get the same numbers being asked for in the test. Again this too me about 10 hours to resolve. Both resolutions ONLY because another colleague is doing the same course and we problem solved together. THIS IS AN AWFUL EXERCISE in frustration due to incomplete details. Not a learning exercise. Just AWFUL....",1
12403,"I have enrolled in this twice but can't see the course content. Every time I click ""go to course"" I get directed to the description of the course. Where are the lecture videos and other course content?",1
12431,"Poorly designed, no help whatsoever from the staff, Forum is totally worthless. Worst course I ever had on Coursera.",1
12451,I tried giving zero stars. This course is very poor. In particular the last portion of the class wherein you are tested on things that were not taught. If I had wanted to spend hours in google trying to learn this stuff I would not have spent money on this course.,1
12455,The course cost too much for the gain of knowledge. Feels like this course could be merge with the first or the third course.,1
12456,"Forcing users to install demo software which requires a registration is just too lame.Other than that, courser is very boring, introductory, jumps constantly between things and doesn't explain much. Stack overflow and 2 hours would do a better job.",1
12538,Got lost and left behind very quickly even after watching videos numerous times and doing additional research. There were videos missing even with deadlines approaching. Some videos were very well explained while others I didn't understand at all.,1
12679,"The course content is very poorly explained. The quiz questions don't really test what was taught in the lectures, and the assignments are just copying and pasting things. I feel like I still have a very poor understanding of what was supposedly covered in the course. I cannot generalise or apply the 'learned' information or skills to other topics or researches because I didn't actually understand the core concepts or how to use the programs.",1
12685,"This is another course in UCSD's ""Big Data"" introductory course. The material is not pertinent to a specialty on big data technologies. Further the course does not increase one's knowledge of Machine Learning in any way that justifies spending the time in the course.",1
12760,"Unfortunately this course consists of the Professor reading his notes very quickly with rapid listing of concepts and very little time spent explaining complex topics. The quizzes emphasize the terms for various elements of the analysis rather than teaching how to work with the tools to analyze data. There does not seem to be anyone monitoring the course forum and mistakes in quiz questions and questions asked on the forum are not answered or replied to by anyone. I was committed to working with the course but by week 4 it was unfortunately impossible to absorb and there was no way to interact with anyone to get help. I'm sure there is room for improvement on this course and I hope the instructor does work to improve with the course, but currently the course is disappointing as a learning experience.",1
12803,Only fit for absolute morons and perfect ignorants. No content value whatsoever. I don't understand why Coursera allowed this one to happen to be on the Coursera website.,1
12804,"Most of the effort in the creation of this course seems to have gone into the visual and acoustic effects of the slides. The first week's material has no substance whatsoever (literally!). The second week' s presentations are just listings of lengthy definitions and ""Best practices"" which in fact are mostly goals, not practices.With the poor quality of the provided videos, my hope was that the reading would be better. But the second week's reading are uncommented links to a 270 page NIST document, an Open Online Course(!!!) and OWASP material.At this point it is clear that continuing the course is not going to help me in the way I would expect it from a course. When I compare this to the excellent Software Security course of Michael Hicks (University of Maryland) , which I also attend on Coursera, there are worlds between both.I understand that ""Cybersecurity and its Ten Domains"" addresses students with less prior knowledge, but especially for such students I would expect a much better didactic approach.One star seems harsh, but after the first two weeks, the only words I find for this are: ""seriously?""",1
12805,"Content is very weak, sounds that are used very annoying...",1
12809,"Not very helpful, very stessfull music and only read definitions, do discussion or explanations to go deeper into the topic.",1
12813,The design of this course seems rather lazy. There should have been more meaningful contents and discussions in the videos.,1
12821,"No content, essentially you just read a textbook. The videos are about 5 minutes per week.",1
12827,"Content very light, near of empty course.",1
12832,"This Course is a total scam. In doubt? Sign up for the free version and go watch the videos. Each video is only 1-2 minutes long, so you can watch all 7 weeks in half an hour ( speed 1.5). O, I forgot they also include a link to a 4 years old TED talk, FUn but not really relevant.This course is a disgrace to Coursera. It ought to be removed.",1
12838,Not recommend. Very basic and videos are only 2 - 3 minutes.,1
12849,"the only reason to take this course is because the certification will look good on your resume. don't expect to learn anything new if you are already in IT or related field. i passed the tests without going over the material. there is a shortage of original content, although their graphics and effects department did a good job, and mostly they expect you to read outside resources.audit the course for free to get familiar with the content but only pay if you need the certification for professional reasons.",1
12850,"I DON'T recommend this course AT ALL. This college doesn't spend much effort to structure this course - just putting short videos (less than 10mins in total per a week) and external references (which someone else wrote). The assignments are just open discussion among students and have ourselves evaluate with each other. I haven't learn anything from this course. It's just a waste of time and money. Coursera should inspect this course otherwise these skeptical courses can deteriorate the reputation of this MOOC platform - I love the other courses/specializations provided by other universities though,",1
12851,"3 introduction videos each week, and tons of links for reading?Do not want.The worst course I ever took.Not enough Video material with good explanations. All we got - links to articles which we can found ourselves without any help.",1
12855,The high video production values of this course fail to hide the abysmal lack of content. With approximately 4 mins per week of video charging $49 for this course is a disgrace. Potential students should save their money and read the relevant Wikipedia pages.,1
12860,"I expected much more. The course material is really weak, did not improve my knowledge about Cyber Security. I am very disappointed, also cos I payed 30 dollars to a certificate. I do not recommend this course",1
12865,This is not a course - each session is 4 mins or less...,1
12875,A collection of links to other sites and short and highly generic videos,1
12902,I wish they spent more time on the content of videos and less on the silly effects and 30-second intro and outro sequences. Practically every question of the final comes word-for-word from a book not assigned in the module readings and not available for free to students for them to study. I won't be taking any other courses from this school if this course was an indication of quality.,1
12904,"I didn't like it. It's all theoretical and there isn't any practice.Also, they didn't send me an accomplishment like the other courses that I already done.",1
12907,"This is my first course in coursera.Cons:Information redundancy, unnecessary required reading.Extend some information that only need few hours to study to a 6 weeks courses.Pros:There are some useful basic concepts & frames",1
12916,"Videos way too short, annoying music/animations, lots of stereotypes (floating 0's and 1's, really?).This doesn't seem like a serious course provided by a university.",1
12922,"The videos are too short, without enough information about the topics. You have to read a lot, Actually, this course doesn't look like as others Coursera's courses and I don't recommend it.",1
12928,all on demand flow are bad. difficult to follow and see where we are and what is left...,1
12938,Too elementary. I would recommend this course for non-technical managers or security/coding beginners under the age of 13.,1
12939,I did not find the lectures at all informative and the readings were not targeted enough to understand what items required focus and what information was more background. I did not find the course especially helpful.,1
12954,A new generation of MOOC with REL available for free on the web as teaching ressources!Already got that elsewhere...,1
12957,"Video content barely summarizes the outline of each module. The questions in the quiz are not ""though provoking"". Peer discussion are rather superficial and do not cover half the content of the course.Readings are OK, show good sources, but there is no real discussion about them in the videos or in the quizzes.",1
12968,"animations, animations and animations...",1
12969,"The content of the videos are just some engineer citing with some brief headline of security, it's lacking of depth and explanation, totally wasting my time !!",1
12986,"Minimal video efforts, not enough content, and long readings. Definetly not a good course to get a verified certificate",1
12990,"Short lectures, long intro, ridiculous music. Very quickly decided to learn this elsewhere.",1
13186,"Very confusing course, unclear example, too theoretical (very limited relevancy to business questions)Also, presentation format could be improved (tables are not intuitive to read/understand)",1
13201,Very confusing subject which could have been better presented.,1
13234,Not the expected quality,1
13418,To be honest I don't think this is worth the money.,1
13479,"This review does not reflect the course content. The new Coursera UI makes it impossible to download transcripts or slides of the videos. Without these features, following the lectures is significantly more difficult, and I can't rate this course any higher than 1 star. I would rate it zero stars if that was possible.",1
13493,To lock assignments for money is disgusting.,1
13526,Tree exercise had absolutely no relevant video material. Videos give zero context for why data structures are important or when they are used....Should take a lesson from the Stanford course.,1
13564,"I'm honestly quite pissed. The material itself is fine but I have had a terrible experience working with the instructors. I don't think I will continue taking these courses.I don't appreciate the amount of time and effort given into the programming assignments only to receive practically zero help. First of all, I don't know WHY I'm failing the test cases, I just am. Your program runs through maybe 100 tests to ensure correctness but somehow the instructors decide you should only see the first 3. But then, I try posting on the forums to receive help only to have it removed. Quite frankly, I have spent well over 10 hours at this point on a single problem and I've created my own tests and I have looked at all the very vague hints given in the forums and I still have no clue what to do. I have school, a job, and yet I'm losing all this productivity because I'm running all these damn tests hoping on the off-chance that I catch whatever weird bug it is that's failing my code. All I want is real, concrete feedback.",1
13583,"Worse than the first course. I expected something that is not academic-like explanation, which I can't find it here.Please bring back those explanations style similar to the first course.",1
13601,"I found the wording of the assignments really difficult to follow so I didn't really understand what was expected of me. I spend a lot of time (and therefore money!) on this course but in the end I made a conscious decision to stop. I was taking it for personal pleasure and it was not worth the stress each week of trying to work out what was being asked. I have taken a number of other courses in creative writing elsewhere, and other courses on Coursera - this is the first one I have actively chosen to stop because I just wasn't engaging with it - either for education or for enjoyment.",1
13620,Auditing is pretty useless with how this class is updated. I can't get peer reviews so my assignments get zero feedback. Coursera didn't used to be like this.Asked about how to be more involved in class discussions and peer reviews a couple days ago and haven't received feedback.,1
13716,"The peer reviewed assignments are next to useless, as there is no oversight on them. I think there needs to be a basic comprehension assessment done first, before allowing fellow learners the ability to pass/fail students in the course.",1
13721,"Course is a little formulaic, had trouble making my submissions follow the structure outlined but still, I learnt some useful tips and actually got to just write something orderly.Liked some of the visiting speakers (the third speaker who talked about character - mature lady, dark hair) was quite good. So was the first gentleman.Overall, the course is ok but given the strict methodology and requirements for writing, I don't know if I'll make it through the specialisation.Thank you for reading!",1
14046,A simple list of programs that needed to be installed would cover 90% of the course content. Some of this content is also repeated in other courses in the sequence. If you have any technical skills this entire course is extremely tedious.,1
14135,"I have no idea why you called it course, since there was nothing inside.",1
14193,Very basic and boring,1
14269,Not worth 29$ considering you could take away very little from this course.,1
14306,Too compact and short. Should be integrated to other courses.,1
14361,"I have absolutely no idea how could this become a separate course - and one spread over 4 weeks. It is extremely basic, extremely general and extremely high level. It should be compressed to 1-2 hours and added as an _optional prerequisite_ to other courses in this specialization. I personally feel cheated out of my 29 USD.0.1 star.",1
14373,"I was expecting 4 weeks of work, but it was more like 4 hours.",1
14426,this course is very poorly structured.,1
14478,"$38 is a lot to pay for tutorials about how to install software. This course takes only 20 minutes to complete. It is also obsessed with command line interfaces. There's a reason that they were left behind in the 80s. It does cover GUI software like Rstudio, which is ignored for the rest of the course. How about something on the desktop Github version? https://desktop.github.com/ So much easier to use.",1
14479,Is this a real course for a data scientist just installing shit and a peer reviewing for that screenshot and forking all repos ...very bad not worth to be with rest course in specialization,1
14513,very basic.,1
14536,$40 is way too much to spend just to learn how to install a couple pieces of software and sign up for a GitHub account. The entire course should have been the first week of the following course.,1
14563,"This should not be a course. It's just introduction and should be condensed to one video and a handout with pointers to those who need more specific and detailed instructions for setting up their computers. This is not a learning course. All they teach you how to install git, R and Rstudio. And they take money for this (if you want to say you ""completed"" the course)!!! Highly unethical practice in my opinion.The surveys are stupid too. They don't distinguish between those who completed (but not earned any credentials) and those who didn't.In my opinion this is a very dumbed down version of an introduction to a data science course (and not a cours in itself). Definitely not worth 4 weeks!A much more valuable course is Stanford's ""Machine Learning"" where you can actually learn something (and don't force you out of evaluation if you don't pay).",1
14626,Didn't learn anything in this one.,1
14643,"Complete waste of time. This should be a course on its own, and much less be charged for. This should have been the 1st week of an actual class. This only dealt with installing a couple of software tools. Hopefully the following courses will teach something worthwhile.",1
14675,"In my opinion, most of this information should be free and available as a pre-req. for other classes (installing R Studio).It was cheap, but in general, I thought I was going to be more out of this course than I did.",1
14680,"They charge you to take a class that explains how to install a few programs. If you go to the program's websites, there is directions to install it anyway, so this was completely unnecessary. Waste of money. This class should give you some early training on R before throwing it at you in the next course without enough training.",1
14718,Useless. The information content is close to zero. Just some blah-blah and a long tutorial to install software.,1
14730,"waste of time. except for git and github ,nothing much is in it.",1
14741,Way too basic for the price - almost no content - this is just setup - I resent paying for setup instructions.,1
14774,The course is not updated.,1
14780,This should not be a course in itself,1
14790,"By far to expansive for what you get. Anyway, thanks for the hint about swirl.",1
14806,"This course was a loss of time and money. Except from week 3 material, the rest can be found on the internet and should be required by everyone who wants to take that specialization. This course doesn't worth it, it's just to take extra money from anyone who wants to learn about Data Science.",1
14807,"Some interesting concepts, but way to simplistic in my opinion. Only reason I see to pay for it is the fact that it is a requirement in the Data Science Specialization",1
14809,"Quizzes were based off of extremely high level overview videos not covering anything specifically or deep diving into anything. When applying the git commands covered, numerous errors arose. Overwhelmingly academic course with very little hands on. This is not for anyone actually looking to work in this field, but for someone looking to be able to talk about this field.",1
14823,Too expensive for what you get :(,1
14832,"most part of this course is a duplicate of the ""R programming"" course.microphone/sound of the teacher quality is very bad.not original, boring, dividing this in ""4 weeks"" is too ridiculously long, this should be done in 1 week to enable users to take more time for the ""R programming"".this course should be free. don't lose too much time on it, it's doable in a day or a weekend and move on to ""R programming"".asking for so much money to see how to install R and github is a shame.feels like this course has been added just to have a round number for the specialization.even the survey in the end asking for feedback starts with a question not adapted to moment it's been asked ""did you get a certificate?"" of course i did not as i've just finish the course and now wait for my peers to review my final submission.",1
14853,"It has almost no content and isn't actually useful. I've heard later classes in the series are way tougher, so the ramp up isn't at all good.",1
14881,"The course does not warrant the price, it has way too little information. Very dissatisfied.",1
14901,Not useful at all if it's audited.,1
14929,Not worth the price. Extremely basic stuff spread very thin over too much time just to be able to charge for it.,1
14953,"Certainly not worth paying for this course, only talks about how to install the tools.Not able to take quizzes when you try to take the course for free.",1
14969,"Good introductory course. However, an overkill as a separate course (and hence charging $30 for it). Courses 1 and 2 could have been clubbed together.",1
14989,This course must be a part of another courseres.,1
15064,I think there are only few contents.,1
15083,"Although the content is correct, quality models videos and materials is very low, wanted to make all the specialization, but I'm not satisfied with the quality of the course. It's a shame, because the JHU is an excellent University",1
15091,Too basic content.I have not learned anything with this course (installing R and RStudio should not be part of exercises or lectures).I hope R programming course will be better,1
15103,"Not really enough content to be a course in it's own right, should be additional material as is useful, but definitely not a requirement.",1
15185,"Very short and just a basic overview on how to install a few tools that most of them I already had installed. All this course content could be packed into an introductory lesson instead of having to pay for it. I abandoned the specialisation because of this, I know it's a big business but at least you need to offer some value for the money",1
15229,"It is really basic course, I expected much more even if this is offered only for $29.. (the cheapest course in the specialisation)",1
15250,Completely useless. Just a number of boring videos of what you may possibly learn in Data Science Specialization.,1
15271,It's a course which is designed to preview the other courses. It could easily be eliminated,1
15292,"This was advertised as a six week course, but the deadlines make it a two week course. The assignments are exceptionally challenging given that the instructors offer now actual instruction on how to perform them. Two and a half days into the course not a single moderator has answered a question in the forums and I can't find a way to contact Coursera about this problem.I am very disappointed. I was planning on taking additional courses through the Coursera platform, but now I am reconsidering.",1
15293,"I am disappointed because the course doesn't provide profound material on data analysis with python. The videos are too short and the samples demonstrated in the videos aren't thoroughly explained. For instance, the speaker often only says what she is doing but not WHY she is doing it or what the function of a particular parameter is. I felt left alone and forced to google. In my opinion it cannot be the purpose to make your student google basic things that could easily be integrated into the course.Considering that this is labelled as a beginner course I was expecting much more theoretical input. Other courses offer additional slides and scripts that are aligend with the course videos and allow the students to look things up.",1
15299,Terrible. A waste of time and money. I recommend doing Statistics with R from Duke instead. This one should be taken off coursera.,1
15312,Totally just marketing materials! Don't waste your time with this school at all! You cannot learn a program in a couple of minutes!,1
15322,"The professor and instructors don't understand how to properly write SAS programs and ignored constructive feedback. It's very sad to see students follow suit by producing hard to read codes, ignoring programming conventions.As an analytic leader in healthcare industry (I am supervising some of my junior level team members to get some basic training), I want to say something to the students graduated from this course: if you program the same way as being taught, you will lose a competitive advantage during job interview.",1
15323,"This course didn't talk too much about data management and visualization, which made me feel quite disappointed. And you couldn't feel you could practiced what you learned in the course in the assignment. Most part of the assignment just focused on making some comments.",1
15342,This course states that it is for people with no knowledge in SAS. I had to go online elsewhere to learn SAS before completing this course. There are free SAS tutorials on the SAS webpage - I highly recommend completing them before trying this course.,1
15366,"Very disappointed about this course. The topic is very interesting, for me at least, but the course organization is horrible. Lectures do not provide enough information to complete the assignments. Zero interaction from course staff. Issues with getting assignments graded. In previous session the staff just refered you to the coursera helpdesk, but you cannot easily contact coursera directly.Main focus of course seems to be earning money and not educating. Be warned and don't pay for this course!I really don't get why this course has so many good reviews.",1
15370,"The highest video production values of any class I've seen on Coursera so far. Unfortunately, that's the best part of the class; the support is simply nonexistent (a post by someone associated with the staff from a previous run of the course suggests getting help troubleshooting Python from Coursera staff), the instructions for the class software are out of date, the source material for the assignments is sometimes unsuitable to the task you're asked to perform (e.g. statistical analysis on a data set aggregated from disparate sources), and the pretty videos are at times completely unrelated to the actual assignments (the very first week with the literature review). Dropping this specialization like a hot coal; it looked quite promising, but the aggravation over the poor organization and lack of support considerably outweighs anything I could get out of it.",1
15381,"Bad material, poor graphics, wrong mc questions in videos.More hype content than a course.This is not the way to learn Python, seriously don't take this one",1
15385,"The support from the faculty and the website is beyond explainable bad. The user interface gets stuck without reasons. There is no direct way to contact the faculty, if you are stuck on any assignments. There is hardly anyone who responds to the feedback that is sought for!!I will never recommend someone to do this course.",1
15559,It was not w,1
15573,This is mostly a sales pitch for the professor's book (you're required to purchase the book for the class).,1
15624,I wouldn't recommend this course to anyone who's paying. The assignments instructions are too vague to understand and there's no example given.,1
15642,"The peer reviewed assignments are next to useless, as there is no oversight on them. I think there needs to be a basic comprehension assessment done first, before allowing fellow learners the ability to pass/fail students in the course.",1
15821,Very elementary coursework. Quizzes were too simple while I expected some challenging questions that'll make you think. Please improve the assignment quality.,1
15877,"Not what I expected. Though the lecturer quite patronising and the exercises too juvenile. Did not finish the course, so it may have improved after the first few sessions. Thank you.",1
15879,I don't see how the assignments would make me a more creative person. Some of the content was new and interesting but overall I din't think it was a good use of my time.,1
15881,"elementary school level program, not college or university",1
15884,"Creativity without a reason, without a real problem/question. Divergent thinking per se. Try to be divergent just to be divergent. Too simplistic, doesn't worth your time.",1
15885,"the course delivery is regrettably boring. The 90-second breaks don't work very well. The lecturer is not trying to be engaging or at least pleasant to listen to. I hope he lectures this way in the attempt of being clear. However, it comes across as being very monotonous and boring. I had a strong motivation to follow the course, but honestly had to drop without completing the second lecture. A missed opportunity.",1
15886,Lesson 1 - no longer available via PCLesson 1 no longer exist to do via PC on internet.Sugggested . It has been removed. Cannot go ahead without having the Lesson 1 information.,1
15899,"The assignments do not give you any practical methods for actual problem solving. They're just a succession of activities that pretend to be creative by making you do things ""you wouldn't normally do"". It's like they forgot the part about ""problem solving"".The assignments are to eat foods you've never eaten, talk to people you wouldn't normally talk to, take a photo of yourself smooching someone/something, and to ""give"" something to someone you ""never have given anything before"". That is not creative nor helpful at problem solving. It's just a series of activities for people who have too much time on their hand and need something to do to get out of their routine.Not a course I would recommend for anyone wanting to gain useful skills.",1
15901,Not a course that helps you solve wicked problems which do not have solutions that will come suddenly one fine day and ones that require more thought effort and brainstorming.,1
15903,"After about one hour the only things I learnt is to do ""stuff"" in different way (too vague concept) and the basic of photography.",1
16018,This course doesn't offer much of a learning curve. I would rather suggest taking Data Visualization Using Tableau by Duke University.,1
16021,"Poor course. No original material, they use Tableau training material. I did the first 4 weeks of the course in 5 hours and learned nothing new, except using Tableau. I could have learned the same using the Tableau first video in 10 minutes.",1
16034,Easy but really complicate to submit the assignment.,1
16036,"nothing special, I do understand this are fundamentals, but i felt like 5 year old",1
16066,I'm sorely disappointed. I learned almost nothing valuable and found the content to be so basic that I didn't get a good feel for Tableau. I paid $20 elsewhere (UDEMY) and I'm learning a SHIT TON about Tableau through them. Tableau has great free resources too that are better than what I paid $80 for on Coursera. This class is a joke and not worth $80. As a UCD Alumni I'm embarrassed my school's name is on this.,1
16075,This class was really lacking. The content was skimpy and the assignments overly simple and rote.,1
16083,"Very basic in terms of material covered. Would be nice as a free remedial class in prep for the main specialization. Homework assignments were confusing and did not appear to have been reviewed by the instructors before being sent to students (main problem, the free software students use was not the same version as that being used to develop the homework). Instructor support was not evident in the user forums. Below the quality of the free classes taken in the past.",1
16087,"This course is terrible for many reasons. Firstly, the amount of content is ridiculously small - only about 20 minutes of video lectures per week. Moreover, more than 50% of content is just non-relevant.Secondly, practical assignments are very poorly planned:1) in weeks 3 peer graded assignment students are asked to save Tableau workbooks as twbx files, even though this feature is not supported by Tableau Public that is used in this course. The assignment itself is just opening and saving file in Tableau.2) in weeks 4 peer graded assignment you just asked to write some vaguely defined 1 page description. It doesn't include any Tableau-related activities.Thirdly, quizzes are ambiguous and very general.Overall, this course is just a waste of time. For comparison, you can easily get more useful information about Tableau from the 4 minute long ""Getting started"" video on the Tableau website than from this course. Just wonder how Coursera allows such courses to be places on the platform.",1
16117,They say that if you don't have anything good to say it's better not to say anything at all.,1
16119,"This is a good course for deciding if you want to pursue a more advanced degree in Cryptography, Computer Science, or Mathematics, but As part of a Cyber Security specialization, your paying customers are most likely working professional engineers or programmers, interested in practical applications of cryptography that they can use in order to create secure systems and services. This is a mathematics course and your paying customers are not going to use the knowledge from this course in their jobs. This is not an indictment of the instructor, but of the content itself. It is the wrong content for your target customer.",1
16147,I found some slides to be inaccurate which makes the material difficult to learn. Also I found the instructor's presentation style to be too abstract. I think a more practical style would be more suitable.,1
16186,nothing in common with reality. nothing that can prepare for real interviewuseless loss of time,1
16204,Complete waste of time. I could learn the interview skls anywhere.,1
16381,too mechanistic. not much creative modules.,1
16384,"The material itself isn't bad, but the course instructors never respond to questions. What's the point of the class if I can't get my questions answered?",1
16430,Professor is very knowledgable but he is fast... Even before i can understand the first line. he is on the fourth line. i find Hard to keep up with him. I am dropping this course.,1
16578,"In my opinion this is not a course. The contents are a short interview cut up over 4 weeks, fluffed with a myriad of vendor-biased PDFs. The 90s classroom style video editing is annoying to boot.",1
16627,Coursera and this course sucks. You are at the mercy of idiots doing your peer review.,1
16629,"This is the worst course I have ever seen in my life, I'm ain't lying these guys use the terms which they haven't thought and they use it so frequently as if they have thought it, One who were teaching may be industrial experts and have lot's of experience, but one thing to note is:Teaching is an art...",1
16632,horrible,1
16641,In wk3 my DB is totally messed up and I do not know where to find the CORRECT create statements to recreate the DB that the assignments expect! It shouldn't be too difficult to provide one page that gives the commands to execute to create the DB that is used in each week (for each week separately). Due to that I'm un-enrolling from this course.,1
16708,assingnments are not grading .so i do not have reason to study something that can't finish,1
16732,"Avoid this course like the plague. Terribly taught, no support, problems only vaguely related to the course material, and designed to force you to buy the manual for the course. The next classes in the specialization get even worse, with the student forums full of students who can't get any help though the grueling process of installing Oracle, Pentaho, etc. on a personal laptop. I was fortunate to have experience with the tools, would have never managed to finish the course just based on the terribly taught material.",1
16743,Severe lack of support (zero) from the professor or TAs. Some wrong solutions were provided for assigments but were never addressed or acknowledged that it will be fixed. Some assignment files are not Mac friendly or is just not viewable by all students (I can't tell). Materials are quite good but grading is subject to broad interpretations and there is no human to provide guidance on what are the best practices. To think that I paid for the specialisation in order to take the graded assignment AND I have to do the grading BUT I do not receive support? This is ridiculous. I will have to think three times before I pay for a Coursera course in the future. Never again. I will not recommend this to others.,1
16815,"Course material was interesting but very rudimentary, the courses biggest challenge was understanding its spoken English. I do not recommend this course.",1
16823,"The lectures are very well-organized. The topics are also cover in this field. However, the lectures are very dry and boring. The main professor were reading the scripts on the monitor. From my perspective, with his knowledge in this field as being described on his personal web site, he should be able to talk comfortably by looking at the topic on the slide then discuss about it in detail. I would suggest to change the environment to be at the wide open space, like coffee shop, to make this course more attractive. I'm sorry, it is not what I expected.",1
16835,The same information was covered in multiple lessons. It was a very conceptual look at cyber conflicts that you could get if you paid attention to the news over the last five years.,1
16836,"I'm sorry that I'm going to sound harsh, but this course is useless.It touches so many different topics without going deeply into any of them. All you get is a basic knowledge about All Things Cyber™.The recommended readings are all over the place, the video captions look like they're just a basic speech recognition and like nobody actually proof read them. They're full of errors. Lecturers say one word, captions show a completely different word. Plus, they're full of spelling errors. (Kadafi regime in Libya!? Really!?)You can get the same amount of knowledge by reading two or three Wikipedia pages. Don't waste your time on this course.",1
16857,Sways between incorrect definitions and buzz words to word dense academic papers. Lacks clarity to the point of bringing the providers expertise in to question (only those who understand a concept and have relevant experience have a hope of explaining it) . Calls in to question the motive of the course and coursera - this seems more like marketing or pre-sales than it does education.,1
16859,Not worth wasting your time over: they state that which is blatantly obvious and provide little insight into human factors of security.,1
16863,"Too much statistics, too much coding and inadequate instruction. This is not a coding specialization and if I wanted to learn coding I would have taken a coding course! This 9 weeks course has been a nightmare!",1
16864,"This is the specialisation that sucks all joy out of the entire course. 6 month on and I am still on week 2. The software and the provided files are not fully working, something is always missing, constant error messages... If you don't have background in statistics, you will have a very difficult time.",1
16870,NOT FOR PEOPLE WHO DON'T KNOW R TOOL!This course needs an interesting approach to keep students wanting to study. The teaching method was boring. The professor was reading things from the screen 90% of the times (he looked bored himself). The topics covered in this course need more time for students to understand 10 weeks are insufficient.,1
16873,Too much theory less practical things.,1
16876,Way to technical,1
16885,"Much more emphasis on statistical analysis than on experimental design. Seems out of place with the rest of the specialization in terms of both length and subject matter. Course assessments seem to test in-depth knowledge of coding in R (which isn't gone over in sufficient detail in lectures, rather students are told to look it up in more detail on their own; however, the class is already longer and more in-depth than all the others in the specialization!) more so than experimental design or statistics. Should be less detailed, or split into multiple courses, or at least should have an introductory lesson(s) or prerequisite course on basics of how R works - I found it extremely frustrating trying to learn about and conduct statistical analyses in a system of which I had only minimal working knowledge.",1
16886,"Neither statistics nor R was covered in any meaningful way. At the end of the course, you are left with frustration for having to jump through the loops, but no understanding of the principles. I am a college instructor for Statistics, having graduated from a PhD program - even with that background I could not follow the instructor.The course designer never considered the audience, and never identified the goals of this course. The instructor was lost between teaching R and teaching stats, so in the end he did neither. Worst course I have ever taken, both online and face-to-face.",1
16890,"Omigod! You're kicking this off in R-studio and teaching the whole course from this interface? Could you at least use a pen with ink that we can read when you're not in R?!This might be the last straw for me in this specialization. Nothing about this subject matter is easily digestible for a designer, and I'm okay with that. (I'm also a web/js developer, so I'm used to intense struggles with really abstract stuff.)What I can't get over is that this is part of an interaction design specialization that teaches design concepts, but whose instructors almost never practice those concepts in their pedagogy. ""Do as I say, not as I do"" seems to be the prevailing MO. The whole effort seems totally half-baked, and nowhere more so than in this course.I might not be so harsh if there weren't such great examples of well designed pedagogy elsewhere in Coursera, and for material that's at least as dry as statistics.",1
16893,"This was the most arduous undertaking I have ever been through. My frustration is not with professor Wobbrock, who is obviously an expert in his field (though sometimes I felt like he's speaking in ""High Valyrian"" and not English). My disappointment lies with UCSD which included the course of such depth of information and a strong requirement for understanding R, without much thought on whether students will be able to follow. I feel that going through this course was largely pointless, because I'm not going to retain much of the depth of the material in the long run.Based solely on this experience, I'm NOT going to be recommending this specialization to anyone.",1
16899,"As a stand-alone course this would be very good. The presenter is engaging and clearly knowledgeable, and the treatment of the course subject is thorough and well-designed. Grounding UX design in rigorous statistical analysis is important.BUT as a component of the Interaction Design specialisation it was much too long (nine weeks, as long as the previous three courses combined) and the coursework was un-interesting (long sequences of statistical tests with strange names) and very different to the creative and interactive assignments in the other courses. It very quickly turned into a demoralising ""death march"" for me.As part of the specialisation, this course needs to be slimmed-down radically, and perhaps complemented by other analytical approaches to UX and interaction design. In its current form, the inclusion of this course in the Interaction Design specilisation is represents an error of judgement.",1
16900,"I took up to week 2 and, so far, this course assumes statistics knowledge. I expected it would provide a background on the rather than just run a code and show the results.",1
16907,"I think the intention behind including this course was probably well meaning. I think it was a punishing course to get through for those of us who had no background in statistics, scientific studies, or programming. While I was able to fail my way forward through it, it was completely overwhelming, and overly painful. I really think the expectation should be set before students sign on to the specialization, as was I wonder how many students gave up on the whole Interaction Specialization after this course. Prof. Wobbrock was great, but I think there was a lot of vocabulary assumed to be known to us that just wasn't. I felt like I had been dropped down on Mars.",1
16910,"I'm really sorry to give this rating, but I have no choice. The course was horrendously boring, and so far removed from the interesting and interactive work that we had done in the previous sections of the Specialisation. This is such an unfortunate course to have as a requirement to complete the Specialisation, and especially the final hurdle to get into the Capstone. Moreover it was the longest of all the courses. Thus the least interesting and also the longest - makes little sense!As I said, I'm sorry to give this rating, but it needs to be said. The teacher seems like a great guy. And I'm sure he's killing it teaching statistics and R Studio at Uni, but using R studio to such a standard just doesn't seem like the everyday work an HCI designer would do. A statistician or data specialist yes, but a UI designer?Perhaps you could make the course higher level, avoid the indepth R Studio, and make it 3-4 weeks like all of the other courses.",1
16911,"Disappointed ... very technical course and not so practical for today's world, there is a lot of terms and subjects that you require a good background in statistics analysis to understand well. It is a shame that this take part of the specialization program.",1
16912,If you do not know R studio or R programming this course will be very difficult for you. The fact that they state you dont need to know this program and then require you to use it to complete tests is unacceptable. Week 2 test onward requires you to modify code or program code in order to get statistics required to answer the questions. Their helpful hints cause errors when used mainly because you must know the correct syntax or placement of the code to get the correct answer.I'm very disappointed in this class and probably will not pass because I do not have the time to figure out how to program in R.,1
16913,"Overall the videos related to the quizzes are to vague and un detailed, I more often than not feel lost.Also this should not be part of the interaction design specialisation, and just be a small part of another course.Not once have I needed R or statistic in my 7 year design career.",1
16914,Not recommended. Not clear why we need to use R and learn all this statistics. Not practical for use in UX design.,1
16916,Little to no use for me. Should not be included in the specialization... I didn't sign up for a data class...,1
16986,"Uninspiring teacher, repetitive material that could have been consolidated with month 2 altogether.Did most of my learning from the supplemental readings.",1
17018,Which practice?,1
17028,This course hardly has any new content and a lot of it is also repeat from previous courses.,1
17039,Absolutely useless course,1
17058,not worth the money.,1
17068,Hated the course and the content. I truly regret investing my money on this course.,1
17085,"Very boring presentation of the material. I am sorry to say so, but the professor is not a very engaging speaker.",1
17097,Nothing practical,1
17129,Waste of money.....,1
17215,"I don't know how useful the ambiguous requirements exercise is when we only have one-way feedback. I also think that the ambiguous requirements exercise is the most important of the course, and the exercise missed the mark.I would suggest you structure that exercise as a dialogue, where a PM is working with the customer to elicit requirements, and not give us a big long wish-list of functionality. Structured as a dialogue, you can show that a PM would ask, ""You said that the game would make noise. When is the first time it makes noise? How often would game noises be made? Does it ever stop? What makes it stop? Why even have the game make noise in the first place? Are there different noises made during the course of game play/""So, I can't recommend this particular course, and I'm concerned about what the capstone will look like if you give us an assignment where we're to make sense of functionality delivered as a block of text .",1
17271,"This course totally reminds me of some courses back in college: unorganized material and the assignments are unrelated to the tutorial. The assignments themselves seem to be very helpful but the tutorials did no help of achieving these assignments.I had a hard time following the instructor despite that I've completed all the certificate for python from University of Michigan. I'm aware of my background of python is still not strong enough so I thought it's probably just me not able to learn it fast enough.But then I watched the tutorial about SQL. As a data architect / ETL developer, SQL is something I'm familiar with and use it everyday and then I realized that the instructor couldn't explain a nested query well. The reason I was able to understand about the SQL part is because I already know.",1
17277,"Outdated, unintelligibly exercises, terrible lectures.",1
17314,"Poorly designed videos, too long and confused",1
17318,Th first three classes are very 'thin' in content and the assignments are easy. The fourth class is basically optional and it has TONS of content. What's the point?,1
17341,"Lost in details. Professionals(btw I hold a MSc degree in Computer Engineering) cannot get anything from this. What is the point of writing frequency.pl where there is a hist() function in R? If the instructor is trying to teach us how to program in any language, then I can assure you the data science class is not the right place. I recommend the instructor check ESSEC Business School for analytics subject to better comprehend the Coursera and its goals.",1
17374,I suppose that we should have some basic knowledge of data visualization before this course. There are no practical sessions. I could not understand many topics and it seems that content has been missing from this course.,1
17392,Starting it now.,1
17396,"The course do not match its price at all, it is catastrofically sketchy. First time while using Coursera I am so much unsatisfied with some course.",1
17414,"Too dull, no programming explanations. Sometimes too simple and suddenly too technical.",1
17466,"The peer reviewed assignments are next to useless, as there is no oversight on them. I think there needs to be a basic comprehension assessment done first, before allowing fellow learners the ability to pass/fail students in the course.",1
17514,"Great material. Some things I didn't know about disabilities and colleges, however the presentation of the videos that were not of a guest speaker were poorly done. The instructors sounded like robots and you could tell easily that they were just reading from a script.",1
17518,"You have to pay to upload the assigments , this does not pas in other courses ...",1
17529,Quiz should be open to all students... :/,1
17559,Too theoretical.,1
17667,"Executive Summary: Do not spend time on this course if you have minimal common sense and have read at least one article on Data Science.I finished the 11 week course ""Machine Learning - Stanford University - by Andrew Ng"" 2 months ago, which was such a great course! It kept me busy for about 20 days (at about 4-6 hours per day) and I learned so much!This course ""A Crash Course in Data Science - Johns Hopkins University"" , Part of a 5-course series, the Executive Data Science Specialization, provided just some superficial obvious information, took me only 3 hours to complete and even this time I would could wasted time.Finally coursera now starts to make courses smaller and smaller and them adding multiple of them up to ""Specialization"", so that at the end you have to pay much more to get a certain amount of information and course time. With this course they seem to have streched it to a new extreme. The price for the certificate for this superficial short mini course has reached the same price ($ 44) as what I payed for the extensive great Machine Learning course from Stanford University by Andrew Ng !",1
17695,A little devoid of depth.,1
17728,"It's too short, I think it should be a part of a course and not a course itself.It is a repetition of concepts and examples from other courses by john hopkins univ.",1
17732,"This course is very sparse on details, and just a week of content. The lecturer is not the best at explaining concepts.",1
17759,"Very basic, for absolute beginners/ managers completely new to data (let alone data science)",1
17763,Too short to get any depth of information. Too expensive for the content provided.,1
17836,boring,1
17839,it's a shame to split a one month course to four.,1
17870,Only one week. Not much depth.,1
17905,"In my opinion, this course is a waste of time, it simply throws a bunch of links and terminology for you to google and research. The project is interesting but once again, you have to do tons of research and take up other courses to fill the gaps (might as well do the other courses instead of this one).I do not recommend this course or the specialization.",1
17908,NLP is a total different thing and should be a course by itself. I would prefer a a large scale machine learning capstone where we could make models and it would fit better to real life situation! Through all the courses I worked hard only to reach NLP capstone? this doesn't feel right! Please fix it!,1
17944,A poor end to a poor Coursera specializations.,1
17950,"I currently taking this capstone and I must unfortunately say that this is the most worst course in the whole specialization. Of course the topic NLP and word prediction is interesting, but the problem is, that this is a dead course. A couple of students in the forum strugeling with details, but there is NO Mentor, no Professor or other course staff and no SwiftKey engineer as announced in the Project Overview.So everything you have to figure out completely by yourself and this takes a lot of more time than the 4-9 hours. And also why should you pay for a course where you learn anyway only ba your own.Pick any intersting topic you would like to work on and invest the time in this instead of paying for this Capstone without any support form Coursera, JHU or SwiftKey.",1
17956,Coursera lost my thoughtful 2-star review so I am replacing it with this. I learned a lot through my own efforts and through the efforts of students who bothered to post in the forums. The one mentor disappeared half-way through the course.,1
17966,"None of the previous classes will prepare you for this one. This is not really a class, but rather a project on a topic NEVER covered in any of the previous classes in this specialization.",1
17998,too theoretical without enough practical quiz and assignment,1
18001,"A list of research papers to read further that's it. The course is too short to cover the subject so it covers nothing in the end.The programming assignment have no help, whatsoever it's ""do it"" any language. The 2 programming assignment doesn't have much to do with the course. We don't even talk about the algo to use to do it. It looks like coursera has asked the professor to add a programming assignment to the course and he had 3 minutes to choose what it could be.It shouldn't be advertised in coursera as it is.Ah, forgot to mention that no one replies to the forums,actually no one uses them.I think the subject is very interesting but this course gives a really bad advertising to Coursera, the university and the professor.It needs more work before it's deployed on the platform.I am going to try another Coursera course in the same kind of subject I hope it won't be the same.",1
18009,"As a developer I consider this a very poor course. It can be good for manager and business people to better understand what technologies are available these days, but that it. You can easily look at the syllabus, go to the wikipedia and read the pages on presented subject and you will get the same knowledge. There were no programming assignments, quizes and exams were not challenging at all and some questions were really confusing. I won't recommend it to anyone and it shouldn't be part of this specialization.",1
18017,the video is too long,1
18027,"It was really focused on high level concepts of different technologies, the level was really basic. No details have been served.",1
18235,Concentrated on image manipulation which would be ok if you wanted to build visual websites for a living. If you want to code anything like business applications (like I did) I wouldn't do this course.Because pixel manipulation wasn't something I was interested in (in the JavaScript section) at all I found the course really boring but it was too late to pull out.,1
18267,So many better options out there to learn to code. The videos on this course had me so confused that I eventually gave up and went to another website to learn what I was supposed to be learning here. Asked a question on the forum that another student was also having a problem and nobody answered me.Very very boring. Try somewhere else.,1
18322,This is a lie. I do everything. I complete week 2 and now i come back to watch videos about week 3 and i see that i dont do anything.Can you imagine ?Good job guyz.,1
18340,wow. the presentations are really boring! the Java script part is super confusing!,1
18344,"This course is very inconsistent when it comes to JavaScript. Instead of giving fundamentals of the language, course instructors prefer to give you a bunch of non-standard libraries and teach you a couple of randomly selected methods which could be applied to images. All core concepts such as data types, data structures are explained very sketchy. OOP paradigm isn;t explained at all. For example, they give you a line of code which goes something like:var x = new SimpleImage(""..."");no explanation of what SimpleImage is is given neither you are taught how exactly it works. Apparently, this course relies heavily on self-learning the lib docs given on their site.All together this leads you to simply monkey-coping lecture materials into code editor without even realising how it works and what it does. This course is at best serve observatory purpose to give student just a peek at what web development is like.This course could not be used as a solid foundation fow specialization.",1
18386,The teachers and instructors really should make better videos and stop giving peer edit assignment when people are picky and do not grade your assignment. The instructors should also give their contacts to let their students contact them when the discussion forums dont work,1
18399,This course is not relevant in the real world.,1
18402,"Week 1 and 2 were very useful. As a beginner, I learned a lot about HTML and CSS. Week 3 was a big leap to JavaScript, and the level of difficulty was the reason why I quit the course. Concepts are not well-explained, a lot of material for completing the tasks is missing. Please make JavaScript part simple for beginners.",1
18437,"The most terrible course I have ever seen in my life and on this site. For some of quiz questions, you feel like you are dumb because you can not make connection between lectures and quizzes. I really wanted to learn java on coursera but It seems impossible to me. Focusing on rbg values and image thingies too much and making me feel uncomfortable at quizzes after watching all those lectures are the main reasons of giving 1 star.",1
18459,The jump to javascript is too great for beginners. Fundamental concepts of programming severely need more time spent on but are in fact glossed over too quickly.,1
18479,"I learned eight lines of Java code in four weeks, and we never implemented any of it into a web application (viz, a script that actually runs in a live website). Read a book instead. It's cheaper, takes about the same amount of time, and you learn a lot more. I gave it a star because one was the minimum. It should be zero because it wasted my time.",1
18480,"Really poor course. Rather than starting from the basics, this course picks random information to work with. Week 1 was information anybody with a computer knows. Week 2 was really good. Week 3 and 4 were completely useless. Rather than starting from the basics they jump into picture manipulation and encoding. Don't take this class if you want to learn about coding.",1
18481,Poorly designed and explained. You do not really gain much knowledge from this course.I would not recommend my friends and basically others to take this course. There are far better courses out there for much cheaper prices.,1
18489,"This is NOT a beginner's course. There is not enough coverage of fundamental programming concepts, and too much playing around with complex application concepts such as Steganography. Simple image manipulation is a good way to teach programming concepts. Teaching bit arithmetic in a first programming course is NOT. Also, there are many errors in the videos that should be corrected. And finally, this course is advertised as requiring 3-5 hours per week. What a huge underestimate! I have been programming professionally since 1989. Other than week 1, every week requires closer to 8-10 hours at least. Stop advertising this as a beginning course, or restructure it such that it is more appropriate for beginners.",1
18490,The instructors overly explain simple concepts and talk about programming inbetween makes the course confusing then you get lost and quiz you on stuff that was not properly explaiuned,1
18502,The JAVASCRIPT part of the course was to difficult for me I didn't understand enough. I would like to see more tutorial.,1
18517,"Tutors reading from a teleprompter comes across as robotic, lifeless and boring. We should be told before we do a piece of work that we can only submit it by upgrading, not afterwards!",1
18529,"This course, starting from week 3 in NOT for beginners at all. If you are truly new to programming you would understand nothing from the Java Script part of the course. A lot of people complain about the same issue during the course.",1
18532,Not really useful ~ I would like to email in a PDF file of comments,1
18536,I quit this course as it does not live up to the specialization which it begins. JavaScript is not Java. The course description should clearly state that JavaScript will be taught and that it will be used to draw boxes of different colors. I was extremely let down by this course.,1
18538,This is not for beginners at all.,1
18566,HTML and CSS is good. JS search for another course.,1
18576,"I wanted to learn more about programming, but instead I found myself tested on RGB combinations and building a website straight out of 1998. The course is scatter and although it claims to be for beginners, it covers programming concepts rather quickly. If i hadn't taken other programming classes, I would have been lost.",1
18577,"This course is misleading in a lot of ways. It is not for beginners at all. The quizzes in the course are beyond impossible. The lecture videos give an introduction to some concepts, but you are left on your own to figure everything out. They do not provide the proper tools to enable students to understand or pass. Reading through a lot of the discussion boards, there are two types of students: 1. those like me, who have never programmed in their life, and cannot figure any of this out, and 2. Those who have all sorts of experience and write things that are way advanced for a ""Beginners"" course.Do yourself a favor, and seriously do some research on appropriate programs before signing up for this one. It needs to be structured way better than what it is now.",1
18601,Not everything is explained well so very challenging for someone with no prior coding experience.,1
18604,No ancillary reading material or text to help along with the assignments lead me to fail the course.,1
18610,Last week was incredibly difficult.,1
18621,"The instructors rushed through the Javascript part. Unlike the previous sections, this section assumes that one knows Java and its syntax beforehand.",1
18626,Too much emphasis on taking tests versus actually programming.,1
18634,"I drop at the beginning of the Javascript, before Javascript, everything is good, after Javascript, ""What are they talking about""?",1
18639,"A giant and complete waste of time. $79, and 1 month of work and it's all Javascript, no java. Worse yet, you are required to work in BlueJ, (google it) with custom Javascript functions that you are not allowed to view or use outside the course. So, none of the code you write in this course will ever be able to be used anywhere else. (The functions probably are in a minified file, but the students were not given access to that file.) A complete waste of time. I would give it ZERO stars but can't submit this rating without giving it one star.",1
18642,"Definitely not a course for a beginners, very confusing. The part with the Javascript is a real horror for beginners and even challenging for some newly programmers!",1
18668,Very poorly structured. Explanation and examples were not very helpful. should revamp the course content and video lectures (specially the steganography part).,1
18685,"Honestly not a very well designed course. I went through the videos and tests for weeks 1 and 2 and found that it's just rushing us through the basics while not really telling us much. Much of it was ""here's an introduction to a tiny detail... You go find out the rest""..",1
18704,The course does not has lecture slides that is better for students to understand.,1
18705,"The big assignment at the end contains instructions that are outdated and incomplete. Given the length of the course, it feels like you already need to know the material before even taking it.",1
18710,"I was very upset by the end of this course. The documentation was terrible. I ended up spending way to much on AWS even though I managed it the best I could Terminating instances. In general, I think this course would have been more fulfilling if the documentation was appropriate.",1
18711,This course is really bad. The instruction is not enough to solve the programming assignment. The almost contents aren't related to communicating data science result.,1
18712,"I'll say the same about this class as the rest of the specialization, if you have the skills to complete this course then you don't need to take this course. If you don't have the skills to complete this course, you will not complete this course. The course instruction is at 10000 feet level and the assignments are very challenging and the course will NOT teach you the skills required to complete the assignments. The AWS final assignment is a very much throw you into the deep end with no real instruction (well at least completely outdated instructions) and will expect you to swim (or more likely for most people, to drown).I recommend the Machine Learning Course (from Bill's colleagues) at University of Washington. That is a course where you get some real instruction and understanding of how to complete assignments (though still very challenging).",1
18715,"This course is not maintained. It's flat out exploitative to throw students at an AWS assignment without updated instructions and with outdated versions of pig scripts, etc. They're setting students up to hemorrhage money on AWS and possibly not get anything out of it. Under no circumstances should you take this course or even this specialization so long as this assignment is gating it.",1
18716,Much of the assignment was out of date. The content was not related to big portion of the assignment. There was no way of getting clarification over the outdated assignment content.,1
18719,"The lectures are excellent, but do not take this course if you are not already proficient in a graphing package, whether it's R, python, or something else much more sophisticated than Excel. Otherwise you will be faced with the painfully frustrating task of learning a package while trying to complete an assignment, all with a short deadline.",1
18734,"1)the course is very abstract and is looks more like an obvious advertisement. Less than 10% contains useful information and the rest is describes the same idea ""Cloud is good"" with various words and phrases.2)buggy. And the worst thing is one of the last tasks contain a bug which doesn't allow you to pass this course. So you've completed all the tasks and in the end you find out that you just can't finish the course.3)The course is about ""Cloud"" as a technical term. Then why in the end you require to complete a task which is fully philosophical? And of course again - you have completed a course and in the end instead of finished course you will get this ""sucker punch"".Good luck to everyone who wants to try to pass this course because in my opinion it means a wasted time.",1
18740,"Week one starts with interesting material that relates probability to data science. Unfortunately as the course progress the course material and videos become less and less helpful. Ultimately the student has to visit other web sites and youtube to actual learn the expected material. The course notes are next to useless and the video are equally unhelpful. I am sure the teachers know their stuff but they have no idea on teaching it clearly based on the material presented in this course. Avoid this course, and head over to KhanAcedemy and complete their probability and statistics program and you will actually learn all the material in this course with a ton of examples and top class videos.",1
18772,"This course is very strong with respect to presenting the concepts you need to know for data science. It is extremely WEAK in terms explaining those concepts. If you are like me and did this kind of math back in the 70's and 80's but have not used it since, be prepared to seek sources outside Coursera in order to understand the material and pass the quizzes. The instructors leave out explanations and skip important points leaving you confused about the concept.Example: In the Permutations and Combinations sections, ""results"" of calculations are thrown at you with no explanation of how the instructor got the answer. 10 minutes later, totally as an aside, you get the explanation. The course is not taught in such a way that A leads to B, B leads to C, and C leads.....; instead the instructor will tell you about C, might explain A, and forget about mentioning B until the graded quiz. That is why you will need to fill in the gaps using websites like betterexplained.com or kahnacademy.com.The student is better served by looking at the syllabus and then going to either of those sites - where the explanations are worth your time.In addition to failing to present steps in a logical order, the course often teaches at an extremely basic level but tests at a much, much higher level. Again, to get to the higher level of understanding needed to pass ANY of the required, graded quizzes, the student will need to heavily utilize outside sources. The explanations on the practice quizzes also fail in many cases to thoroughly explain why an answer is correct.Then there are the issues with Coursera itself, the course navigation using Chrome is quite bad. If I did not constantly monitor what part of a course I should be in versus what part of the course automatically loaded next, I often found myself taking a quiz for which no lectures had been presented. The TA's response to my complaint was flippant and WRONG. She then closed my question and I could not respond or ask for more details.If I had it to do over again I would invest my time and money somewhere else. In my opinion, Coursera should rescind the instructors' rights to charge for this course until the instructors improve and meet higher teaching standards.",1
18781,"I've done quite a few online courses over the past few years, and I consider this is without doubt the poorest. The lectures do not comprehensively provide the information needed to complete the assignments. I think this is not just my opinion either as posts in the course forum suggest other participants have the same view. The stated module completion times are wildly optimistic. I only managed to complete the course by substantial independent research. Consequently, I would not recommend this course.",1
18794,"This course is a pure advertisement for IBM products. I entered the course expecting to learn about Raspberry pi and Python and got nothing our of it! If you are really looking to learn about IoT, check out a course called "" An introduction to programming IoT"" by University of California, Irvine. I am taking this course right now and already learning a ton! This course, on the other hand, is a total waste of time.",1
18843,"Hi, I am an IT specialist (30 years experience). I undertook the course so I could learn about IBM Bluemix and IoT development, and extend my skills/understanding of the environment. However, I have very little good to say about this course offering. I had numerous issues with what was offered:The videos were generally ok, but some had poor audio. There was minimal video (compared to any other course I have done), and more detail and discussion in videos would have been more helpful.Some of the video material is out of date already, as I suspect Bluemix layout has changed - this made navigation a bit confusing.The downloadable Pi image has changed since the course was prepared, and the newer image has different code as standard. I ended up having to muddle-through manually loading packages and dependencies, etc. to get things to work.I lost many hours trying to debug and rework assignment code, just to get it to work for the grader tool. This was further complicated by not having good debug output from the grader to work with. Naturally some of the grader fails were my own fault, but the majority of issues I ran in to could have been avoided by better worded assignments and/or more detail about requirements.Lastly, it was taking sometimes days to get any response to requests for guidance on the forums / discussions. In fact, I think the majority of useful assistance came from other students who had run in to the same issue(s). When you have a course that is such a short time frame, you really need to be providing assistance in a timely manner.I could not, in any good faith, recommend anyone take this course in the future - which is a little saddening. I do thank the lecturers for their efforts thus far, and sincerely hope they can either improve or drop this course offering in the future.",1
18845,The intro video just really put me off. sorry!,1
18854,The obstacle of not knowing French is quite detrimental,1
18857,I do not like the different language. I do not read fast enough to keep up and understand what is bing said. I think we should have a language button to translate to English or any other language that takes cources from Corsera.,1
18860,"Decent course content, but fairly basic. However, the peer graded evaluations are subjective and take too long to get feedback and progress in coursework. I will not be taking another course that uses this loose of a peer evaluation.",1
18900,"instructions for assignments are not clear! Lectures are good, but its practically impossible to get the certificate.",1
18910,"The videos for this course seemed to be 30% recap of the prior lesson, and 20% restatement of what was learned. Some even duplicated their own content in the restatement. The material covered was simply running through each of the menus in Tableau. Again, this material may be of use, but would be better as a primer for the class rather than presented as useful, paid content. Terribly disappointed.",1
18918,The content is essentially a subset of the information available in the free tutorials on Tableau's website. And a pretty small subset with that; the total length of the course is less than most of the MOOCs I have taken have for one week.,1
18930,"Hello,I've completed 5 modules of the specialization successfully with excellent grades. However, the biggest challenge and disappointment was the capstone. The case given is pertaining exclusively to the North American market. Students enrolling into the course are situated globally which makes it extremely challenging to gather data to understand and substantiate our work on the project. Several hours of extensive research yields no usable data which could provide a logical direction to the project. Reading material provided explains mainly the company profile, a few links are blocked due to geographical restrictions, reports that are available are to be purchased etc. While the money invested is not refundable now, however coursera with university team needs to seriously resolve this point. All learning done through the course remains largely a theoretical knowledge if a student isn't able to apply it in his/her job.",1
18931,This capstone is unavailable most part of the year. I paid in advance for the complete Digital Marketing Specialisation which is a 1 year subscription thinking I can complete the course anytime I want (that is how they advertise it). I finished all the theory well within the 2 months into my enrolment. When I came to the capstone project it was unavailable and for almost 3-4 months. When I contacted coursera.org they had no clue when it is going to start. I am a working professional and my schedule gets very busy when I am on projects. And ever since then whenever the capstone is available my schedule has been very busy. I have completed 2 Assignments in capstone and 4 to go and the 1 year subscription is over. Coursera.org says I have to pay for it again to continue which I am never willing to. There is no courtesy to a student/customer who has paid for the course. I have paid in full but I don't have the Digital Marketing Specialisation Certificate. This platform is more about money than education.,1
18940,"There is no doubt that coursera platform is the best education in the worldBut I want to learn digital marketing and this Capstone needs to experience in the digital marketing not less than 10 yearsI wish there are a path or templates to work and learn, such as the Capstone project of specialization in marketing social mediaThere is lack of information and data and the previous five courses is insufficient for professional project like this CapstoneThe first course marketing in the digital world was really the best course in courseraand This course is really the worst course in courseraAnd unhelpful and I did not learn anything from this course only gather information from various sources to pass assignment",1
18945,too long,1
18947,Hated the course and the content. I truly regret investing my money on this course.,1
18951,"Capstone exercises were very ambiguous, the students were left to interpret they way they had to finish and how they rated their peers.The peer reviews were poor with little to no feedback and the focus was on how the material was laid out vs what the content was.I have done other coursers and capstones in Coursera this was one of the poorest. UIUC has to revamp this. More guidance to students in the instructions would be the first step.",1
19065,"Very bad course. No videos, just an interactive textbook. The course states all you need is ""high school level biology"" yet you require coding knowledge for the very first quiz. there are side questions on the first week like does this algorithm runs in O(k * l * x^2) or O(xllogk) without ANY explanation. I guess you can find much much better book about bioinformatics, and as this course is nothing more then a book i recommend a better one.",1
19074,"Unfortunately, as often happens, what is ""simple"" and basic for one is not that for another. This course presumes a comfortableness with coding that I simply do not possess as a teacher of high school science. Please try and develop a true introductory course that normal, non-programmers can access. Thanks!",1
19097,"I found the course content to be too simple, hence uninteresting.",1
19098,"Sadly, I found the presentation poor: not at all fluent, and under-prepared - sometimes what was said was different from what was written (which was correct), potentially causing confusion. Also, some results were given without justifying them, for instance the concept of simplest number was stated but not proper",1
19124,"I do not recommend this course if you want to be taught intuitively. The slides are mostly just a list of bullet points, with very few intuitive figures or charts (normally figures/charts are easier to understand and remember, even the simple ones). You are just fed with lots of concepts throughout the course. But in the end, you are suddenly required to do some practical C programming in Contiki (an embedded OS), which you need to spend some time to figure out quite a number of practical issues just for a successful run.",1
19125,I categorize this course in the beginner level not intermediate.,1
19129,Useless bla-bla-bla in general words. Nothing concrete. It is not possible to build embedded system with OS after finishing it. IoT is mentioned just for marketing and promotion. If you seriously consider developing OS-based embedded system even just reading Wiki pages about EOS would not be such a waste of time as listening to this course.,1
19186,"A jurassic park image, with material you can read by yourself?",1
19214,"After going through each lesson, week by week and thinking I was really learning something, but I can't pass the first exam (even with my notes and Google) and almost had a panic attack when I looked at the second exam.I feel like I wasted fifty dollars and hours of my life in order to get what little belief I had that I might have actually learned something come crashing down.",1
19231,"One way (approach) to 'teaching' data shows only that you know data but haven't designed multiple ways of teaching it. No, feedback from instructors, directly, makes it hard to obtain conceptual understandings. ie, as soon as you become lost with the one-way taught week, no way to grasp the following weeks. There could be a higher rate of success AND enjoyment of learning, if more thought were put into 'How to teach' the material. Been playing music for over 30 years and am failing from week 4 on. This shouldn't be as confusing as Coursera has made it. Disappointed and DISCOURAGED!",1
19256,"The course material itself is enjoyable, but the quizzes don't work properly. The feedback given to the same responses between retakes is contradictory.",1
19301,"Very low content: I got more information about Berklee than about music from this course. It is more of a show-off of the university than it is an actual informative course. Looks a lot like a yt tutorial, just much fancier because they are berklee. I watched from the beginning to the end waiting for them to start talking about anything other than naming intervals, but it didn't happen. They try to ear-train you, but any app for ear-training will do it better. Quite disappointing.",1
19391,The certificate doesn't show hours per week and the topics we did during the course. I paid for an empty paper.,1
19467,"I am very disappointed in this specilization/course. I am working as a business analyst in a data warehouse consulting firm, so I was highly motivated to take all the courses! However, lecturer's poor delivery has taked me aback! It is really hard to grasp the information when it has simply been read to you! The lecturer is always reading and it makes me sick (sorry!). Anyway, I would not continue with the courses if nothing changed. In my opinion, if the lecturer respects students and his field of study, he does not READ from the script and lack motivation...",1
19513,Quizes were poorly worded.,1
19532,The material is very unclear.,1
19616,Not very well put together. It marked some answers as wrong that were actually correct.,1
19635,"It was the worse experience I have so far on Coursera Platform; the course itself was sloppy and with nearly zero content. The instructors spent too much time telling you what you will learn and talking too slowly as if wanting to fill in the gaps than actually having some worthy material prepared for all the ""pupils"" out there, who gave their time, effort, and commitment. Pity really.",1
19650,doesn't show the videos.,1
19662,"This course requires that you already are a manager or are in a position very similar to a manager. More importantly, this course is filled with ""neuro-babble"". The fact that the hoax (by now debunked) of the ""positivity ratio"" and the ""attractors of happiness"" are still in the course and presented as fact is a big red flag. Not recommended.",1
19717,The instructor rambled on when back on forth on topics and numbers too much and made the videos much longer than they needed to be. Some of the information is badly outdated like the electric vehicle driving range and hybrid vehicles only able to drive a mile with ou,1
19727,The course material as presented appears to be at least four years old. History has proven many of Professor Shelton's conclusions to be wrong. Having Professor Shelton read his powerpoint slides is a very dull way to convey information. I expected more from Georgia Tech.,1
19742,"what in Stalin's name is ""tail that wags the dog""?",1
19746,Really not good. I am trying to find out how to un enroll,1
19750,Inaccuracies and low level of engagement.,1
19752,"Good if you want to fall asleep. The content is probably interesting, but they would have some use of advice from the entertaining industry.",1
19762,"I'm unimpressed with the quality of the material and uninspired by the professor's video presentations. Out of the dozen or more courses here that I have taken, this one ranks at the bottom. I'm not going to disenroll at this time, but I have lost interest without even progressing beyond the first week. Maybe if I get inspired later, I will try again.",1
19771,This is SO out of date that half of the information is irrelevant,1
19781,the tutorials are outdated. I could not install all the software needed to complete the course nor do I understand what they are used for... too bad. looks like a great course,1
19800,"The course material was interesting, but the TOTAL lack of support forces me to give it only one star. I left the following complaint in the general forum for this course 2 months ago. Neither Coursera, the instructor or any moderator ever responded. Many people were not able to run the software supplied in the course because of bugs, but the solution was left to the student. I have taken good courses on line before, but this is not one of them.It seems that the Dr. Tucker Balch and/or the moderators have totally abandoned this course, but Coursera keeps offering it and collecting money.The neither instructor or nor the moderators have posted on the Meet and Greet Forum.The instructor and/or moderators have ANSWERED NO QUESTIONS posted on ANY forum.The QSTK (software) BUGS have NOT BEEN ADDRESSED by the instructor or the moderators. Only students have answered these forum questions.""Computational Investing Part II is coming shortly."" That is what they said 3 years ago. Further evidence of abandonment.",1
19802,Terrible. Nobody seems to monitor the forum. No response to questions posted.I want to rate zero but there is no such option available.,1
19806,I think the course is really missing some key parts.,1
19813,I can't even access the site.,1
19817,"The code teacher used is out of maintenance, students have to spend a lot of unnecessary time fix it. Even I have purchase it and finished week 1-3, I still chose to drop out. Not great learning experience. :(",1
19839,"GOOD:topicsBAD:presentation (poor sound, unprepared and unrehearsed presentations, long intro's, unjustified use of greenscrenns, etc)shallow with regards to the theoretical aspects of what it is presentedassignments are mechanical (easier than the tutorial and you have to perform the same tasks for different constants for several times)",1
19840,Incorrect formulas. Very simplistic approach to subject matter,1
19955,"Too long, not enough concrete materials, too much focused on US.",1
20142,"The class recording could have been made simple. Lots of notations, and would definitely be difficult for people without prior econometrics background.",1
20168,"Old fashioned Econometrics course, still using the ideas of fixed regressors (rather than the more sensible conditional models approach), emphasizing prediction instead of causal interpretation, etc.",1
20176,Not much teaching going on here. The concepts are barely touched on before the student is asked to jump into training exercises that require lengthy proofs of concepts not thoroughly taught.,1
20179,"If I can understand all of these derivatives, why shall I attend your course? It is not helpful course, especially for persons looking for some practical econometrics applications rather than focusing on the mathematics side of it.",1
20211,"If you have to pay for the certificate itself, then the course can't be too serious or maybe even that much helpful.",1
20255,The course is very short and more advanced courses are not free.,1
20261,corporate HR focused conflict NON resolution.,1
20273,"Presentation is so boring and dry, I could not bring myself to watching past the first couple of videos.",1
20282,This is a joke right?5 minutes long videos with questions after it shall teach me effective?!you guys are ridiculous!,1
20293,Very boring. Not many real life advices. Mstly theory,1
20302,"The course material is interesting (3/5) but the assignments rely heavily on reviewing the work of other students which severely detracts from the course. If I wished to grade other people's coursework, I would have pursued a career in academia instead of becoming a research scientist.",1
20361,This feels more a like a sales pitch for Copyblogger than an actual course. Kinda feels like a waste of my time. I didn't learn anything new.,1
20530,"Few content, bad quality, many mistakes in the material, no programming assignments, poor support.Definitely not worth the money.",1
20606,"Videos and materials are fine, but insufficient for the quizzes, which are apparently very difficult even for PhDs in the field.",1
20712,boring,1
20757,"There is no real flow between videos and questions, not easy to follow. Good efford, good content, just wrong methodology for online training for 2015.",1
20791,boring and helpless,1
20795,no one would take this course any more.,1
20852,"boring lecturer, monotone, passionless reading of even more boring powerpoint slides and images, and absolutely no intelligent discussion going on in this course, I have learned more from reading the book ""the epigenetics revolution "" by nessa carey, a book written for laypersons, than I have from this course taught by university professors. don't waste your time",1
20959,very basic. for novices. not worth it to pay money for it,1
21202,NEEEEEED TO EDIT MY PEER REVIEW FROM OTHERS,1
21208,"When it comes down to it, there's simply not the support to assist a student that has a really hard problem, ""hacker mentality"" seems to equate to ""figure it out on your own cuz nobody's going to help you"". If things do not work perfectly for you then you are likely never to be able to finish because your ""peers"" don't know any better either. The way this class is set up makes me angry every time I have to deal with it. I would probably be just as well served doing just the swirl() exercises. I would quit if I hadn't paid all the way through in advance. I can't believe this is the type of school John Hopkins is to produce a course of this quality, but I guess I have to.",1
21254,This course mostly about how to use plotting libraries in R.,1
21290,Material is to basic for an entire course.,1
21336,"Not a fan of this course. Reasons:1) The subject material is presented in a dry manner (too much talking and jargon) - I find it repetitive and boring. I have to play it at least 1.75x in order to get through the material and try and stay engaged but I still have a hard time paying attention. Seriously, so boring!2) There is a high degree of subjectivity in grading essays (peer reviews)This course can benefit from:1) Clearer introduction of concepts using pictures and animations, as well as cutting out the repetitiveness (and the assault of the jargonaut)2) A better approach to grading that places importance on concepts instead of key words (jargon)",1
21401,Bad videos. Reading material should be summarised,1
21525,This is far too rudimentary to be something produced by a university,1
21650,very dissapointing to not be able to make the quizzes and the assigments without paying it,1
21717,Terrible englishQuite diffuse contentNo reading texts,1
21722,This is just blatant propaganda for the EU. It's like a big commercial. I'm surprised that Coursera allows this tripe on their website. Awful!,1
21724,Doesn't worth the effort. You learn the most by searching online tools each time you encounter a problem while solving a quiz problem or following the steps the instructor did.,1
21785,"For such a terrible course to then change payment terms without my authorisation. Take $64 from my account without telling me clearly amongst all the other junk mail. Coursera have a lot to answer for, and this specialisation is not even worth wasting your time if it was free.Taught without purpose; meaningless instructions given to copy without regard of the bigger picture.",1
21812,lectures are too fast.dropping out.,1
21850,"Basically impossible to complete quizzes and course project using the provided course material. Poor correlation between instruction and testing. Makes one wonder: If I need to solicit others' guidance to complete your tests, why am I paying for your guidance in the first place?",1
21858,"Lectures and other material just don't cover the information needed in the course project. Majority of the learning has to be done outside of this course, in order to pass the course project.I cannot recommend this course anyone who is not deeply familiar with the topic already. The course project is truly frustrating!",1
21897,Poorly constracted course!,1
21902,"R is really just the worst, and the instructors do not make it better. The code in this class is unreadable:- too many one liners, because ""it's faster to write"", though harder for other people to read- variables are named cryptic things like spIns or x, rather than names with meaning (eg, sprays.by.insect), again ""because it's faster to type""- way too many cases of ""there is more than one way to do it"", which just makes things confusing because the other ways tend not to be equivalentWhat I'm most concerned about is that I've seen lots of poorly written code in many different languages: Java, C++, C, Python, Perl, and now R. But I've also seen really well-written code in all the languages *but* R, I have yet to see any code in R that is flexible, maintainable, and clear. Which leads me to think that no such code exists, or it's so rare that it doesn't matter. It is clear to me that if I am to do data analysis, then I will need a different set of tools; but because this specialization is taught entirely around R (the lectures are about R, not about higher-level concepts), then this specialization is not useful to me.",1
21909,"There is a lot of fluff in this course and at the same time it assumes that you have knowledge and skills that are not covered in this course or in the previous two (e.g. github). I'm really disappointed in the quality of this course--specifically at how vague many of the instructions were in the quiz questions and the final project-- and that most the time when explanations were asked for on the message board the professors just did some hand waving and said that figuring it out was part of the assignment. That isn't teaching (online or otherwise). And if your instructions aren't clear, you aren't doing the job of an instructor when you pass the buck and try to sell it as ""part of the learning experience."" I hope this fall off in quality isn't reflective of the rest of the courses in the data spec.",1
21939,The worst! I don't recommend you to take any course from this institute. It is just wasting time and money.,1
21945,Description of assignment questions is not clear. The expected answer from the questions are confusing.,1
21987,"There are quite a few issues with the final assignment of the Getting and Cleaning Data course. I feel this assignments lacks quality in contents, suffers from a flawed process and lack of attention by the moderator.",1
22006,This is just because of the unclarity of the final assignment.,1
22079,It's useless and lacking enthusiasm.,1
22139,The theory explained and the exercises are not at the same level.,1
22240,This required nearly no effort and is probably of little value in the real world.,1
22267,Useful as a necessary step towards finishing the specialization only.,1
22268,"Total disappointment. This was only clipping through a tool, not a real capstone project.",1
22285,"Disappointing, thought it would be more involved, perhaps with a real presentation graded by other participants in the course. Was interesting to watch the videos, but it was a 10 minute job. The other parts were OK, but after the Capstone I would hesitate to recommend the course.",1
22286,"Thanks for creating short course for busy business pearson.But, it is too gamificate to (professional business managers) educate. In addition, this is the lack of contents.For improvement this course, I strongly recommend you to add create presentation and peer review assignments. This is the issue of the Coursera( included other MOOCs) Open Access Education philosophy.",1
22367,Very bad way of teaching and not reach content,1
22387,"Objective and Professional Evaluation:If I could give this course a zero, I would have done so, but it is not possible. I shall explain my reasons below:1- The teaching method of this course is very lackadaisical and lackluster.2- The ratios are introduced and solved without having a P/L statement or a Balance Sheet on the side to see how the figures are extracted and implemented, which made it more boring.3- Its final 3-part quiz lacks the proper instructions and the redundant instructions already there do not help either. For example, it says Part 3 is answering NPV. However, Part 3 includes six calculation questions unrelated to the project to be submitted in Parts 1 and 2.4- The forms of putting an answer are unclear, although it mentions how to put a percentage and two decimal points.5- Peer assessment take ages and is unnecessary.6- Discussion forums are deserted islands where no professional staff interaction is given.I've stopped continuing this specialization and I strongly recommend others not to waste their time on it.",1
22505,Badly formulated alternatives in the multiple choice test,1
22573,Not at all what I expeted,1
22585,"Answers to week 2 are wrong, no forum to discuss it, submitted a case over a month ago - still no reply.",1
22586,"There's no way to get help in this course. I'm stuck on one of the quizzes -- probably just something easy that I've mis-read-- but there's no way to ask questions, so there's no way for me to complete the quiz. This is very frustrating!",1
22621,"I didn't think it was possible to dislike finance more after taking a course designed for non-financial professionals. Clearly, I should have known more about finances before taking this class, and perhaps I would have liked it more. However, I left the course feeling more frustrated than ever.",1
22795,For me it was boring and too specific. I had a great difficult in understanding it....I quitted before ending.,1
22857,Superficial and not well presented.,1
22896,This course and material does not articulate the 'Google Cloud Platform' offerings. Maybe Google does not want to compete with Microsoft Azure and AWS alike. If Google itself has approved this 'Google Cloud Platform' trainings on Coursera then vola I am out. I am way better off supporting AWS and Azure (at least they have tons of good trainings and stuff to keep folks in the field excited).,1
22900,The labs in this course have fundamental flaws which mean they cannot be completed. This is a major failing in a paid course such as this.,1
22950,"Not being allowed to submit quizzes without paying for the course - I am withdrawing from the course and any other Coursera courses where this is the policy - I will enrol in other free online course sites where the are ""free"".",1
22952,"The only option I had was to watch videos, I could not submit quizzes, which I completed, unless I paid.What's even the point of having this course as part of Coursera?Very disappointed. Shame on the University of Maryland, College Park. Will stay away from this school.",1
23102,This course should really be called BASICS of healthy cooking or for people with unhealthy habits. It is very basic! And very based on the US reality! Living in Europe and used to cooking healthy food for my family everyday I have not learned anything new! Very disappointing to see such a basic course being offered by big names as Stanford University.,1
23183,I was expecting much more from a Stanford or Coursera course. Lack of scientific evidence .Processed foods have become an easy villain among many people and the idea that processed foods are dangerous to our health and the responsible for all our problems is a mistake. Very disappointing.,1
23222,"Well, this course definetely has a clear message and a good purpose. However, it is very basic and coursera might not the right platform.",1
23231,This has ruined my life.,1
23343,"I am disappointed, from a place like Stanford I was expecting a real course in nutrition.This course doesn't teach anything. It's a mere half an hour a week of advice we should all already know, if we are interested in nutrition.I am quitting this course, unfortunately it's a waste of time.",1
23516,Typically aimed at the US lifestyle,1
23580,"Not about the actual effect of food on your health, it's just a cookbook.",1
23590,"Utterly disappointing. I hoped for a fact-based education on current scientific thinking in nutrition. Instead, this course consists of a couple of people's opinions on eating, without cited evidence, presented in a feel-good documentary-lite format with good camerawork and cute children. This is a high school public service announcement, not a university course; not what I'd expect from Stanford or Coursera.",1
23618,"It is very basic and the principles are for a third-grader. After all the things said, at the end the first video was about pancakes (nvm they were gluten free)",1
23754,This is not a course - this is a 90 minutes lecture.The idea is greate. But this lecture is only start. Its very brief and not profound.This more advices and not scientifically oriented.,1
23867,"Hi,I was looking for a good introduction course to food and nutrition and, alas, this is not it.I knew 90% of the things discussed in this course, and I was expecting more, but all I got was very basic advices (""eat less"", ""don't eat crap"", etc.), all with videoclips and music which got annoying really quick.Disappointing.Take care.",1
23869,"Most of the information in this course is common sense. It may be relevant for someone with very limited knowledge about food, but for anyone who is moderately informed and interested in food, there is not much to learn here.",1
23919,"The final assignment is impossible to finish since I have 10.4 version in my computer. You, as the course provider, should modify the assignment instead of asking the student to make changes. The point is that we are trying to gain some knowledge, not wasting time on solving those bugs.",1
23980,"I am very unhappy about the Course Certificate for the following reasons : it doesn't state what subjects have been covered, it doesn't mention the hours of study involved. The certificate has a worthless appearance. In comparison I had a very good MOOC Statement of Accomplishment from the university EPFL which I can send to you if you are interested in making any improvements. [email protected]",1
24000,"This course is extremely hard to follow, not because of the content but because of the delivery. Presentation, ""visuals"", word choice, speed, all very poor. I'm in week 3 and EVERY video has been just as difficult to follow.Quizzes are hard to understand and ask you about things that weren't of any actual value to the course, and/or weren't even covered. Also, because multiple answers are required for each question, you are basically answering a 4 part question that is only worth 1 point. Get one part wrong and you miss the whole 1 point.",1
24008,"AWFUL monotonous way of talking. I have such a great interest in this topic, but listening to her makes me want to rip my eyeballs out.",1
24042,The educator is really wants to be boring. The questions doesn't reflect the material. Why am I learning so much about a dog or who is whose relative in a bioelectricity course?,1
24091,exam questions are designed for raw facts instead of critical thinking and resoning. Sorry maybe its my poor english. Regards.,1
24139,"I really like the lectures of this course. But on the other hand this programming assignments are...I am not able to see why using such a complicated main code template is useful to understand the principals of the finite element method. I spend 5 hours for trying to install all the libraries and finding the correct header files of deal.II and this visualization thing which is needed in the write_output.h file). Because otherwise you will not be able to compile the code. This is not the first time I did installation of complicated code in unix and I know by heart this can be cumbersome sometimes.But why doing this for a simple programming assignment. I started this course because I want to learn about finite element method and not how to install deal.II software. But exactly installing is what the first assignment is about it is not about coding what will be only a small fraction of the whole assignment then.And the next thing is there is not only one person facing this troubles there are quite a lot if you look in the discussion forums.On the other hand if there would be sufficient help given for the installation it would be fine, but it is not.The only help which is given are sending some links which is nice. But links I can also watch by myself.So I really liked this course and found it interesting ( or I still find it interesting ), but I don't see what learn effect I should have from messing around with those deal.II libraries.",1
24145,Very weak presentation. Must be improved to keep attention.,1
24152,"Poorly organized course. The lectures seemed to jump around from one point to another. In some cases, way too much detail; in others, not nearly enough.The subtitles have so many errors that they are virtually useless.",1
24155,"Difficult to understand due to her very strong accent and poor audio, meaning I spend 90% of my effort trying to make out what she's saying. As it turns out, all she does is read from the slides! no additional insight, nothing. This makes it boring to hear and she comes across with no personality (although a quick rate-my-professors search tells us a very different story, a real shame since people seem to really like her). At any rate after one week of this course and not seeing any improvement, I've decided to call it quits.",1
24185,Poor English. Unfair assignments ((,1
24187,Only catered to the American healthcare system. This course was not mind numbingly boring as hell,1
24188,"lecturer is very monotone and isn't engaging. Course also focuses a lot on the history when it would be more relevant to look to the future. It is peer graded which is extremely unreasonable, people do not read the submissions fully or fully have the knowledge to be able to grade someone else's work. People also have different standard which causes a large variation in grades. Grading rubric does not include areas for where extra research has been done either",1
24190,Unclear assignments unfit for an international participant base.,1
24198,"the quality of the lecture is poor - slides are dense and full of bullet points which the professor LITERALLY JUST READS OUT on videos. I did a google search, and found almost all of the analytical charts he presented, readily available on the internet. What exactly is the point in the lecture then? Instead, why don't you compress some valuable learning nuggets into half the course time, instead of hearing you ready through your ocean of bullet points, and needlessly underline (in red) the current bullet point your reading. Seriously, this is one the poorest quality lectures I've ever done!The quality of peer assignments to grade are a joke. Classmates are simply copying bits and pieces of the lecture material to make up the 'market sizing memo'.I seriously doubt the learning value in this class, and the quality of instruction.",1
24203,"Unclear, ambiguous direction and material that is unhelpful for building the final project",1
24211,I have submitted all my solution long back but the last submission which was suppose to been by mentor is pending from one and the half months.,1
24276,"As a person who actually studied physics and knows a little about data science, I am literally baffled the way information presented and lectures speak. Really don't recommend this cource at all. because Week 1 materals is a imcomprehenisble mess full of incorrect explanation and vague definitions.",1
24288,"It was not a great course. I found it not very rewarding, because the discussions were hard to follow. Also, it did not present historical literature and research on the subject. I was hoping for peer-reviewed articles and readings that helped illuminate the history and the psychology of education.",1
24304,From the start it seemed politically correct and ideological. Did not even broach the topic until the final week (as far as I can see from the list of videos). Life is too short.,1
24348,"The only reason i passed was because i ignored the lectures and asked others for help, once i did that finance became a lot easier to understand.",1
24367,It's terrible if one wants to accomplish the quiz using Garud Iyengar's Notes!! Examples in his notes were not well explained!!,1
24368,I think that the simply reading slides doesn't help people understand. The idea is to make this courses as accessible as possible.,1
24375,"I think the way it is taught is not very insightful, the lecturers clearly just read a script and make it difficult to follow. They assignment questions are often hard to understand. Most importantly, there is very little about the actual mechanism behind pricing financial instruments, instead they just state the formula.",1
24395,Not at all what I expected--big disappointment,1
24410,"It is not a recommended course, when they explain something they assume that we are expert and we know all what they are talking about, they need to have statistics experts which is not mentioned in course prerequisite.================I recommend to review the material and to review the purpose of this course",1
24427,It is a little sad that the materials taught were not matching test materials well in the quiz.,1
24429,Examples have to be more clear. i cant seem to get anything correct because of computers,1
24445,This course is conducted mostly more or less by reading just the slides.,1
24462,Extraordinarily dry presentation. It was a struggle to sit through each video.,1
24464,"The content of the course looked promising. But then I took a first look: the instructor is reading formulas from a slide. This is missing the whole point of a online class. There is no motivation for the formulars, no context why they are important. And from a learning point of view the course is very hard to follow. No real advantage compared to reading a book on that matter.I just took the ""Economics of Money and Banking course"", which is one of the best courses I ever attended (personally in class or online). There are other great courses on Coursera. And for easy introduction to some of the concepts Khan University courses are unmatched in accessability.Too bad that this course doesn't match up to the above examples. The topics would deserve that they are presented in a way that they can be understood by a wide audience.",1
24472,What a shame. English subtitles were promised and not arranged. I truly wanted to learn this course. Obviously Coursera doesn't care.,1
24473,Lectures are in Hebrew. English subtitles are in Hebrew also. Completely useless unless you understand Hebrew. I am about to drop this class.,1
24480,"Disappointing. Just brushed the surface of most of the topics, felt a bit too much like an ad for PWC or story telling about client engagements. Content was lacking",1
24481,"very little useful information, more like PR for PWC",1
24482,Basically this course was an excellent promotion of PwC as a consultant. A well crafted introduction of buzz-words with very little substance (Unlike the following courses on Excel and presentations),1
24493,Peer Reviewed Assignment not a well planned marking system. Grades can be to vary. Dependent on fellow students for pass not most ideal.,1
24497,very boring lectures. expected a lot more from something like PWC. Doesn't worth it at all. Didn't learn anything new.,1
24572,The reason why I am giving only one star that the course did not covered much information and the time allotted could have been less than 4 weeks. So it was not really worth the money.,1
24877,"Not adapted to an online format. Low quality videos.Interesting topics, but no efficient progression. Many sections become an update about UCSD research, not adapted to the audience.",1
24890,Have to say: this course is not useful,1
24892,I felt the course went far too fast and is definitely NOT a course for beginners. I gave up after the 2nd week and I now feel more than ever overwhelmed by setting my own website.,1
24897,Worst course on coursera.,1
24899,"This course does not live up to the high value that I've come to enjoy and expect at Coursera. The videos are read by the ""teachers"", so the inflections are wrong, making it very hard to follow. The videos are clipped short and cut off the words at the end. The information is given so quickly with terms not explained that a novice will likely not understand parts of it. I found no value here. There are far better tutorials on the web. I can't see how any college or university would respect any certificate from this course.",1
24900,makes it very confusing. I was looking to make a business websites.,1
24901,"The course is very disappointing and useless. The two lecturers are not explaining anything properly, they are just showing slides and handing out links.The only useful part of the course is Module 4, which is outside the scope of the course and taught by guest lecturers.I would not spend time on this course and instead find another source for learning WordPress.",1
24906,"If you have any experience with websites, this course is not for you: it is merely about the soft stuff. Got a couple of nice links to color scheme generator et cetera, but did not deliver what I thought it promised.",1
24910,"The sequence of the learning movie are not good and some times while teaching the the movie is ended.Besides, rather than educational material this course refer to several website.",1
24911,"Very horrible and boring course, poorly designed and the teachers can't even speak properly.",1
24914,They jump around too much and it is very hard to follow. Often I feel like I missed out on content.,1
24915,"I thought you would learn how to actually create a website, not just how to pick and install a premade wordpress theme.",1
24917,Nothing good in this course,1
24918,"I'm sorry to say this is a poor course. The audio is bad, the sound editing is bad, the ""videos"" are mainly static slides that sometimes aren't even showing what the audio is talking about. There are no worked examples or annotated slides. As an example, there's no discussion of the difference between WordPress.org and WordPress.com. The only time that is mentioned is when they touch on plugins, where they say you can't use them if you started with WordPress.com! The additional lectures by guest website designers were the most interesting part, but they were supposed to be after the final project. I just gave up after less than an hour and went and played with WordPress myself. Created a website in 2 days, but with no help from this course.",1
24919,"Despite all the bad reviews this course got I told myself to give it a try to refresh my antic prior knowledge and since it is for my personal usage and not a career I m not interested in a certificate. So I went through all the open sites which were extremely disappointing. Since I was warned by the reviews, I was not even tempted to pay to unlock further pages. I attended many interesting courses on Coursera, but this one is simply a waste of time from the very first moment.",1
24920,No content for the first two weeks. Only links to websites.,1
24922,"If I could give this course a lower score, I would. It was not helpful at all. I ended up having to take another course so I could actually complete my website.",1
24924,"This was the most poorly designed course that I have ever encountered. Whoever is in control of quality assurance was caught napping on this one - the instructors were woeful! It was as if the principles of instructional design and adult learning were abandoned entirely; there was minimal instruction and I had to rely on my intuition and the assistance of a study buddy to work hard to complete the course. If you are completely new to website design (as I was), prepare for a steep learning curve as you will be spending many hours preparing and organising your info - the title is deceptive and misleading!Ann, Melbourne, Australia April 2016.",1
24926,cheap !!! just money involved in each subsectionswhich r the most interesting parts,1
24930,"This is a bait and switch. You must purchase the course even though parts are free, it's really not.",1
24933,No use at all,1
24934,"This course should be called ""Intro to fundamentals of website design"". You may learn, in the process of a few days, how to create a website, but not ""how to create a website in a weekend"".",1
24935,The most boring course ever. I just couldn't go beyond the first day,1
24939,I was very disappointed because in order for me to move to the next module I have to pay to unlock some of the course materials. Coursera is changing. I understand that in order to maintain such a big structure is expensive; however it wasn't clear to me from the beginning that I have to pay to unlock the 2nd module courses.,1
24941,"Sorry to say that this is the worst Coursera Course I have ever taken, and I've taken quite a few. The instructors did not do a good job at explaining how to use Wordpress. They didn't explain how to use wordpress to make a website that looked more like a website than a blog. They didn't explain the difference between wordpress.com and wordpress.org even though they mentioned them both. They talked about hosting but didn't explain how to do it. They mentioned hosting on bluehost but didn't give any instructions. The few tidbits of information that they did give about using wordpress were so brief with no examples. They mentioned Jetpack but didn't say what it was. They didn't explain what benefit adding the social media icons would have or how to link them. And on I could go.The only good part about this course was the last section where they had guest lecturers, some from Coursera - those were all excellent.",1
24944,"I can't believe this course is aimed at people with no experience in building a website. The videos are actually slide shows and use too few screenshots. Had this been my very first introduction to how a website was built I would never have progressed any further than these lessons. Much more in-depth information is necessary, including step by step screenshots of various processes.Terrible course.",1
25043,"Feels like a money grabber rather than teaching anything useful, when designing character for video games is also important the skill you have or obtain while doing it and this doesn't place any emphasis into it. So for the price the charge in the certificate it really feels like a money grabber rather than teaching anything useful at all. Other schools like Gnomon WorkShop and DVDs like ""Eat3D"" and many others out there, which gives e more content for a fraction of the price they charging here! It needs to be deeper and more robust if this course wants to stand out, right now is not.",1
25082,"Awful course. The lectures IN NO WAY prepare you for the final assignment which is supposed to take two hours. The ""course"" consists of really boring videos of the instructor using Galaxy and in no way teaches you anything about using Galaxy or how it works. The lectures and quizzes are a joke. You can pass the quizzes just by watching the videos. I got to the final assignment and had no clue what to do if you. I know nothing about bioinformatics, or NGS (which is why I took and paid for this stupid course) so I spent WEEKS on the final assignment and I STILL could not finish or pass the course. Whoever allows this course to still exist and waste people's time and take their money should be ASHAMED of themselves. Read the discussion forums and you'll see what I'm talking abut. DO NOT TAKE THIS COURSE.",1
25086,This course is really bad. I didnt understood anything until by myself and with tutorials I could do it.,1
25088,"Very bad explanations. You don't understand anything about what you're doing, just pressing buttons. THis should maybe go after the command line course, so that at least you would have any idea of what you're doing.",1
25089,Very poor presentation and content. Difficult to navigate and all the links used including that for Galaxy are outdated. There was no effort made to provide a method to get through the course given all the changes since the videos were recorded. This course is the reason I have decided not to pursue the specialization it falls under.,1
25095,"Save your money and just work through the free Galaxy 101 tutorials on the Galaxy site! I found that the lecturers sometimes used random terminology without ever explaining it (for example, ""tags"" is another word for sequencing reads, but this is only ever used in RNA-seq methodology, and then only rarely). Also, the final peer reviewed project isn't explained very well and uses tools and methods that aren't even within the scope of the module. Mostly just a waste of time.",1
25096,"The material/information required for the capstone was not covered in the lectures and required considerable additional time and effort to find via online forums and the galaxy pages themselves. A manual of code examples and types of jobs would have been great. Further a better use of time would be to start doing the capstone on day 1 and do all of the lectures and quizzes later as the quizzes were very easy and anecdotal, but the capstone required more time then scheduled in the course.",1
25103,This course doesn't teach much beyond how to use Galaxy tools.,1
25104,"I suggest to do this course ONLY if you're doing whole specialization.Course is simply bad, teacher doesn't give to much information and project is very hard to finish.",1
25107,"This course is supposed to be part of specialization. Unfortunately this is a second course, and the first part doesn't provide necessary information on what we actually do with Galaxy. It felt like following instructions to push certain buttons.I would only recommend it to knowledgeable people with certain background, that should be listed as a REQUIRED knowledge. I hardly learned anything, except for that there is something called Galaxy, we do some analysis by pushing buttons, using preconfigured tools. I don't have expertise to analyse data on my own... unfortunately.As I applied for a financial help here, I won't complain much :).",1
25109,"This class presents very elementary information in the video lectures, then it requires knowledge far beyond what is taught in the course to finish the final project.",1
25111,"Course assignment requires knowledge that is not discussed in the course. Various inconsistencies throughout the course. Week 4's material is not really helpful and I had a feeling that the instructior just wanted to ""wrap up"" the course and didn't really care if the material is appropriate. Poorly written quizzes.",1
25113,"First, the instructor assumes that the students know so much background knowledge when the students are expecting to learn these stuff in the course. I also feel that this course teaches students to memorize steps needed to accomplish certain operations in Galaxy without explaining why it occurs.",1
25119,"This course did not make any effort until I had to dig deep into biology by myself. The course content is insufficient. I think if a sample input was used and every field of the input were explained and also the outputs were explained then it would make much more sense. Poorly designed and demonstrated. Thankfully I started the last assignment very quickly, it took me 10 days to understand how to proceed with the assignment. The TA is excellent, without his help I wouldn't pass this course.",1
25120,"This course's content is useful but honestly the final project is ridiculous because it is peer reviewed and the project is not very straightforward. Everyone gets different answers and without an answer key, no one knows what is right and wrong making it is almost impossible to pass. This needs to change.",1
25122,Course Project is way outside of what was taught in class.,1
25124,"Good introduction to the galaxy tool. However, the final project was too difficult for what was given in the lectures. I spent 97% of the time I spent on the course doing only the final project. It was too difficult and unfair. I think a way to improve the final project might be to make easier a little bit and give exclusive lectures to help students to do the final project.",1
25125,"The cloud computing service with amazon described in the course is not free anymore. I was charged money for using it. The course also took much more time to complete than I wanted to spend. I believe a better design of the project could lead to a more efficient, less frustrating learning experience. Details below.The usegalaxy server was extremely slow. As shown in the course, I installed an instance of galaxy in the AWS/Amazon Cloud. I was under the impression that this was a free service for the first year. Amazon has changed its interfaces and I could not do the installation as recommended. But I managed to run a few analyses with some workarounds. I did not explicitely terminated the galaxy instance for ~ 6 days. Charges of $280 accumulated.The course project in week 4 was far beyond what was covered in the lectures. It took me a whole week, spending multiple hours every day. Many dead-end roads coupled with extremely long run times on the galaxy servers resulted in very inefficient learning and many frustrations. Help via the discussion forum was critical to design an analysis pipeline - so thank you Dejan and all contributors for the support.This is not a course I could easily do part-time: I don’t have time to read the fine print on what is available for free on Amazon, nor do I have time to go through all of the tools on galaxy to find out what would be the best for my analysis.On the positive side: I think Galaxy is a great tool.",1
25132,"This course was very disappointing and much of the content in the tests and course did not show up in the course project. I felt like the course project was far more advanced than all the other detail. In addition, there was minimal to NO detail on instruction. VERY poor development here and I would not recommend it to anyone. All you need to do is look at all the threads of complaints. I am looking forward to the next Python course and h",1
25133,It gives a quick background on Galaxy and its softwares. Content is appropriate but does not prepare you for even the final assignment or real genomic problems.,1
25135,"Quite confused during the majority of this course, especially after how clear the first course was. Was able to follow instructions but did not fully understand why I was doing anything. Not enough foundation given. The final project came out of no where. We did not learn nearly enough in the course to be able to tackle that. The majority of steps that needed to be taken were not taught in class or if they were, they were glossed over. I was floored by how the class went form simple to extremely complicated with no transition phase.",1
25160,We are expected to complete a quiz for which we can submit responses only when we purchase the course. What Bullshit!!,1
25191,Course is very high level and teacher inspiring. As I highlighted already it took me 8 hours with a professional to install Pentaho... for what? to explain pivot tables totals. that is very unecessary. Also from Europe virtual machine use is just killing my computer and I end up spending more time crashing and restarting my pc than working on the course. (and I am surrounded by IT professionals in my company for reference). This is sadly a big let down for an excellent course theory wise.,1
25222,"Awful. Just awful. There are dozens of students trying to install Pentaho and failing. Only reason I managed is that I have prior experience with the software. There are no TAs, no help, nothing. The Quiz is a scam designed to force you to shell out even more money of the so-called-optional textbook, and the assignments are extremely vague and orders of magnitude beyond the laughable 30 minutes the instructor suggested they should take. My submissions for week 3 total over 30 pages -- and I work a full time job... Avoid this class, do not reward terrible courses with your cash.",1
25372,"This is a course almost without any content. You coul pick any book about game design and you will learn more of game design in the first ten pages. I recommend Level up! by Scott Rogers for begginers like me. You could be fooled by this course if you dont know the principles of design and narrative structure, but if you know it you will not find anything of value here, becouse dont explain almost anything about videogame concepts like gameplay, balace, GAME DESIGN, etc. They explain very basics things in the first course and then they forget everything. The rest of the information are very very basic knowledge about character and world design, without being vinculated through metodologies to the games!, only with empty words of inspiration recorded in useles videos. Sorry the critics, but i followed all the courses and paid the monoey for the certificate, hoping that some week the course could show somethign usefull. Never did. See for books if you want to learn something.",1
25381,Hopeless ! Less clear and understandable than simply reading a textbook.A waste of time.,1
25435,I think that is a poor course; a lot of much theory and little practice; is better read a book and see youtube. It doesn't meet my expectations.,1
25446,"Simple & Clear , Handsome teacher!",1
25450,"This course wasn't good. Many of the assignment instructions and questions were poorly written, and students clearly had trouble understanding what was asked of them. The assignments also weren't very deep or imaginative, and some of them requested very specific answers relying in keywords from the lectures rather than ensuring that the students had really understood the concepts. The design principles were introduced at such a surface level as to be just silly rather than useful. This was kind of a waste of my time.",1
25454,"Interesting topic, however I quitted. Video lectures were recorded almost phrase by phrase, making it too hard to follow the contents properly",1
25483,"The quiz feedbacks are empty, this is not good.",1
25492,"Hard to follow, ideas are not organized and are not well presented. Lecturer has many pauses, that even on increased playback speed (x1.25), are still distracting. Do not recommend!",1
25512,Don`t put your irrelevant politics in games,1
25520,"That person should not teach. Nobody. The person is not able to construct a sentence without denial and course has really little information, but lots of empty talking.",1
25556,"After the excellent first course in the specialisation, this was quite a disappointment.I realise that the subject matter in this course will inevitably involve abstract concepts and subjective opinions, but I didn't really 'get' the way that Casey was presenting the subject given that there were quizzes and assignments to follow.That's not to say that the videos aren't interesting. But, given their rambling style, they would be much more useful as reference material rather than driving the course, in my opinion.Many of the questions in the quizzes felt like they'd been added simply to make them up to the correct number. Some were so loose that you could write any answer and I'm sure you'd get a mark!Also, I'd say not to even start this course unless you have a clear idea for a game. The assignments require you to produce design documents that are tedious, going on impossible, to write without some firm rooted idea to start from.Maybe if you really want to be a game designer then this will be the course for you. If you are doing the course out of curiosity, for fun, or to learn how to control Unity, I'd give it a miss.",1
25598,"Not very informative content, some parts are interesting but not worth the money.The worst thing is, all assignments are writting work that are evaluated by colleagues, meaning, it is purely objective, to the extent that one question asks if my uploaded file is in a readable format, example pdf, txt...etc and two out of three marking my pdf file as not!!! and not even leaving a comment why they are giving that bad score on obvious things!",1
25620,"One of the worst courses that I have taken in coursera.The videos feel unstructured without preparation and boring.The quizes are subjective. You can pass all of then without watching a single video or lecture.The assignments are interesting but the way of grading them are bad designed and subjective.Sad, I passed this course without trouble but made me stop wanting to get the full specialization.Spartans! Review the course or better close it. Its a shame.",1
25622,"I didn't like the class despite getting 100% on pretty much every assignment. I learned very little from the class. I don't think 99% of what was in the class was useful to me at all. The grading for the class had ludonarrative dissonance with the quizzes. The projects were graded by peers, but the rubric was nonsensical. 1-5 scale for submitting a PDF, for example. So, someone might give you a 1 for submitting the PDF and thus you wouldn't get a full-score. It was just idiotic.",1
25698,You cannot even complete the first quiz before they demand your :P,1
25713,No allow to submit quiz,1
25743,Hands-on instructions and a very practical knowledge. Thanks!,1
25861,Teacher is boring. just learned programming from kahn academy and the teacher was excited to teach. this guy though.....PUT A LITTLE EFFORT IN!,1
26084,followed instructions to download twice waste of time both times still kept getting an error never got past this to continue with the course so didn't learn anything other than there is little support out there to resolve the problem i think because the course is not monitored or if it is well then more fool me! it would have been a good opportunity to explore this had it been possible to download Unity oh well those who can do those who can't resume their day to day life packing boxes.,1
26213,This course and material does not articulate the 'Google Cloud Platform' offerings. Maybe Google does not want to compete with Microsoft Azure and AWS alike. If Google itself has approved this 'Google Cloud Platform' trainings on Coursera then vola I am out. I am way better off supporting AWS and Azure (at least they have tons of good trainings and stuff to keep folks in the field excited).,1
26235,Translation from English only on the first slides. I thought it at all lectures. Spent a lot of time beginning to study.,1
26273,"If you don't want to actually learn what anything means and just get walked through steps on how to do things then take this course. But if you're a beginner to HTML, CSS, and Java Script, this isn't for you. He doesn't actually TEACH you anything, he just takes you through the process. They haven't updated the course content to actually match what is on GitHub's page, so from the start you have to go into the FAQs to figure out where to go from there. It's really frustrating because he will just skip steps, and because he doesn't explain WHY he's doing something, if you miss a step, you get completely lost. I've taken a few coursera courses, and this was the most frustrating course I have taken.",1
26551,"This course is actual for Mac machine, all instruction are for Mac only. I use Windows so it unuseful for me.",1
26586,I found there was too much information given in the course lectures without enough practice to learn bit by bit to really understand what I was learning.,1
26722,"doesn't have to be that complicated with command prompt actions from the beginning of the course, that make the motivation drop very fast.",1
27146,"I didnt like this course. I found it to be confusing. Compared to other CSS JS HTML Courses such as the one from Michigan or Hong Kong Universities which are quite clear and crispt and refreshing, this seems like a work in progress. Confusing, convoluted, odd.HTML CSS JS Are Actually not very difficult.This course makes u question your own name. Makes you think basic math is Calculus. It needs work. Lots and Lots of work. I cant recommend it to anyone who is serious about learning JS HTML or CSS. It accomplishes the exact opposite.With regards to that Chinese Restaurant field trip. What the hell man? Is this a joke? Have the lady call 1800 Web . Com and have a cookie cutter just add water web site. This segment is silly.The rest of the segments? Confusing.",1
27239,There is too much talk about climate change.,1
27327,"This course was extremely time consuming because a great deal of effort was required to translate it into something I could use. I had a great deal of trouble with following the lecture videos. The demonstrations of the tools were typed on a screen that was too small and the command line tools were executed so quickly that it's hard to see where the screen full of data came from. The lecturer had such poor pronunciation that lectures' transcripts show that the voice recognition software could not understand and transcribe a lot of her words. For example, ""command"" sounded like ""comment"" and likewise was transcribed that way. More seriously, it was hard to hear the difference between ""VCF"" and ""BCF"".",1
27331,"This is the worst course I've ever listened, and I've listened my fair share of online courses! Do this course ONLY if you want to complete whole specialization!Professor is simply awful, English is not her native language obviously, but even that is not the problem, she simply speaks sentences that doesn't make sense at all! And she obviously doesn't have computer science background, if she does then she is even worse then I thought.",1
27344,"The worst course I've ever take in Coursera. I can pass the course all because I have some background of this topic. The lecture taught me NOTHING!Consider I just finish the previous course ""algorithm for DNA sequencing"" which might be the best course I toke in the Coursera, this course makes me very disappointed! If the previous course gives me the faith to continue learning something in Coursera, this course must be the reason that let me leave the Coursera left.I can't even understand why there are some guys give this course 5 stars. If there is -5 stars option, I'll put this score in front of the lecturer and tell her WHAT A BAD COURSE her give us.",1
27354,Very bad or non-existent support,1
27369,"I requested for a refund and I did not receive it. I guess I won't get it until about 2 weeks. I want a refund because it's too easy, this is stuff I learned in freshman biology. It's nice that it offers resources and links however, I wanted to take a course and get a certificate in one at my level to prove that I can learn beyond a high school biology level. And the course says it's for educators but it doesn't go into much detail on how to actually teach the information. I guess this is good if you want to be a substitute at a middle school or high school, but it's not for me. I was looking for something that was more so at a college level. Also on the important information, they sort of skim over sometimes. I'm 19, I'm not in school because I don't want to waste thousands of dollars on stuff that's elementary so I don't think I could get any special benefits and get courses for free, but that's also the reason why I'm on here, but I'm disappointed to have wasted 50 dollars if they aren't going to refund me. I can barely afford 50 dollars, I'm unemployed and no one will hire. I wanted to take a course in something that would at least get me some kind of job or volunteer work within my field of interest. Seriously, not even these minimum wage jobs will hire you if you didn't go or aren't going to college. Just wanted to feel like I accomplished something suited to my level.",1
27416,Another approach but mathematical demonstration is probably possible.Coursera offer technologies to avoid classroom demos on whiteboard.,1
27524,"No clear explain about which is the right dataset to be downloaded, no support from instructors about that on discussion forum.",1
27552,did not learn anything useful at all.,1
27711,too easy,1
27766,"I would not recommend this one to any paying customer. This is the second intro to Graphic Design class I have take on Coursera, and I found the way the material was presented in the CalArts course to be quite slow and pretty boring. Our assignments were simple and I felt no excitement in doing them. It would have been beneficial to see how these fundamental building blocks could be used in real life design. The other class (by CU-Boulder) made me want to continue learning ,and I felt excited to complete the projects whereas with this class I was forcing myself to sit down to finish just the required ones.",1
27965,"i hate to say it, but this course is really really bad ... not practical at all. i'm not sure where this is all going. maybe by the fourth course in the series, 100 hours later of lectures, you might have something practical but this approach feels wrong. i'm sorry, it's a reputable school and who the hell am I, but one man's opinion: rethink how you go about introducing the newbie to graphic design as it's applicable to the real world.",1
28423,"I was led to believe that I would be learning the fundamentals of graphic design, which to me means learning how to use Photoshop, InDesign, etc. This is more about learning how to create art in general, not exactly what I'm looking for.",1
28439,pathetic,1
28466,"A disorganized mess. Got no acknowledgement that i was turning in assignments. My peer-review assignment for week 1 was done the first week was never peered, reviewed, or peer-reviewed. Completed three weeks, all assignments exactly as instructed. God only knows if anything has been received or credited. I hate myself for getting suckered into this awful thing. Bye Coursera.",1
28469,This course is based on personal anecdotes and not facts. Many of the examples provided have been proven to be farces and/or practical jokes.,1
28625,Too much peer and dealing with others--not making me happy at all,1
28632,Boring,1
28665,"What makes this course useful are the exercises so unless you are paying, don't bother, and it's not really worth paying for as it's just a synopsis of stuff you easily find on youtube.",1
28744,The course modules are too long and at times what the speaker wants to share gets confusing,1
28856,"Lecture uses ""you know"" so much, that I couldn't hear enything else.",1
28864,"Way too many weekly lectures, way too many. In addition to that, lots of the lectures were too long and sometimes even meaningless. It was impossible to follow through.",1
28916,"ridiculous , unscientific 'self-helpie"", far below of even talk-show standards. It gives bad reputation to any business school that endorses such ""course"".""",1
28958,Great and very informa,1
29034,Instead of These Classes Spiritual Classes will be good ...,1
29146,A waste of time. One long advertisement for the instructor's book.,1
29202,"If you didn't like the first few lectures, you won't like the rest. It won't get better. More repetition, clichés, and advertisement that anything else.",1
29246,"*No Stars*Okay.... this class is very pointless. It is super boring and gives me little information. He says that you do not need to buy his book or visit his suggested website, however that is all he talks about.At least the tests are not focused on that, its mostly on vague points he explains. I would not recommend this class.",1
29260,"The guy is full of shit. He's just trying to sell you his book and his online game product. He was also obsessed with bragging about all of his accomplishments. I was quite disgusted by him at the end. I paid for the certification, but now I want my money back.",1
29276,Not learning much and constantly being bombarded with sales tactics. Not impressed.,1
29283,"I was really disappointed in this ""course"" for several reasons. I did not complete it, because it was really not worth spending time on. The organizer impressed me as only wanting to sell copies of his book on dog behavior and used the course as his vehicle. Then there were games to ""purchase"" online to facilitate teaching my dog cognitive skills. The videos were lacking in creativity. I was really disappointed with this, especially since its a cool topic that could easily be presented in a very exciting way. The artistic level, the videos, slides, etc were something a high school student could pull together. After taking solid courses like ModPo and Positive Psychology, I was amazed at the lack of effort that was put into this.",1
29287,This was a giant advertisement and got tiresome very quickly.,1
29298,"The lecturer was an annoying speaker and very repetitive. I just couldn't listen to him... I'm sorry. There was also so much about human development etc that I started to wonder when the info about dogs would start....I found the formatting so different from other courses I've taken, that it was hard to get started and figure things out. Adding to that, was the constant interruption of the ""paid certificate"" page. If I answer ""no"" once, please leave me alone! I also think it's a bit suspect for a prof to be plugging his own book for one of these courses.",1
29321,"I have fallen asleep during 3/4th week, and it have never happened to my during any of the Coursera courses... I'm sorry, but it completely failed my expectations. 3 weeks out of 7 gone, and I have learnt absolutely nothing about dogs. Yes, I got some psychological basis, but that's not what I looked for/ The lecturer politely suggests to buy his book ... well if it is the same quality as the presented course, than it's useless...",1
29323,I just do not feel a connection with this professor - he is constantly plugging his book and the website. The content is just not engaging.,1
29382,Not much here,1
29383,"A waste of money. Only $50, but it was so terrible I did not even want to finish it. And apparently I waited too long to get a refund as well. Never again.",1
29421,Mostly just an ad for the instructor's startup. Very annoying.,1
29428,"This is basically just one giant commercial for the web site. A whole lot of talk, but not a lot of information. I was going to finish the course anyway, to pick up what is in there, but I just cannot stand any more plugs. Very disappointed.",1
29436,"In my opinion:The topics reviewed were too haphazardly selected.The citations for quoted research were hard to impossible to find,The course focused disproportionately on the lecturer's commercial ventures.",1
29498,"Duke.... Coursera... guys, come on! I'd like to contrast this with the Wharton Business Analytics specialization that I'm completing. It was like night and day. I mean, professors in that course are presenting their own research! Cade Massey presents research he did with Dick Thaler! None of that happens here. The information shared doesn't even flow smoothly.This course relies mainly on PDF slides (if I wanted to read, I would've bought a book). At one point, it even links to 6 articles on another website (and that's in the quiz as well). It seems like very little effort was put into this online class by the professors. The slides themselves seemed scatter-brained, several times asking questions that are never even answered. It was almost as if someone took already prepared slides from a course and just kind of mashed them with a very little bit of video to make an ""online"" course. Even the answers to quizzes seemed extremely vague (it often felt like there were several right answers... or none -- to me, this is sloppy quiz writing).I honestly expected better from both Coursera and Duke! The only redeeming part about this course is that behavioral economics is honestly compelling, despite the shortcomings pointed out.",1
29508,This course had almost no lectures. It was almost all done in downloadable PDF's that were rarely discussed in the lectures. I never learned why anything happened.,1
29511,"The video lectures are not adequate, too much self-study effort is needed to have a good understanding of the subject. The time allocated for this topic is not enough.",1
29513,The course is very light on substance. There are significantly better courses and books available on the same subject matter. I definitely would not recommend this course.,1
29630,"Very general, and knowledge you could easily acquire from the web. The only difference is the presentation of the information is stretched over an hour worth of video. The most useful part of this course however is the walk-through examples provided.",1
29655,bad for the projects,1
29667,"Totally disorganized, mis-managed, unfairly graded course!",1
29713,"Didn't learn much of anything at all, the peer review system is lazy on the Teacher's part, and half of my classmates couldn't even speak proper English, let alone write it.",1
29746,"Perhaps this class would be good for a non - native english speaker. I went through the first, maybe, five videos. From what I could tell, I learned all of the stuff in this class by the age of 10. If this class is for people who english is a second language, it should be more obviose.",1
29875,Not worth it,1
29949,"Its a hard course, and u may only take the quizzes twice every week.",1
29984,"The course is out of touch with reality and systematically underplays the Paris Agreement, progress of renewable energy and EU emissions mitigation, says absolutely nothing about climate science. At times the attitude is down right hostile and disgusting. Will share these observations widely. We are in a climate emergency and need to do everything we can. When I was taking this course, my city is going through severe flooding and the country is in yellow alert stage due to abnormal thunder storms. You should be ashamed of yourself for pushing this garbage.",1
29992,"Course has not been updated. Wrong answers in quiz (eg week 3 quiz on progressivity), videos getting blocked at review question point, etc. I am checking out.",1
30224,"the peer grading system is poor, considering that they are learning just like us.the grading should be done automatically or by a professional .",1
30254,Really disappointed you have to pay to be able to do the quizzes. I thought the whole point of Coursera is to enhance our skills for free and chose to pay for a certificate if we wanted to.,1
30343,"You should tell people before they enroll that, to take the quizzes, they must pay. It was a waste of time...",1
30408,"The course is great, but I am very disappointed that after spend 3 hours watching the videos and practicing, I can only submit my answer if I upgrade. This should be said before I enrolled in this course.",1
30411,material was good but it doesn't tell you to pay for the course until you take the quiz,1
30490,"A very weak course, gives very little knowledge of grammar, doesn't really explain quite a lot of things. If you are a first year primary school student, this course might be helpful, otherwise a complete waste of time.",1
30491,"This course only works if u pay, which is shit coz most people dont have money...",1
30563,"Course could have earn my stars.Money, money, money is not the way to go.",1
30571,"i dont know why, but it's so frustrating that i have problem with this course. i can't start every quiz in week 4.",1
31110,It most be more effective,1
31192,"Although the course was very useful, I couldn't complete the course due to an assignment. The assignment is very unrealistic and the graders don't give any feedback!! The assignment is open ended question and not difficult but took significant time, when I submit I was unable to pass.",1
31294,Pretty basic stuff.,1
31331,low-level content for people with no teaching background,1
31442,"I would not refer anyone to this course. Although the content is well done, the tech piece of the course is sooooooo frustrating. At one point during the course I kept rating and rating my peersʻ assignments and the system would not accept it. I later found out there was some kind of tech issue. There was NO communication from Coursera whatsoever regarding this--no email, nothing to me or the class as a whole. So, we just had to keep checking and submitting ratings to see if it would finally be accepted. I find this bizarre, to say the least. Now, I am in the third course and the SAME thing is happening! I work full time, have a second job, go to school, raise two boys as a single parent and time is of the essence for me! I do not have time to waste! I keep wasting my time with tech issues. That is so disturbing. Somehow or another we should be kept abreast of tech platform problems. This is crazy.",1
31555,"Content is too basic, seems unresearched. Instructor is distracting in manner in which he presents information - overemphasizes acting over content.",1
31782,"This course has great videos. I give it such a low rating to get your attention and point out some serious problems. This is a certification course in how to teach English as a second language. What was not apparent to me though is that you have to take 2 parts of the specialization before getting certified and it will take over a year! Also, there is close to no teacher participation in the module I took and there are no mentors or student teachers (that might change in future classes I would hope, but no guarantees) and there was close to zero feedback of my work or even in the discussion area and no authoritative feedback. Even the peer reviews require your classmates ONLY to judge you based on whether you actually tried to answer the question, if it was between one and three paragraphs and one other silly thing that I can't even remember now. No one is required to give actual feedback and a lot of the assignments were written by students in horrendous English, but that is not to be considered. With so many people taking this course for whom English is not a first language, even these very simple instructions were often misunderstood and people had problems with getting credit for their assignments. Also, even though the videos are really well-done, they are short and contain little information for the price. I figured that I was paying about $50 an hour for the lectures at regular speed. There are also little to no resource links etc. for further study so the lectures are pretty much the only thing you get. If you are a native English speaker who doesn't mind spending an entire year and the cost for well-done videos on the subject is not important, then this course if for you. If however you think this is going to cost only $200 and you would have interaction with teachers and you would get a certification in about half a year... I want to make sure you realize, that is NOT what this specialization is! If you are NOT a native English speaker, this course is designed well I think for people who do not speak English as a native language, who might even have a low level of English, yet who are teaching English already in foreign countries and would have difficulty acquiring certification any other way and therefore don't mind taking a full year to complete the course or the price and for whom not having someone give them feedback would be considered an asset. I have recommended it to friends who are not native speakers of English, but as a native speaker I found it slow, expensive and the assignments to be actually annoying. It's perfect though for my foreigner friends... as long as they understand it's real length and cost! THE CERTIFICATION WILL TAKE OVER A YEAR AND COST AROUND $400.",1
31925,Very bogus and boring content. The monotonous voice gets me!,1
31945,"This was more objective than I thought. Nevertheless, the information about the Zionism, refute itself and make us criticize about the dangerous notion.",1
32059,I don't know what is the problem as I study the videos well and when it come to taking quiz i never pass so I watch the videos over and aver again but it always the same resultthe part of other languages I'm not sure what is the point of it I mean does it help in English to know how to say for example hi in other languages plz if anyone passed the course . could u plz help me,1
32064,"To difficult to enjoy, unfortunately.",1
32120,"This course is not so good. A lot of things are just come from the instructor's head without correcting reference from high quality literature. He can say whatever he think is right. But I would not say all animals do not have complex language systems, or we have one single origin of language. I would also suggest the instructor to interview more world-famous linguists, not just play simple ask and answer with his students.The examples of different languages in the later weeks are interesting. But somehow I expect some better understanding of more aspects of languages. In general I would say it still has so much space for improvement. I would not recommend anyone to spend time on learning this course.",1
32144,"I do not like this course. There are far too many prejudicial ideas - even in the first unit. A language does not have to be used by a single / unified group to define it as a language. Esperanto is a perfectly valid language, fully capable of expression, and does not belong to a single / unified group. There are no native speakers, either - which does not rob it of the fact that there are winners of the Nobel Prize for literature who write in it. The things you are saying about language are not merely willfully ignorant, they are highly offensive & prejudicial. I cannot conscience supporting a course like this.",1
32148,It's a very dry course. The material is very limited and the coverage has to be more lively with some some relevant examples.,1
32162,Needs to pay for submit assignments,1
32215,it so boring,1
32287,Maybe I was wrong but I expected more medical course with many practical examples and the course is sth like 'explore your creativity in the field and be prepared'.,1
32296,"Bad video quality, errors in tasks and descriptions, no clear path through the course.",1
32366,"The lectures and assignments dealing with Ionic were useful and informative, but that's only the first half of the course. The Android/iOS portion felt extremely rushed. For all of the hassle of setting up my Android environment, I get one week of lectures/exercises out of it and that only covers rudimentary functionality.",1
32377,The material is not mature yet. Some things were not tested by the teacher before being part of the course and do not actually work. Questions asked on the forums about it got no answers before the end of the course.,1
32633,Very US centered and assignment not well connected to the lecture,1
32674,Horrible class. Shame it's in the series.,1
32699,its a fail,1
32734,"Mostly fluff with little substance. The videos seemed loosely tied around a common subject, but it might as well have been a YouTube playlist on overall concepts of cities needing to be aware of climate change. The week 4 videos were the same as the week 1 with very vague statements about cities needing to experiment with sustainability to approach the challenges of the 21st century. Only the week 2 video on Copenhagen was actually educational beyond the most superficial concepts.",1
32779,"Hi,I'm sorry to say that this course wasn't really useful. I had the impression to see dozens of INTRODUCTION videos about sustainables cities. Because:1. In 5 weeks you have time to cover in details all the aspects of sustainable cities: energy, transport, waste, building, sharing economy. The condition is to focus each week to a topic.2. It is too much based on powerpoint presentation and not at all on example. Concepts stay concepts: we didn't visit one single town, a connected building, an innovative waste management system. You quote 300 living labs, let's go !3. Pictures from the powerpoint are at least for half of them taken from pictures bank. Synthetic images, not concrete. Desapointing.4.. Always the same example: Malmo, Copenhagen... What about the rest of the world ?5. Videos from WWH and ICLEI are clearly revolting. Is it some publicity for them ??? This is not the place for that.In contrast, congratulations to Yuliya Voytenko, for her speech about sharing economy: it was clear, precise, focused.Please do your best to improve your courses: you have the knowledge, let's spread it.",1
32817,I was somewhat disappointed with the content of this course. It seems shallow and disintegrated to me. Its difficult to say that this course provides some practical knowledge.,1
32992,it is very boring course no coding just watching a lady talking and talking and talking it is really very boring to do that,1