Posts by Soma Shrenika

Author Biographical Info: Not available

Draw a circle on an image using OpenCV Python

By Soma Shrenika

In this tutorial, we will learn how to draw a circle on an image using OpenCV Python. This can be useful when we want to detect an object in an image. We will discuss the technique.... Read More

Dataframe.memory_usage() in Pandas

By Soma Shrenika

In this tutorial, we will learn how much memory is used by a data frame in Pandas using the memory_usage() method. This method displays the memory used by each column of the data f.... Read More

Separate alphabets and numbers in a string using regular expressions in Python

By Soma Shrenika

In this tutorial, we will learn regular expressions to separate numbers and alphabets in Python in different ways. This is very useful in competitive programming. Using regular exp.... Read More

Dataframe.get() in Pandas with examples

By Soma Shrenika

In this tutorial, we will learn how to use the get() method in pandas. This method is used to retrieve an item for an object for a given key which is basically the column of a data.... Read More

String methods in Pandas

By Soma Shrenika

In this tutorial, we will learn some of the most commonly used string methods in Pandas. These string methods are applied to a series in Pandas. These methods are mainly used for s.... Read More

Nearest palindrome of a number in python

By Soma Shrenika

In this tutorial, we will see how to generate the nearest palindrome of a given number in Python if the given number is not a palindrome. By the end of this tutorial, you will be a.... Read More

Python Drop Rows and Columns in Pandas

By Soma Shrenika

In this tutorial, we will learn the process of dropping rows and columns of a data frame in Pandas in Python. The dropping of rows and columns is an important process when dealing .... Read More

Intersection of two DataFrames in Pandas Python

By Soma Shrenika

In this tutorial, we will learn how to perform the intersection of two DataFrames in Pandas Python. By the end of this tutorial, you will learn the intersection of two data frames .... Read More

Related Posts