How to Plot a Treemap in Python?

A treemap in Python is a visualization of data that splits a rectangle into sub-parts. The size of each subpart is in proportion to the data it represents. It is somewhat like a pie-chart. Although, treemaps can represent much-more complex data as compared to a pie-chart. It can help you visualize how single values compose […]

How to Plot a Treemap in Python? Read More »

How to Save in .npy Format?

Ever come across a .npy file? In this article, we’ll go over the steps to save in npy format. NPY is Numpy’s binary data storage format. Numpy is an essential module for carrying out data science operations efficiently. Importing, saving and processing of data takes up a major portion of the time in the field

How to Save in .npy Format? Read More »

Naive Bayes Classifier with Python

Naïve Bayes Classifier is a probabilistic classifier and is based on Bayes Theorem. In Machine learning, a classification problem represents the selection of the Best Hypothesis given the data. Given a new data point, we try to classify which class label this new data instance belongs to. The prior knowledge about the past data helps

Naive Bayes Classifier with Python Read More »