
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
Rishikesh Kumar Rishi has Published 1156 Articles

Rishikesh Kumar Rishi
3K+ Views
To plot scatter points in a 3D figure with a colorbar in matplotlib, we can use the scatter() and colorbar() methods.StepsSet the figure size and adjust the padding between and around the subplots.Create a new figure or activate an existing figure using figure() method.Add an axis as a subplot arrangement.Create ... Read More

Rishikesh Kumar Rishi
414 Views
To plot the line color of a 3D parametric curve in Matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a new figure or activate an existing figure using figure() method.Add an axis as a subplot arrangement.To make a ... Read More

Rishikesh Kumar Rishi
3K+ Views
To show mean in a box plot, we can use showmeans=True in the argument of boxplot() method.StepsSet the figure size and adjust the padding between and around the subplots.Create a random dataset.Create a new figure or activate an existing figure using figure() method.Add an axes to the current figure as ... Read More

Rishikesh Kumar Rishi
612 Views
To shade points in a scatter based on colormap, we can use copper colormap in scatter() method.StepsSet the figure size and adjust the padding between and around the subplots.Create x and y random 100 data points using numpy.Plot scatter points x and y with color=x and colormap=copper.To display the figure, ... Read More

Rishikesh Kumar Rishi
4K+ Views
To use custome png or jpg i.e an image as a marker in a plot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a paths list to store the directories of images.Make a list (x and y) of points.Using ... Read More

Rishikesh Kumar Rishi
6K+ Views
To plot a 3D continuous line in Matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create x and y data points using numpy.Create z data points using x and y data points.Create a new figure or activate an existing ... Read More

Rishikesh Kumar Rishi
1K+ Views
To change the color and marker of each point using Seaborn jointplot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Load an example dataset from the online repository (requires Internet).Use jointplot() method to plot tips data.Use cla() method to clear ... Read More

Rishikesh Kumar Rishi
2K+ Views
To put text at the corner of an equal aspect figure in matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a figure and a set of subplots, using subplots() method.Create x data points using numpy.Plot x on axis ... Read More

Rishikesh Kumar Rishi
534 Views
To add textures to bars and wedges we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a new figure or activate an existing figure using figure() method.Add an axes to the figure as part of a subplot arrangement.Make a list ... Read More

Rishikesh Kumar Rishi
9K+ Views
To plot cdf in matplotlib in Python, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Initialize a variable N for the number of sample data.Create random data using numpy.Compute the histogram of a set of data with data and bins=10.Find ... Read More