本文整理汇总了Python中boomslang.Plot.addLineColor方法的典型用法代码示例。如果您正苦于以下问题:Python Plot.addLineColor方法的具体用法?Python Plot.addLineColor怎么用?Python Plot.addLineColor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类boomslang.Plot
的用法示例。
在下文中一共展示了Plot.addLineColor方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: constructImage
# 需要导入模块: from boomslang import Plot [as 别名]
# 或者: from boomslang.Plot import addLineColor [as 别名]
def constructImage(self):
plot = Plot()
for i in xrange(24):
line = Line()
line.xValues = xrange(5)
line.yValues = [(i+1) * x for x in line.xValues]
line.label = "Line %d" % (i + 1)
plot.add(line)
plot.addLineColor("red")
plot.addLineColor("blue")
plot.addLineStyle("-")
plot.addLineStyle("dashed")
plot.addLineStyle("dotted")
plot.addMarker('none')
plot.addMarker('x')
plot.addMarker('o')
plot.hasLegend(columns=2)
plot.setLegendLabelSize(8)
plot.save(self.imageName)
示例2: constructImage
# 需要导入模块: from boomslang import Plot [as 别名]
# 或者: from boomslang.Plot import addLineColor [as 别名]
def constructImage(self):
plot = Plot()
for i in xrange(6):
line = Line()
line.xValues = xrange(5)
line.yValues = [(i + 1) * x for x in line.xValues]
line.label = "Line %d" % (i + 1)
plot.add(line)
plot.addLineColor("red")
plot.addLineColor("blue")
plot.addLineColor("green")
plot.addMarker("")
plot.addMarker("x")
plot.hasLegend(columns=2)
plot.save(self.imageName)
示例3: Plot
# 需要导入模块: from boomslang import Plot [as 别名]
# 或者: from boomslang.Plot import addLineColor [as 别名]
#!/usr/bin/env python
from boomslang import Line, Plot
plot = Plot()
for i in xrange(6):
line = Line()
line.xValues = xrange(5)
line.yValues = [(i+1) * x for x in line.xValues]
line.label = "Line %d" % (i + 1)
plot.add(line)
plot.addLineColor("red")
plot.addLineColor("blue")
plot.addLineStyle("-")
plot.addLineStyle("--")
plot.addLineStyle(":")
plot.hasLegend(columns=2)
plot.save("linestyles.png")