Python - Medium Articles
Cosine similarity is a measure of similarity between two non-zero vectors of an inner product space that measures the cosine of the angle between them.… Read More
os.path.split() method in Python is used to Split the path name into a pair, and tail. Here, the tail is the last path name component and the head is everything leading up… Read More
Prerequisite: Groups Subgroup – A nonempty subset H of the group G is a subgroup of G if H is a group under binary operation… Read More
Absolute value: Absolute value or the modulus of a real number x is the non-negative value of x without regard to its sign. For example… Read More
In Python, element conversion has been a very useful utility as it offers it in a much simpler way than in other languages. This makes… Read More
The Radiobutton is a standard Tkinter widget used to implement one-of-many selections. Radiobuttons can contain text or images, and you can associate a Python function… Read More
Sorting has quite vivid applications and sometimes, we might come up with a problem in which we need to sort the nested dictionary by the… Read More
Sometimes, we can get elements in range as input but some values are missing in otherwise consecutive range. We might have a use case in… Read More
Prerequisite: Optimal value of K in K-Means Clustering K-means is one of the most popular clustering algorithms, mainly because of its good time performance. With… Read More
Kolmogorov–Smirnov test a very efficient way to determine if two samples are significantly different from each other. It is usually used to check the uniformity… Read More
Stem and Leaf Plot is a way of representing the data. This plot is used to show the absolute frequency in different classes similar to… Read More
In data mining and statistics, hierarchical clustering analysis is a method of clustering analysis that seeks to build a hierarchy of clusters i.e. tree-type structure… Read More
To set up a Kotlin environment for the command line, you need to do the following steps: Install the Java Development Kit (JDK): Kotlin runs… Read More
Kotlin is a statically typed, general-purpose programming language developed by JetBrains that has built world-class IDEs like IntelliJ IDEA, PhpStorm, Appcode, etc. It was first… Read More
Clustering analysis or simply Clustering is basically an Unsupervised learning method that divides the data points into a number of specific batches or groups, such… Read More
To identify circles, ellipses, or in general, any shape in which the pixels are connected we use the SimpleBlobDetector() function of OpenCV. In non-technical terms,… Read More
Thresholding is a technique in OpenCV, which is the assignment of pixel values in relation to the threshold value provided. In thresholding, each pixel value… Read More
Accessing elements in a list has many types and variations. These are an essential part of Python programming and one must have the knowledge to… Read More
Kivy is a platform independent GUI tool in Python. As it can be run on Android, IOS, linux and Windows etc. It is basically used… Read More
Prerequisite: Simple Thresholding using OpenCV In the previous post, Simple Thresholding was explained with different types of thresholding techniques. Another Thresholding technique is Adaptive Thresholding.… Read More