
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Manthan Ghasadiya has Published 34 Articles

Manthan Ghasadiya
1K+ Views
In this tutorial, we will learn to create an empty and a full NumPy array. NumPy stands for Numerical Python. It is a Python library that performs numerical calculations. It provides a multidimensional array object. NumPy is a popular Python library used for working with arrays. It also has functions ... Read More

Manthan Ghasadiya
2K+ Views
Pygame is a free and open-source library for developing multimedia applications like video games using Python. It includes graphics and sound libraries, which are very useful in designing video games. Pygame is built on top of the Simple DirectMedia Layer (SDL) library, which provides low-level access to hardware and input ... Read More

Manthan Ghasadiya
4K+ Views
Pandas is a Python library used for data manipulation and analysis. It is built on top of the numpy library and provides an efficient implementation of a dataframe. A dataframe is a two-dimensional data structure. In a dataframe, data is aligned in rows and columns in a tabular Form. It ... Read More

Manthan Ghasadiya
365 Views
Those who wish to practice their Python skills and learn how to develop a small web app can quickly and amusingly create an age calculator web app using PyWebIO in Python. Interactive online apps are simple to construct thanks to the Python library PyWebIO. This project's online age calculator uses ... Read More

Manthan Ghasadiya
2K+ Views
We will learn about how to create Abstract Model Class in Django. An abstract model class in Django is a model that is used as a template for other models to inherit from rather than one that is meant to be created or saved to the database. In an application, ... Read More

Manthan Ghasadiya
384 Views
Ternary plots are a useful way to display compositional data where three variables add up to a constant value. Plotly is a powerful plotting library that can be used to create interactive ternary plots with ease. In this tutorial, we will explore how to create a Ternary Overlay using Plotty. ... Read More

Manthan Ghasadiya
1K+ Views
In this tutorial, we will learn to create a Triangle Correlation Heatmap in seaborn; as the name sounds, Correlation is a measure that shows the extent to which variables are related. Correlation heatmaps are a type of plot that represents the relationships between numerical variables. These plots are used to ... Read More

Manthan Ghasadiya
9K+ Views
The strength and direction of the correlation between two pairs of variables in a dataset are displayed graphically in a correlation heatmap, which depicts the correlation matrix. It is an effective technique for finding patterns and connections in massive datasets. The Python data visualization toolkit Seaborn offers simple utilities for ... Read More

Manthan Ghasadiya
14K+ Views
A scatter plot is a data visualisation that displays the relationship between two variables. A marker or symbol is placed on the plot at the coordinates corresponding to each data point's values for the two variables, representing that data point. The graphic can aid in finding patterns, trends, and outliers ... Read More

Manthan Ghasadiya
10K+ Views
Python provides several libraries for creating animations, such as Matplotlib, Pygame, and Pyglet. Matplotlib is a popular Python data visualisation library that also offers the functionality of creating animations using the ‘FuncAnimation’ function. ‘FuncAnimation’ is a class in the ‘matplotlib.animation’ module that creates animations by calling a user-defined function. In ... Read More