Blogs


  • Google Colab Notebook Tutorial | How to import a dataset

    Introduction In this article, we are going to learn about Google colaboratory notebooks in as much detail as possible. This tutorial is going to cover a variety of things related to Google colab, the details of which you can find in the Table of Contents Below. If you have already used Google colab and know…

    Read more

  • Bucket Sort Algorithm & Time Complexity | Python Implementation

    Introduction In this tutorial, we are going to learn about a sorting algorithm named Bucket Sort. Bucket sort, or bin sort, is a comparison sort algorithm that works by assigning the elements of an array or list to a number of buckets. The elements within each bucket are then compared to each other and sorted…

    Read more

  • How to code a classification & regression model in Python

    In this article, we are going to first get an introduction to Supervised learning, followed by a little dive into the two most common types of supervised learning algorithms; namely, classification & regression. At the end we will have two coding examples, one for classification and one for regression. Both will use a different dataset…

    Read more