📜  将点添加到行 matplotlib - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:29.590000             🧑  作者: Mango

代码示例1
#Python, matplotlib
from matplotlib import pyplot as plt

#Create the regular line graph with plt.plot, then add the marker argument.
plt.plot(df["col1"], marker='o')

#Example of a few markers:
   -                solid line style
   --               dashed line style
   -.               dash-dot line style
   :                dotted line style
   .                point marker
   ,                pixel marker
   o                circle marker