
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
9K+ Views
To plot two different arrays of different lengths in matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create y1, x1, y2 and x2 data points using numpy with different array lengths.Plot x1, y1 and x2, y2 data points using ... Read More

Rishikesh Kumar Rishi
10K+ Views
To shift a graph along the X-axis 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.Plot the x and y data points for the original curve.Plot the shifted graph, in the ... Read More

Rishikesh Kumar Rishi
6K+ Views
To set xticks and yticks with imshow() plot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Get the current axis.Create a random dataset.Display the data as an image, i.e., on a 2D regular raster.Set x and y ticks using set_xticks() ... Read More

Rishikesh Kumar Rishi
3K+ Views
To remove white border when using subplot and imshow(), we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create random data points using numpy.Get the size of the data.Set the figure sizes in inches.Get the axes instance that contains most of ... Read More

Rishikesh Kumar Rishi
5K+ Views
To show tick labels on top of a matplotlib plot, we can use the set_tick_params() method with labeltop=True.StepsSet the figure size and adjust the padding between and around the subplots.Create a figure and a set of subplots.Show the tick labels at the top of the plot. Use set_tick_parama() with labeltop=True.Hide ... Read More

Rishikesh Kumar Rishi
2K+ Views
To pass a matplotlib object through a function; as Axis, Axes or figure, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.In plot() method, plot x and y data points at axes ax.In profile() method, create a figure and a ... Read More

Rishikesh Kumar Rishi
2K+ Views
To label bubble charts/scatter plot with column from Pandas dataframe, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create a data frame, df, of two-dimensional, size-mutable, potentially heterogeneous tabular data.Create a scatter plot with df.Annotate each data point with a ... Read More

Rishikesh Kumar Rishi
530 Views
To plot multicolor line if X-axis is datetime index of Pandas, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create d, y and s data points using numpy.Create a figure and a set of subplots.Get xval, p and s data ... Read More

Rishikesh Kumar Rishi
5K+ Views
To get coordinates from the contour in matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create lists of x, y and m with data points.Use plt.contour(x, y, m) to create a contour plot with x, y and m data ... Read More

Rishikesh Kumar Rishi
21K+ Views
To sort bars in increasing order in a bar chart in matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a data frame, df, of two-dimensional, size-mutable, potentially heterogeneous tabular data.Add a subplot to the current figure.Make a bar ... Read More