
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
5K+ Views
To set the margins of a matplotlib figure, we can use margins() method.StepsSet the figure size and adjust the padding between and around the subplots.Create t and y data points using numpy.Add a subplot to the current figure at index 1.Plot t and y data points using plot() method.Set the ... Read More

Rishikesh Kumar Rishi
9K+ Views
To set Y-axis limit, we can use ylim() method and put maximum and minimum limit values.StepsSet the figure size and adjust the padding between and around the subplots.Create two lists for data points.Make two variables for max and min values for Y-axis.Use ylim() method to limit the Y-axis range.Use bar() ... Read More

Rishikesh Kumar Rishi
7K+ Views
To improve matplotlib image quality we can use greater dot per inch i.e dpi value (greater than 600) and pdf or .eps format can be recommended.StepsSet the figure size and adjust the padding between and around the subplots.Make a 2D data raster using a np.array.Display data as an image, i.e., ... Read More

Rishikesh Kumar Rishi
2K+ Views
To annotate subplots in a figure with A, B and C using matplotlib, we can take the following stepsSet the figure size and adjust the padding between and around the subplots.Create a figure and a set of subplots, with nrows=1 and ncols=3.Make a 1D iterator over an array.Iterate each axes ... Read More

Rishikesh Kumar Rishi
109 Views
To make matplotlib in OSX work in a virtual environment, we can first create a virtual environment and then activate that created environment. Thereafter, install all the dependencies in that virtual environment.StepsOpen ubuntu terminal.apt-get install python-venvpython -m venv source /bin/activate

Rishikesh Kumar Rishi
448 Views
To plot a stacked event duration using Python Pandas, we can take the following stepsSet the figure size and adjust the padding between and around the subplots.Create a dataframe with lists of xmin and its corresponding xmax.Use hlines() method to plot a stacked event duration.To display the figure, use show() ... Read More

Rishikesh Kumar Rishi
1K+ Views
To close a Python figure by a keyboard input, we can use plt.pause() method, an input, and close() method.StepsSet the figure size and adjust the padding between and around the subplots.Create random t and y data points using numpy.Create a new figure or activate an existing figure using figure() method.Plot ... Read More

Rishikesh Kumar Rishi
1K+ Views
To display an np.array with imshow(), we can take the following stepsSet the figure size and adjust the padding between and around the subplots.Make a 2D data raster using an np.array.Display the data as an image, i.e., on a 2D regular raster.To display the figure, use show() method.Exampleimport numpy as ... Read More

Rishikesh Kumar Rishi
24K+ Views
To increase the space for X-axis labels in Matplotlib, we can use the spacing variable in subplots_adjust() method's argument.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.Create x and y data points using numpy.Plot x ... Read More

Rishikesh Kumar Rishi
9K+ Views
To set Dataframe column value as X-axis labels in Python Pandas, we can use xticks in the argument of plot() method.StepsSet the figure size and adjust the padding between and around the subplots.Make a dataframe using Pandas with column1 key.Plot the Pandas dataframe using plot() method with column1 as the ... Read More