"review_list = [x.text.replace('Read More','') for x in review_text_trunc[1:]]\r\n",
"review_list = [x.replace('Read Less','') for x in review_list]\r\n",
"review_list = [x.replace('...','') for x in review_list]\r\n",
"print(review_list)\r\n",
"print(len(review_list))"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"[\"I really enjoyed the experience overall. The instructors were thorough and attentive in providing support for all learners whether new or experienced. I feel confident that I can build on the knowledge and skills I've gained to become a data science practitioner. \", 'I was making a career change and unsure about what course/bootcamp to take. After doing research, I decided Data Science Dojo was the best fit for me. It was such an awesome experience and I have learned a TON! The instructors were knowledgeable and were able to keep things easy to understand while still providing a challenging environment to grow. They never balked at anyone or made them feel small and I was never afraid to ask a question. Office hours were a great time to get 1-on-1 tutoring too. I feel prepared and ready for the next step in my career. I would definitely recommend.', 'This bootcamp is for people who want to get their feet wet in the data science field. The instructors were amazing, the platform was amazing, and the resources they had were amazing. The way the instructors broke down the core data science concept was very easy to understand.', \"Want a solid overview of common Python fundamentals for data analysis? Want down-to-earth instructors that are actually interested in their work, and you? Want to know how to evaluate data, clean it, visualize it, polish it, and feed it into a pipeline for machine learning? Want all of this in a five-day course? Look no further. I didn't know lists from dictionaries before this, and now I have a lot of essential tools at my disposal to do bioinformatic analysis for my graduate research. Not only that, but all of the course material is available to me for an additional six months after the course ended, so I consider more than five days of instruction. Plus, the instructors make sure they are available to help you and set you up for success. To add, I really liked the style of this course, and I think it is so pragmatic for learning programming. I love that our live sessions were recorded so that we can go back and see exactly what we saw before. I think my favorite aspect were the instructors, because they were very kind, knowledgeable, and made everything less intimidating. I love that the instructors were all around the world too! Such a cool way to showcase the wonders of working online and utilizing computers to learn about computers. I will hopefully be in contact with Data Science Dojo again in the future! Thank You!\", \"The online data science bootcamp offered by Data Science Dojo was a really valuable investment. Over a course of approximately 4 months, we had weekly 3-hour-long live classes with optional homework to deepen what we had learnt. From building and evaluating Machine Learning Models, to parameter tuning to text analytics and linear regression (and much more) - many relevant topics were covered and explained with such patience and good examples that even someone like me from a more non-technical/non-mathematical background was able to understand and follow along. The instructors were empathetic and extremely knowledgable and welcomed students' questions at any time throughout the course. The homework was appropriate and voluntary - the suggested reading material was interesting and contributed to a better understanding of certain topics.\", 'The boot camp provided me an overview of all key machine learning tools in a practical way that I could apply them in my work, and grow my expertise. I would highly recommend it. It allows you to think about the use case for the approaches, and when and where to most effectively use them.', 'This course has something for everyone! I especially was happy to learn more about R and Azure. If you are looking for help with text analytics, predictive modeling, logistic regression, they teach on these topics and more. The instructors are there to answer questions and to go in-depth during class and office hours.', 'I did a lot of research on data science boot camps before I finally choose the Data Science Dojo. I joined the boot camp with a business and economics background to enhance my understanding of data science and more specifically on predictive modelling and machine learning.The classes were intensive, interactive, full of practical examples, exercises, and labs. The tutors and mentors were extremely competent, friendly, and available to provide one-to-one help to solve the class assignments and projects. This boot camp also allows the participants to earn 7 credit points from the University of New Mexico, USA.After attending the boot camp, I strongly believe that it can be a great start for anyone who loves data and to build their career in data science.', 'I came to the bootcamp with a background in scientific data analysis hoping to broaden my understanding of predictive models and machine learning. Data Science Dojo surpassed my expectations through combination of in-person, discussion-oriented classes and practical, hands-on exercises. Modules on feature engineering and cross-validation techniques I found especially useful. From day one it was obvious that emphasis would be on algorithms and rationale underlying the predictive models covered over intricacies of the particular functions/libraries used to generate them. Though I had no trouble figuring out how to code to train and test models after working through the well-documented detailed exercises. All-in-all, Data Science Dojo is a strong choice for the student wanting to understand machine learning fundamentals.', \"I'm really converted. I never thought a data science bootcamp course could bring such great value to me but here I am converted let ring you know the DoJo bootcamp is the best data science course I recommend strongly. The teaching is excellent and class discussion is really interesting. The school also arranged the course time fitting my timezone which was amazing. If anyone wishes a strong foundation and basis of data science, I strongly recommend this course. It gives you confidence and makes you feel you grasped the important concepts. For me, it gets five stars.\"]\n",
"10\n"
]
}
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 12,
"source": [
"#NOTE First 4 positions in list are for DSD - 0 = overall, 1 = overall (average), 2 = Curriculum, 3 = job support ||\r\n",
"#NOTE Currently the last 7 positions are for ads - but that may change - basically anything not divisible by 20 is either DSD overall or an ad. \r\n",
"#NOTE Switchup only let's people give whole stars. Divide by 20 to get number of stars.\r\n",
"overall_rating = []\r\n",
"curriculum_rating = []\r\n",
"job_support_rating = []\r\n",
"star_rating_list = [x['style'] for x in ovr_cirr_job_rating]\r\n",
"star_rating_list = [x.replace('width:','') for x in star_rating_list]\r\n",
"star_rating_list = [x[0:3] for x in star_rating_list]\r\n",
"star_rating_list = [x.replace('.','') for x in star_rating_list]\r\n",
"star_rating_list = [x for x in star_rating_list if x in {'100', '80', '60', '40', '20', '00'}]\r\n",
"star_rating_list = [star_rating_list[i:i+3] for i in range(0, len(star_rating_list), 3)]\r\n",