Sana Omar
3 min read
Unsupervised Learning: Mixture Models
There are two types of clustering: Hard clustering methods where clusters do not overlap, the data point either belongs to a cluster or...
stella tchoutcha
3 min read
Manipulation des Tableaux
NumPy supports the creation and manipulation of multidimensional arrays. NumPy arrays are fast, easy to understand, they occupy little...
Wilson Waha
1 min read
Map function
A simple way to apply a function to each element of an iterator is using the map function. It replaces the for loop which uses a lot of...
Wilson Waha
1 min read
Classes in python
A mold is an object that always produces elements of the same shape. In the same way a class is a container which allows to create...
Wilson Waha
1 min read
Blood sugar monitor
Glucose shows your blood sugar level. It is important to know your blood sugar level to prevent possible complications. There are several...
Wilson Waha
1 min read
Password generator from first names
Since the creation of the Internet, people have accessed sites, created accounts requiring passwords. some people have difficulty...
Lucien Dikla Ngueleo
1 min read
Telephone code App zone 6 (oceanic)
Generality An international dialing code is a telephone prefix used in the telephone numbers of countries or regions that are members of...
stella tchoutcha
1 min read
Lambda functions
They are very useful when it is necessary to perform small tasks with less code, they promote the readability of the code example : power...
stella tchoutcha
3 min read
Cleaning Data in Python
Data cleansing strengthens the integrity and relevance of our data by reducing inconsistencies, preventing errors, and enabling better...
Lucien Dikla Ngueleo
1 min read
Body Mass Index (BMI) calculator
The body mass index (BMI) estimates ideal weight based on height. Its calculation is the weight divided by the square of the height (BMI...
stella tchoutcha
1 min read
Reverse a string in python
Reverse a string in Python using the len() function ( function returns the number of items in an object. When the object is a string, the...
Ebrima Sise
3 min read
EDA For the Office Series in USA
In this project, we will take a look at a dataset of The Office episodes, and try to understand how the popularity and quality of the...
stella tchoutcha
2 min read
Pandas Techniques for Data Manipulation in Python
Pandas: a must-have library for data processing in Python. Pandas is an open-source library allowing data manipulation and analysis in a...
stella tchoutcha
1 min read
Count character occurrences in a given word, phrase or sentence.
know the number of occurrences of characters in a word or in a sentence occurrence is the appearance of a given element in a set. Use the...
Ebrima Sise
2 min read
Variable Scopes in Python
In python, a variable is only accessible from inside the area it has been created in. The term `Scope` is used to describe this logic. A...
Ebrima Sise
3 min read
List Comprehension Explained
Imagine you have a list named `prices` below prices = [20, 25, 35, 40, 45, 70] And you want to implement a 5% discount on all the prices...
Ebrima Sise
1 min read
Number Sum
In this blog, I will write about a simple but interesting program I wrote to calculate the sum of all the numbers within a given range. I...
Ebrima Sise
2 min read
Fahrenheit to Celsius Converter
According to Wikipedia, the Fahrenheit scale is a temperature scale based on one proposed in 1724 by the physicist Daniel Gabriel...
Blessing Oludele
2 min read
The Office: Digging deeper into Ratings and Viewership
The office as I heard was a sitcom in the US. Apparently very popular as the views ran into millions on every episode. I examined the...
Blessing Oludele
1 min read
Python concept: Arrays
Arrays are Numpy's primary data type. They are a means of storing data of the same type in a particular memory location, such that the...
Blessing Oludele
1 min read
Python concept: Functions
A function in simple terms is a collection of code that performs a single function. How to know when you need a function: Never repeat...
Blessing Oludele
1 min read
A Simple Email splitter and Die Roller
This are easy python functions that serve as apps, easy to follow through and implement. it basically requests for your username and...
Blessing Oludele
2 min read
Identifying dirty data and What to do with it.
As an aspiring data scientist like myself, I have come to the painful conclusion that in the real world I would rarely be presented with...
Ntandoyenkosi Matshisela
4 min read
Curing curse of Dimensionality
Data comes in different sizes. Some datasets have two variables the target and a feature variable. Sometimes we can have a huge set of...