📜  Python中的 Matplotlib.pyplot.plotfile()

📅  最后修改于: 2022-05-13 01:54:58.273000             🧑  作者: Mango

Python中的 Matplotlib.pyplot.plotfile()

pyplot.plotfile()方法的帮助下,我们可以直接从给定的 csv 文件中绘制图形,我们不必使用pyplot.plotfile()方法为特定属性制作单独的数据框。

示例 #1:
在这个例子中,我们可以看到,通过使用pyplot.plotfile()方法,我们可以使用 pyplot.plotfile( pyplot.plotfile()方法通过给定属性在图形上绘制 csv 文件数据。

# 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()

示例 #1 的数据文件:

输出 :

示例 #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()

示例 #2 的数据文件:

输出 :