
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
8K+ Views
To annotate the maximum value in a Pyplot, 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.Make a list of x and y data points.Plot x and y data points using numpy.Find ... Read More

Rishikesh Kumar Rishi
587 Views
To color a Seaborn boxplot based on dataframe column name, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a Pandas dataframe with two columns, col1 and col2.Make a boxplot with horizontal orientation.Get the boxes artists.Iterate the boxes and set ... Read More

Rishikesh Kumar Rishi
2K+ Views
To draw rounded line ends using matplotlib, we can use solid_capstyle='round'.StepsSet the figure size and adjust the padding between and around the subplots.Create random x and y data points using numpy.Create a figure and a set of subplots.Plot x and y data points using plot() method, with solid_capstyle in the ... Read More

Rishikesh Kumar Rishi
7K+ Views
To show date and time on 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 a list of dates and y values.Get the current axis.Set the major date formatter and locator.Plot x and y values using ... Read More

Rishikesh Kumar Rishi
1K+ Views
To plot 95% confidence interval errorbar Python Pandas dataframes, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Get a dataframe instance of two-dimensional, size-mutable, potentially heterogeneous tabular data.Make a dataframe with two columns, category and number.Find the mean and std ... Read More

Rishikesh Kumar Rishi
1K+ Views
To get a sense of how the parameters c and cmap behave in a Matplotlib scatterplot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Initialize a variable N to store the number of sample data.Create x and y data points ... Read More

Rishikesh Kumar Rishi
2K+ Views
To create multiple boxplots on the same graph from a dictionary, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a dictionary, dict, with two columns.Create a figure and a set of subplots.Make a box and whisker plotSet the xtick ... Read More

Rishikesh Kumar Rishi
702 Views
To edit the properties of whiskers, fliers, caps, etc. in a Seaborn boxplot, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a dataframe using Pandas.Make a boxplot from the DataFrame columns.Get the boxplot's outliers, boxes, medians, and whiskers data.Print ... Read More

Rishikesh Kumar Rishi
402 Views
To plot Pandas data frames in Pie charts using Matplotlib, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Make a dataframe of two-dimensional, size-mutable, potentially heterogeneous tabular data.Plot the dataframe with activities index using pie() methodTo display the figure, use ... Read More

Rishikesh Kumar Rishi
18K+ Views
To force matplotlib to show the values on X-axis as integers, we can take the following steps −Set the figure size and adjust the padding between and around the subplots.Create two lists, x and y, of data points.Plot x and y using plot() method.Make a new list for only integers ... Read More