Posts by Aakanksha Thakar

Author Biographical Info: Not available

Crosstab in Python using Pandas – Full Guide

By Aakanksha Thakar

This tutorial will show you how to crosstab two or more factors in Python using the Pandas library function. Cross-tabulation is used to analyze the relationship between the factor.... Read More

Check if an unordered map contains a key in C++

By Aakanksha Thakar

This tutorial will see how to check if an unordered map contains a key or not in C++. Unordered maps are similar to dictionary data types. The unordered map is a container that sto.... Read More

How to get the last occurrence of a character in a string in Swift

By Aakanksha Thakar

In this tutorial, will see how to get the last occurrence of a character in a string in Swift. This task can be done easily with the help of in-built functions from Swift. Step 1: .... Read More

Get name and extension of file from absolute path in C++

By Aakanksha Thakar

In this tutorial will see the C++ code to get the file name and the extension from its absolute path. The file’s absolute path is a path from its root folder. Each folder is .... Read More

Convert text to an image in Python using Aspose.Words

By Aakanksha Thakar

In this tutorial, we are going to see how to convert text to an image in Python. This can be easily done by using the Aspose.Words library. This library is used to process document.... Read More

How to delete rows of a sheet using Openpyxl in Python

By Aakanksha Thakar

In this tutorial, we are going to see how to delete the rows of an excel sheet in Python. This can be done by using the openpyxl library. This library is used to work with excel sh.... Read More

Find row number that contains a specific value using Openpyxl

By Aakanksha Thakar

In this tutorial, we are going to see how to find the row number that contains a specific value in an excel sheet in Python. This task can be done using the openpyxl Python library.... Read More

Check the null values from Pandas DataFrame in Python

By Aakanksha Thakar

In this tutorial, we are going to see how to find the null values from Pandas DataFrame in Python. Pandas DataFrame is a temporary table form of a given dataset. First, import the .... Read More

Related Posts