File: Histogram.py

package info (click to toggle)
python 1.5.1-7
  • links: PTS
  • area: main
  • in suites: slink
  • size: 11,616 kB
  • ctags: 32,701
  • sloc: ansic: 90,293; python: 74,171; makefile: 2,449; lisp: 2,097; sh: 702
file content (36 lines) | stat: -rwxr-xr-x 876 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Module 'Histogram'

from Buttons import *

# A Histogram displays a histogram of numeric data.
#
class HistogramAppearance(LabelAppearance, Define):
	#
	def define(self, parent):
		Define.define(self, (parent, ''))
		self.ydata = []
		self.scale = (0, 100)
		return self
	#
	def setdata(self, ydata, scale):
		self.ydata = ydata
		self.scale = scale # (min, max)
		self.parent.change(self.bounds)
	#
	def drawpict(self, d):
		(left, top), (right, bottom) = self.bounds
		min, max = self.scale
		size = max-min
		width, height = right-left, bottom-top
		ydata = self.ydata
		npoints = len(ydata)
		v1 = top + height	# constant
		h1 = left		# changed in loop
		for i in range(npoints):
			h0 = h1
			v0 = top + height - (ydata[i]-min)*height/size
			h1 = left + (i+1) * width/npoints
			d.paint((h0, v0), (h1, v1))
	#

class Histogram(NoReactivity, HistogramAppearance): pass