How to Determine Outliers in Python

In this article, we learn about different methods used to detect an outlier in Python. Z-score method, Interquartile Range (IQR) method, and Tukey’s fences method will be implemented. Python provides modules like numpy and scipy which assist us in detecting the outlier of a given data set. Understanding Outliers Outlier is python is any value …

How to Determine Outliers in Python Read More »

Hawaiian Pronouncer in Python.

There are many different languages in the world. They are all unique and have their very own dialect. In the Hawaiian language, there are only 13 letters and each word ends in a vowel. Even though Hawaiian words are written with the help of English alphabets, their pronunciations are very different than that of typical …

Hawaiian Pronouncer in Python. Read More »

How to Draw Shapes Without the Turtle Module in Python

The turtle module in Python is a powerful tool for drawing graphics. However, Python also offers several other libraries and techniques to create more complex or customized graphics. Python offers various libraries for creating graphics besides the turtle module. Some popular alternatives include Tkinter, Pygame, Matplotlib, and the Python Imaging Library (PIL). These libraries provide …

How to Draw Shapes Without the Turtle Module in Python Read More »

Understanding Joint Probability Distribution with Python

In this tutorial, we will explore the concept of joint probability and joint probability distribution in mathematics and demonstrate how to implement them in Python. Joint distribution is essential for finding relationships between variables and has numerous applications in data science. Understanding Joint Probability Let’s understand this with an example(Don’t worry we won’t roll a …

Understanding Joint Probability Distribution with Python Read More »