Category: Simulink Training Course

  • Second Largest Number in Python

    When we have a lot of elements in our list, the thought of finding the highest or lowest element can come to our mind and Python has made it much easier for us. In this article, we shall how we can use to find the second largest number in Python from a list. Sorting the […]

    Read More

  • Python SimpleImputer module

    In this tutorial, we are going to learn about the SimpleImputer module of the Sklearn library, and it was previously known as impute module but updated in the latest versions of the Sklearn library. We will discuss the SimpleImputer class and how we can use it to handle missing data in a dataset and replace […]

    Read More

  • Python OpenCV object detection

    OpenCV is the huge and open-source library for image processing, machine learning and computer vision. It is also playing an important role in real-time operation. With the help of the OpenCV library, we can easily process the images as well as videos to identify the objects, faces or even handwriting of a human present in […]

    Read More

  • Python program to find the nth Fibonacci Number

    In the following tutorial, we will understand how to find the nth Fibonacci Number using Python. We can define a Fibonacci Number, where the following number is the sum of the preceding two numbers. The first two elements of the Fibonacci series are 0 and 1, respectively. We can calculate the third element of the […]

    Read More

  • nsetools in Python

    In the following tutorial, we will discuss the nsetools library in the Python programming language. We will understand its features and work with some examples. So, let’s get started. Understanding the nsetools library NSE or National Stock Exchange of India Limited is the leading stock exchange of India, situated in Mumbai, Maharashtra. NSE was established in the […]

    Read More

  • Python High Order Function

    As we must be aware of the basic concept of Python functions, we should move forward with some advanced concepts related to Python functions. In this tutorial, we are going to discuss the important aspects of High order functions in Python, like what high order functions are, how we can define them in Python, how […]

    Read More

  • Grid Search in Python

    In this tutorial, we will discuss the Grid Search for the purpose of hyperparameter tuning. We will also learn about the working of Grid Search along with the implementation of it in optimizing the performance of the method of Machine Learning (ML). Hyperparameter tuning is significant for the appropriate working of the models of Machine Learning (ML). […]

    Read More

  • How to Plot the Google Map using folium package in Python

    The folium package is built on the data wrangling strengths of the Python ecosystem and the mapping strengths of the Leaflet.js library of JavaScript language. The user can manipulate their data by using Python and then visualize it by using Leaflet.js map through folium package. Folium package is an easy approach of visualizing the data on Leaflet.js map, which has been […]

    Read More

  • Gmail API in Python

    In this tutorial, we are going to learn about Gmail API in Python, and we will also learn how we can use Gmail APIs in Python to perform many Gmail operations such as sending an email, searching an email, deleting an email, etc. For this, we will learn to set up Gmail API in our […]

    Read More

  • How to Calculate Distance between Two Points using GEOPY.

    The geopy is a Python library which helps to calculate geographical distance. In this tutorial, we will discuss different methods of how the user can calculate the distance between two places on the earth. First, the user has to install the geopy by using the following command: pip install geopy After successful installation, we are ready to work with the geopy […]

    Read More