Thursday, October 23, 2025
HomeLanguagesMatplotlib.pyplot.plotfile() in Python

Matplotlib.pyplot.plotfile() in Python

With the help of pyplot.plotfile() method, we can plot the graph directly from the given csv file, we don’t have to make a separate dataframe for a particular attribute by using pyplot.plotfile() method.

Syntax : pyplot.plotfile(datafile, (attr1, attr2, .....attrn))

Return : Return the plot of attributes on a graph.

Example #1:
In this example we can see that by using pyplot.plotfile() method, we are able to plot the csv file data on a graph by given attributes by using pyplot.plotfile() method.




# import matplotlib
import matplotlib.pyplot as plt
  
  
# Provide the location of datafile
data = 'location_of_data_file'
  
# Using pyplot.plotfile() method
plt.plotfile(data, ('x_axis', 'y_axis'))
plt.show()


Data File for Example #1 :

Output :

Example #2 :




# import matplotlib
import matplotlib.pyplot as plt
  
  
# Provide the location of datafile
data = 'location_of_data_file'
  
# Using pyplot.plotfile() method
plt.plotfile(data, ('x_axis', 'y_axis', 'z_axis'))
plt.show()


Data File for Example #2 :

Output :

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS