Category: Programming
-
Global Spread of Coronavirus | Data Visualization
In this post, I would like to show you how to create an interactive map plot using the Coronavirus cases data. As the numbers started to rise again, I wanted to create a global world map to see how the spreading continues across the world. I found a great data on Kaggle with the global…
-
The Beginner’s Guide – Building Interactive Maps in Python
Simple and hands-on practice using Climate Data In this post, I would like to show you how to create interactive climate maps using the Historical Climate Data, where you can visualize, examine, and explore the data. Data visualization plays an important role in representing data. Creating visualizations helps to present your analysis in an easier form…
-
Python for Finance – The Complete Beginner’s Guide
Simple and interactive walk-through using Amazon Stock Data Ready this Article on Medium for Free Are you interested in developing your finance skills using some programming? Then you are at the right place. In this post, I will walk you through some great hands-on exercises that will help you to have some understanding on how…
-
Building a Cat Face Recognizer in Python
How to detect the difference between human and cat faces? In this post, I will show you how to write a simple program that detects cat faces. In a previous most, I showed how to detect human faces using Python. When I was testing the code with many images, I realized that there were animals…
-
Sorting and Subsetting in Python
Hands-on Data Analysis using Pandas Library In this post, we will learn some powerful data analysis techniques using Pandas library. Exploring the dataset is the first key step in data analysis. To have a better understanding of the data there are couple ways to do it. Today, we will cover the two simplest and most…
-
5 Free Machine Learning E-Book Resources
In this post, I will share five free machine learning e-book resources with you. It will be a short and simple post. I will introduce you to each resource by giving some basic information about them. I tried to find resources with online access so that anyone from anywhere can have free access to them.…
-
Image Manipulation in Python
In this post, I will show you how to edit an image using Python. This process editing an image is called Image Manipulation. You might be wondering why you need to do some manipulations on images before using them in your code. There are many reasons for this question, but couple main reasons can be…
-
Simple Face Detection in Python
In this post, I will show you how to build a simple face detector using Python. Building a program that detects faces is a very nice project to get started with computer vision. In a previous post, I showed how to recognize text in an image, it is a great way to practice python in…
-
Convert Text to Speech in 5 Lines of Code
In this post, I will show you how to convert text to speech using Python. This will be a simple machine learning project that we will understand some basics of speech library called pyttsx3. If you are wondering where can we use text to speech conversion in real life, don’t worry you are not alone.…
-
Building a Speech Translator in Python
In this post, I will show you how to translate your speech into a different language using Python. Speech translator will record your speech then understand what you are saying, and translate it to the language you prefer. After the translation process is completed you can customize your code so that it says the translated…