Plot line graph from NumPy array Last Updated : 17 Dec, 2021 Comments Improve Suggest changes Like Article Like Report For plotting graphs in Python, we will use the Matplotlib library. Matplotlib is used along with NumPy data to plot any type of graph. From matplotlib we use the specific function i.e. pyplot(), which is used to plot two-dimensional data. Different functions used are explained below: np.arange(start, end): This function returns equally spaced values from the interval [start, end).plt.title(): It is used to give a title to the graph. Title is passed as the parameter to this function.plt.xlabel(): It sets the label name at X-axis. Name of X-axis is passed as argument to this function.plt.ylabel(): It sets the label name at Y-axis. Name of Y-axis is passed as argument to this function.plt.plot(): It plots the values of parameters passed to it together.plt.show(): It shows all the graph to the console. Example 1 : Python3 # importing the modules import numpy as np import matplotlib.pyplot as plt # data to be plotted x = np.arange(1, 11) y = x * x # plotting plt.title("Line graph") plt.xlabel("X axis") plt.ylabel("Y axis") plt.plot(x, y, color ="red") plt.show() Output : Example 2 : Python3 # importing the library import numpy as np import matplotlib.pyplot as plt # data to be plotted x = np.arange(1, 11) y = np.array([100, 10, 300, 20, 500, 60, 700, 80, 900, 100]) # plotting plt.title("Line graph") plt.xlabel("X axis") plt.ylabel("Y axis") plt.plot(x, y, color ="green") plt.show() Output : Comment More infoAdvertise with us Next Article Basics of NumPy Arrays V vipul1501 Follow Improve Article Tags : Python Python-numpy Python-matplotlib Practice Tags : python Similar Reads How to Convert images to NumPy array? Pictures on a computer are made of tiny dots called pixels. To work with them in Python, we convert them into numbers using a NumPy array is a table of numbers showing each pixelâs color. In this article, weâll learn how to do this using popular Python tools.Loading the images via Pillow LibraryLet 5 min read How to Convert images to NumPy array? Pictures on a computer are made of tiny dots called pixels. To work with them in Python, we convert them into numbers using a NumPy array is a table of numbers showing each pixelâs color. In this article, weâll learn how to do this using popular Python tools.Loading the images via Pillow LibraryLet 5 min read Save Plot To Numpy Array using Matplotlib Saving a plot to a NumPy array in Python is a technique that bridges data visualization with array manipulation allowing for the direct storage of graphical plots as array representations, facilitating further computational analyses or modifications within a Python environment. Let's learn how to Sa 4 min read Basics of NumPy Arrays NumPy stands for Numerical Python and is used for handling large, multi-dimensional arrays and matrices. Unlike Python's built-in lists NumPy arrays provide efficient storage and faster processing for numerical and scientific computations. It offers functions for linear algebra and random number gen 4 min read Basics of NumPy Arrays NumPy stands for Numerical Python and is used for handling large, multi-dimensional arrays and matrices. Unlike Python's built-in lists NumPy arrays provide efficient storage and faster processing for numerical and scientific computations. It offers functions for linear algebra and random number gen 4 min read Convert a NumPy array to an image Converting a NumPy array to an image is a simple way to turn numbers into pictures. A NumPy array holds pixel values, which are just numbers that represent colors. Images, like PNG or JPEG, store these pixel values in a format we can see. In this process, the NumPy array turns into an image, with ea 3 min read Like