Posts by Abinash Reddy

Author Biographical Info: Deeply interested in Machine Learning, Deep Learning, and Software Development

How to Plot Correlation Matrix in Python

By Abinash Reddy

A dataset contains many variables. Where some variables depend on one another, and some may be independent. For creating a better model we must understand how variables of the data.... Read More

Python Program to check whether given matrix is a Hankel matrix or not

By Abinash Reddy

In this article, we will learn how to check whether a given matrix is a Hankel matrix or not. The Hankel matrix is a square matrix in which each ascending skew-diagonal from left t.... Read More

Addition of Two Binary Number in Python

By Abinash Reddy

In the following program, we are going to use two built-in functions int() and bin() for the addition of two binary numbers in Python programming. The int() function converts a str.... Read More

Program to validate MAC address using Regular Expression in Python

By Abinash Reddy

In this article, we will learn whether a given string is a valid MAC address using Regular Expression in Python. Before I go forward, I hope you understand what is a MAC address. E.... Read More

Python Program to find the second largest element in an array

By Abinash Reddy

In this article, we will write a Python program to find the second largest element in a given array. Example Input: arr[] = {2, 42, 13, 64, 1} Output: 42 Input: arr[] = {2, 3, 4, 5.... Read More

Python program to find duplicate rows in a binary matrix

By Abinash Reddy

In this article, we will learn how to find duplicate rows in a binary matrix in Python. A matrix is said to binary matrix if it only contains 0’s, 1’s as its elements. .... Read More

Python program to find the Nth Decagonal Number

By Abinash Reddy

In this article, we will learn how to find the nth Decagonal Number in Python. But first, let’s learn a few points about Decagonal Numbers. formula of decagonal numbers D(n) .... Read More

Python Program to Merge Excel Cells using openpyxl

By Abinash Reddy

In this article, we will discuss how to merge cells in an excel sheet using Python. We will use openpyxl module for merging cells. Installation of openpyxl using pip pip install op.... Read More

Related Posts