Jayant Verma

Linked Lists in Python

Linked lists in Python are one of the most interesting abstract data types that have continued to stay in popularity since the C/C++ days. In this article, we’ll learn how to implement a Linked list in Python from scratch. What is a Linked List? A linked list is a linear data structure where each element

Linked Lists in Python Read More »

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 »