How to read an input image and print it into an array in matplotlib?

Rishikesh Kumar Rishi
Updated on 26-Mar-2026 15:21:37

1K+ Views

To read an input image and print it into an array in matplotlib, we can use plt.imread() to load the image as a NumPy array and plt.imshow() to display it. Steps Import matplotlib.pyplot Read an image from a file using plt.imread() method Print the NumPy array representation of the image Display the image using plt.imshow() Use plt.axis('off') to hide axis labels Show the plot using plt.show() Example with Sample Data ... Read More

Program to determine the minimum cost to build a given string in python

Arnab Chakraborty
Updated on 26-Mar-2026 15:21:11

1K+ Views

Suppose we have to build a string str of length n. To build the string, we can perform two operations: Add a character to the end of str for cost a Add a substring that already exists in the current string for cost r We need to calculate the minimum cost of building the string str using dynamic programming. Example If the input is a = 5, r = 4, str = 'tpoint', then the output will be 29. To build the string 'tpoint', the ... Read More

How to create minor ticks for a polar plot in matplotlib?

Rishikesh Kumar Rishi
Updated on 26-Mar-2026 15:20:52

1K+ Views

To create minor ticks for a polar plot in matplotlib, you can manually draw tick marks at specified angular positions. This technique is useful when you need more granular control over tick positioning than the default matplotlib settings provide. Basic Approach The process involves creating radial lines at specific angles to simulate minor ticks. Here's how to implement it ? import numpy as np import matplotlib.pyplot as plt # Set the figure size plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True # Create radius and theta data points r = np.arange(0, 5, 0.1) theta = ... Read More

How to plot an animated image matrix in matplotlib?

Rishikesh Kumar Rishi
Updated on 26-Mar-2026 15:20:32

2K+ Views

To plot an animated image matrix in matplotlib, we can use FuncAnimation to repeatedly update a matrix display. This creates smooth animated visualizations of changing data patterns. Steps Set the figure size and adjust the padding between and around the subplots. Create a figure and a set of subplots. Make an animation by repeatedly calling a function update. Inside the update method, create a 6×6 dimension of matrix and display the data as an image, i.e., on a 2D regular raster. Turn off the axes using set_axis_off(). To display the figure, use show() method. Basic ... Read More

How to put xtick labels in a box matplotlib?

Rishikesh Kumar Rishi
Updated on 26-Mar-2026 15:20:07

726 Views

To put xtick labels in a box in matplotlib, we use the set_bbox() method on tick label objects. This creates a visible box around each x-axis label with customizable styling. Steps Create a new figure or activate an existing figure Get the current axis of the figure Position the spines and ticks as needed Iterate through the x-tick labels using get_xticklabels() Apply set_bbox() method with desired box properties Display the figure using show() method Basic Example Here's how to add boxes around x-tick labels ? import matplotlib.pyplot as plt import numpy as ... Read More

Program to find maximum score by splitting binary strings into two parts in Python

Arnab Chakraborty
Updated on 26-Mar-2026 15:19:46

428 Views

Suppose we have a binary string s. We need to split it into two non-empty substrings s1 and s2. The score of this split is the count of "0"s in s1 plus the count of "1"s in s2. We have to find the maximum score we can obtain. So, if the input is like s = "011001100111", then the output will be 8, because we can split the string like "01100" + "1100111". Then, the score is 3 + 5 = 8. Algorithm To solve this, we will follow these steps − ones := number ... Read More

How to plot a time as an index value in a Pandas dataframe in Matplotlib?

Rishikesh Kumar Rishi
Updated on 26-Mar-2026 15:19:20

2K+ Views

To plot a time as an index value in a Pandas DataFrame using Matplotlib, you need to set the time column as the DataFrame index. This allows the time values to appear on the x−axis automatically when plotting. Steps Create a DataFrame with time and numeric data columns Convert the time column to datetime format if needed Set the time column as the DataFrame index using set_index() Use the DataFrame's plot() method to create the visualization Basic Time Series Plot Here's how to create a simple time series plot with time as the index ... Read More

Program to find matrix for which rows and columns holding sum of behind rows and columns in Python

Arnab Chakraborty
Updated on 26-Mar-2026 15:18:57

234 Views

Given a matrix, we need to find a new matrix where each element at position res[i, j] contains the sum of all elements from the original matrix where row r ≤ i and column c ≤ j. This is known as calculating the prefix sum matrix or cumulative sum matrix. Problem Understanding For each position (i, j) in the result matrix, we sum all elements in the rectangle from (0, 0) to (i, j) in the original matrix. If the input matrix is ? 8 2 7 4 Then ... Read More

How to put a title for a curved line in Python Matplotlib?

Rishikesh Kumar Rishi
Updated on 26-Mar-2026 15:18:34

698 Views

To add a title to a curved line plot in Python Matplotlib, you use the plt.title() method after creating your plot. This is essential for making your visualizations clear and informative. Steps Set the figure size and adjust the padding between and around the subplots. Create x and y data points such that the line would be a curve. Plot the x and y data points using plt.plot(). Place a title for the curve plot using plt.title() method. Display the figure using ... Read More

Program to find length of longest sublist containing repeated numbers by k operations in Python

Arnab Chakraborty
Updated on 26-Mar-2026 15:18:09

335 Views

Suppose we have a list called nums and a value k, now let us consider an operation by which we can update the value of any number in the list. We have to find the length of the longest sublist which contains repeated numbers after performing at most k operations. So, if the input is like nums = [8, 6, 6, 4, 3, 6, 6] k = 2, then the output will be 6, because we can change 4 and 3 to 6, to make this array [8, 6, 6, 6, 6, 6, 6], and the length of sublist ... Read More

Advertisements