Posts by Asma Khan

Author Biographical Info: Just gimme a laptop, strong coffee and a big comfy teddy bear...

Waffle Chart using pyWaffle in Python

By Asma Khan

In this tutorial, we will learn to create Waffle Chart using the PyWaffle library in Python. Much like waffles are a delightful treat with a distinctive grid pattern, a Waffle char.... Read More

Create a GGPlot with Multiple Lines in Python

By Asma Khan

Observing a trend or a pattern in data has become an essential task in today’s data-driven world, and a ggplot makes data visualization highly effective. In this tutorial, we wil.... Read More

Print double quotes in a string in Python

By Asma Khan

As programmers, we have all struggled with strings at some point. It may be when we loop through its characters, concatenate them with other data types, or even when we just need t.... Read More

Set delay in drawing in Python Turtle

By Asma Khan

In this tutorial, we will learn how to set a delay in drawing in Python Turtle. Python becomes even more interesting when it comes to exploring graphics. This is because Python has.... Read More

Scikit-image, a Python-based image processing library

By Asma Khan

In this tutorial, we will learn image processing using scikit-image in Python. From silly status updates to high profile documentation, images have become an integral part of digit.... Read More

Burrows Wheeler Transform in Python

By Asma Khan

In this tutorial, we will learn about burrows wheeler transform (BWT) in Python. As scary as this algorithm may look, it is simple as pie if we actually check it out. What is BWT? .... Read More

LU decomposition in Python

By Asma Khan

In linear algebra, we define LU (Lower-Upper) decomposition as the product of lower and upper triangular matrices. In this tutorial, we will learn LU decomposition in Python. Comp.... Read More

Fuzzy String Matching in Python

By Asma Khan

Google defines fuzzy as difficult to perceive, indistinct or vague. Unlike boolean, fuzzy logic answers the question of how much similar are the strings. Boolean logic simply answe.... Read More

Related Posts