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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
|
## Automatically adapted for scipy Oct 31, 2005 by
# $Id: gist.py 1950 2006-06-13 00:09:43Z oliphant $
# ---------------------------------------------------------------------
#
# NAME: gist.py
#
# SCIPY
# 10/15/04 teo Added convert_bounding box.
# 09/28/03 teo Changed eps file to accept noepsi when not available.
# 09/28/03 teo Changed all == None to is None and != None to not is None
#
# CHANGES:
# 11/08/04 mdh plh: Change test if color is a list; also test if array.
# 06/16/03 mdh plh: Added a keyword (height) for font size of labels.
# 04/07/03 mdh Modifications to plh to add labels below x-axis; removed
# legend and added label keyword.
# 03/19/03 llc Dave Grote reported a bug in plfc: nc==None should be
# nc is None.
# 03/13/03 llc Add one NOTE on plfc.
# 03/12/03 llc Updated doc comments.
# 12/25/02 mdh Add plh to draw histograms
# 11/26/01 llc Add docstring for plmk (missing).
# 11/05/01 llc Use pydoc's help (not the one in help.py).
# 10/30/01 llc Disable is_scalar call; type(arraytype) not implemented
# in Python.
# Also, merge in documentation (if it exists) from gist.help
# after each function, so that pydoc's help can return it.
# 10/12/01 llc Re-port of gist from archived version.
# 03/19/03 llc Dave Grote reported a bug in plfc: nc==None should be
# nc is None.
# 04/07/03 mdh Modifications to plh to add labels below x-axis; removed
# legend and added label keyword.
#
# ---------------------------------------------------------------------
"""
Gist is a portable graphics package for scientific applications. It
can produce interactive graphics for Unix/Linux (X11), Windows,
and Mac platforms, as well as produce file output conforming to ANSI
standard CGM or standard Postscript.
Gist was developed by David H. Munro (munro1@llnl.gov) at
Lawrence Livermore National Laboratory, as part of his Yorick
scientific interpreter. Lee Busby was the original author of
the Python Gist C extension module. He adapted much of the
module from similar code written by Munro for Yorick.
Copyright (c) 1996, 1997, The Regents of the University of
California. All rights reserved. See Legal.htm for full
text and disclaimer.
*********************************************************************
This version of PyGist is built on the portability layer from
Yorick 1.5. The documentation for each function has been
integrated with the function using pydoc. Type:
help(function_name)
to get the inline documentation for function_name.
Hit spacebar to page down, and 'q' to end documentation.
Single quotes and backquotes delimiting strings in documentation
should be double quotes.
"""
__version__ = "1.5.22"
from scipy import *
import sys, os # To be sure expand_path has posixpath and we have sys.path
from gistC import *
from pydoc import help
from shapetest import *
from numpy.oldnumeric import *
from gistfuncs import *
# Parameters used by pltitle and xytitles
pltitle_height= 18;
pltitle_font= "helvetica";
# Parameters used by plmk and plmk_default
_plmk_count = 0
_plmk_msize = _plmk_color = _plmk_width = None
# ---------------------------------------------------------------------
def winkill(*N):
"""
winkill( [n] )
Delete the current graphics window, or graphics window N (0-7).
"""
if N:
window(N[0], display="", hcp="")
else:
window(display="", hcp="")
# ---------------------------------------------------------------------
def pltitle(title):
"""
pltitle( title )
Plot TITLE centered above the coordinate system for any of the
standard Gist styles. You will need to customize this for other
plot styles.
"""
vp = viewport()
xmidpt = (vp[0] + vp[1])/2.0
plt( title, xmidpt, vp[3] + 0.02,
font=pltitle_font, justify="CB", height=pltitle_height)
# ---------------------------------------------------------------------
def ylimits(ymin='u',ymax='u'):
"""
ylimits(ymin, ymax)
Set the y-axis plot limits in the current coordinate system to
YMIN, YMAX, which may each be a number to fix the corresponding
limit to a specified value, or the string "e" to make the
corresponding limit take on the extreme value of the currently
displayed data. Arguments may be omitted only from the right. Use
limits( xmin, xmax ) to accomplish the same function for the x-axis
plot limits. Note that the corresponding Yorick function for
ylimits is ``range'' - since this word is a Python built-in function,
I've changed the name to avoid the collision.
SEE ALSO: plsys, limits, logxy, plg
"""
limits('u','u',ymin,ymax)
# ---------------------------------------------------------------------
def moush(*arg):
"""
moush(y, x, ireg) or moush(y, x) or moush()
Number of args can be 0, 2, or 3.
Returns the 1-origin zone index for the point clicked in
for the default mesh, or for the mesh (X,Y) (region array IREG).
"""
narg = len(arg)
if narg == 3: # (y, x, ireg)
xy = mouse (-1, 0, "<Click mouse in mesh>")
if xy is None: return None
return mesh_loc (xy[1], xy[0], arg[0], arg[1], arg[2]);
elif narg == 2: # (y, x)
xy = mouse (-1, 0, "<Click mouse in mesh>")
if xy is None: return None
return mesh_loc (xy[1], xy[0], arg[0], arg[1]);
elif narg == 0: # ()
xy = mouse (-1, 0, "<Click mouse in mesh>")
if xy is None: return None
return mesh_loc (xy[1], xy[0]);
else:
print "Mouse takes 0, 2, or 3 args: ( [ y, x [ , ireg ] ] )"
return None
# ---------------------------------------------------------------------
# PURPOSE: Create an encapsulated PostScript file.
# To 1) convert bounding box and/or 2) include preview,
# this code requires 1) ghostscript and/or 2) its associated
# ps2epsi utility.
# uses the bbox device of ghostscript
#
# ---------------------------------------------------------------------
import os
import shutil
import tempfile
if sys.version[:3]>='2.3':
import re
else:
import pre as re
False = 0
True = 1
bbox_re = re.compile(r"%%BoundingBox:\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)")
bbox2_re = re.compile(r"BoundingBox:\s+(\d+)\s+(\d+)\s+(\d+)\s+(\d+)")
def convert_bounding_box(inname, outname):
fid = open(inname,'r')
oldfile = fid.read()
fid.close()
gsargs = '-dNOPAUSE -dBATCH -sDEVICE=bbox'
# use cygwin gs if present
cmd = 'gs %s %s' % (gsargs, inname)
w, r = os.popen4(cmd)
w.close()
result = r.read()
r.close()
res = bbox_re.search(result)
if res is None and sys.platform=='win32':
cmd = 'gswin32c %s %s' % (gsargs, inname)
w, r = os.popen4(cmd)
w.close()
result = r.read()
r.close()
res = bbox_re.search(result)
if res is None:
sys.stderr.write('To fix bounding box install ghostscript in the PATH')
return False
bbox = map(int,res.groups())
newstr = bbox2_re.sub("BoundingBox: %d %d %d %d" % tuple(bbox), oldfile)
fid = open(outname, 'wb')
fid.write(newstr)
fid.close()
return True
def eps(name,epsi=0,pdf=0):
"""
Write the picture in the current graphics window to the Encapsulated
PostScript file NAME+".eps" (i.e.- the suffix .eps is added to NAME).
The last extension of name is stripped (if it is .eps)
to avoid .eps.eps files
Optionally Uses the command ps2epsi if available to add a preview
Any hardcopy file associated
with the current window is first closed, but the default hardcopy file is
unaffected. As a side effect, legends are turned off and color table
dumping is turned on for the current window.
The environment variable PS2EPSI_FORMAT contains the format for the
command to start the ps2epsi program.
SEE ALSO: window, fma, hcp, hcp_finish, plg
"""
name,ignore = os.path.splitext(name)
if ignore == '.eps':
totalname = name
else:
totalname = name + ignore
apath, basename = os.path.split(totalname)
name = totalname + ".ps"
window (hcp = name, dump = 1, legends = 0)
hcp ()
window (hcp="")
if epsi:
command = os.environ.get('PS2EPSI_FORMAT') or 'ps2epsi'
os.system ("%s %s" % (command, name))
else:
convert_bounding_box(name, "%s.epsi" % basename)
# check for presence of epsi file to see if ps2epsi command
# or convert_bounding box succeeded.
if os.path.exists('%s.epsi' % basename):
os.remove(name)
shutil.copy("%s.epsi" % basename, "%s.eps" % totalname)
os.remove("%s.epsi" % basename)
else:
os.rename("%s.ps" % totalname, "%s.eps" % totalname)
if pdf:
os.system("epstopdf %s.eps" % totalname)
# ---------------------------------------------------------------------
def xytitles(xtitle = "", ytitle = "", delta = (0.,0.)):
vp = viewport()
xmidpt = (vp[0] + vp[1])/2.0
ymidpt = (vp[2] + vp[3])/2.0
if len(xtitle) > 0:
plt(xtitle, xmidpt, vp[2] - 0.050 + delta[1],
font=pltitle_font, justify="CT", height=pltitle_height)
if len(ytitle) > 0:
plt(ytitle, vp[0] - 0.050 + delta[0], ymidpt,
font=pltitle_font, justify="CB", height=pltitle_height, orient=1)
# ---------------------------------------------------------------------
def _spanz(lb,ub,n):
if n < 3: raise ValueError, '3rd arg must be at least 3'
c = 0.5*(ub - lb)/(n - 1.0)
b = lb + c
a = (ub - c - b)/(n - 2.0)
return map(lambda x,A=a,B=b: A*x + B, arange(n-1))
# .. predefined markers: square, +, delta, circle, diamond, x, grad
_seq = _spanz(-pi,pi,37)
_plmk_markers = (
array([[-1,1,1,-1],[-1,-1,1,1]])*.007,
array([[-4,-1,-1,1,1,4,4,1,1,-1,-1,-4],
[-1,-1,-4,-4,-1,-1,1,1,4,4,1,1]])*.007/sqrt(7),
array([[-sqrt(3),sqrt(3),0],[-1,-1,2]])*.007/sqrt(.75*sqrt(3)),
array([cos(_seq),sin(_seq)])*.007/(pi/4.),
array([[-1,0,1,0],[0,-1,0,1]])*.007*sqrt(2),
array([[-1,-2.5,-1.5,0,1.5,2.5,1,2.5,1.5,0,-1.5,-2.5],
[0,-1.5,-2.5,-1,-2.5,-1.5,0,1.5,2.5,1,2.5,1.5]])*.007*sqrt(2)/sqrt(7),
array([[0,sqrt(3),-sqrt(3)],[-2,1,1]])*.007/sqrt(.75*sqrt(3))
)
del(_seq)
# ---------------------------------------------------------------------
def plmk(y,x=None,marker=None,width=None,color=None,msize=None):
"""
Make a scatter plot of the points Y versus X. If X is nil,
it defaults to indgen(numberof(Y)). By default, the marker
cycles through 7 predefined marker shapes. You may specify a shape
using the marker= keyword, line width using the width= keyword (you
get solid fills for width>=10), color using the color= keyword.
You can also use the msize= keyword to scale the marker (default
msize=1.0). You can change the default width, color, or msize
using the plmk_default function.
The predefined marker= values are:
marker=
1 square
2 cross
3 triangle
4 circle
5 diamond
6 cross (rotated 45 degrees)
7 triangle (upside down)
You may also put marker=[xm,ym] where xm and ym are vectors
of NDC coordinates to design your own custom marker shapes.
SEE ALSO: plmk_default, plg (type=0 keyword)
"""
global _plmk_count
global _plmk_color, _plmk_width, _plmk_msize
color_dict = { 'bg':-1, 'fg':-2, 'black':-3, 'white':-4, 'red':-5,
'green':-6, 'blue':-7, 'cyan':-8, 'magenta':-9, 'yellow':-10 }
z = None
if marker is None:
marker = _plmk_markers[(_plmk_count)%7]
_plmk_count = _plmk_count + 1
elif type(marker) == type(0):
marker = _plmk_markers[marker-1];
xm = marker[0]
ym = marker[1]
if not msize: msize = _plmk_msize;
if msize:
xm = xm * msize;
ym = ym * msize;
if not color: color = _plmk_color;
ecolor = color;
if type(color) == type(""):
color = color_dict[color];
if not width: width = _plmk_width;
if width >= 10:
if not color:
color = ecolor = -2 # magic number for "fg"
z = ones(1+len(y)) * color
z = z.astype(UnsignedInt8) # convert array to type <unsigned char>
width = None
n = ones(1+len(y));
n[0] = len(ym);
if not x: x = 1 + arange(len(y));
plfp( z, concatenate((ym,y)), concatenate((xm,x)),n,
edges=1, ewidth=width, ecolor=ecolor)
# ---------------------------------------------------------------------
def plmk_default(color=None, msize=None, width=None):
"""
Set default color, msize, and width values for plmk. Use
width=10 to get solid fills. With no parameters, plmk_default
restores the initial default values.
"""
global _plmk_color, _plmk_width, _plmk_msize
if color: _plmk_color = color
if width: _plmk_width = width
if msize: _plmk_msize = msize
if not (color or width or msize):
_plmk_msize = _plmk_color = _plmk_width = None
from types import *
# ---------------------------------------------------------------------
def spann (zmin, zmax, n = 8, fudge = 0, force = 0) :
"""
spann (zmin, zmax, n = 8, fudge = 0, force = 0)
return no more than N equally spaced "nice" numbers between
ZMIN and ZMAX.
Note that in general spann may not supply the number of
values that you asked for. To force it to do so, set
keyword FORCE to nonzero.
SEE ALSO: span, spanl, plc, plfc
"""
dz = (zmax - zmin) / max (float (n), 0.)
if dz == 0. :
dz = abs (zmin)
if (dz != 0.) :
power = floor (log10 (dz) + 0.00001)
base = dz / (10. ** power)
if base > 5.00001 :
base = 1.0
power = power + 1.0
elif base > 2.00001 :
base = 5.0
else :
base = 2.0
# Round dz up to nearest "nice" number
dz = base * 10.0 ** power
zmin = ceil (zmin / dz - fudge)
zmax = floor (zmax / dz + fudge)
if (force == 0) :
nz = int (zmax - zmin + 1.0)
else :
nz = n
if nz > 1 :
levs = span (zmin * dz, zmax * dz, nz)
else :
if nz < 1 :
if base < 1.5 :
base = 5.0
power = power - 1
elif base < 2.5 :
base = 1.0
else :
base = 2.0
dz = base * 10.0 ** power
zmin = ceil (zmin / dz + 0.001)
levs = array ( [zmin * dz])
else :
levs = array ( [-1.0, 1.0])
return (levs)
_ContourError = "ContourError"
# ---------------------------------------------------------------------
def plfc (z, y, x, ireg, contours = 8, colors = None, region = 0,
triangle = None, scale = "lin") :
"""
plfc (z, y, x, ireg, contours = 8, colors = None, region = 0,
triangle = None, scale = "lin")
fills contours of Z on the mesh Y versus X. Y, X, and IREG are
as for plm. The Z array must have the same shape as Y and X.
The function being contoured takes the value Z at each point
(X, Y) -- that is, the Z array is presumed to be point-centered.
NOTE: The ireg argument was not in the Yorick Gist plfc.
The CONTOURS keyword can be an integer specifying the number of
contours desired, or a list of the values of Z at which you want
contour curves. These curves divide the mesh into len(CONTOURS+1)
regions, each of which is filled with a solid color. If CONTOURS is
None or not given, 8 "nice" equally spaced level values spanning the
range of Z are selected.
If you specify CONTOURS, you may also specify COLORS, an array of
color numbers (Python dtype.char 'B', integers between 0 and the
length of the current palette - 1, normally 199) of length
len(CONTOURS)+1. If you do not specify them, equally
spaced colors are chosen.
If CONTOURS is an integer, SCALE expresses how contour levels
are determined. SCALE may be "lin", "log", or "normal"
specifying linearly, logarithmically, or normally spaced
contours. Note that unlike Yorick's plfc, this routine does
not use spann to compute its contours. Neither, apparently,
does plc, which uses a third algorithm which matches neither
the one we use nor the one spann uses. So if you plot filled
contours and then plot contour lines, the contours will in
general not coincide exactly.
Note that you may use spann to calculate your contour levels
if you wish.
The following keywords are legal (each has a separate help entry):
KEYWORDS: triangle, region
SEE ALSO: plg, plm, plc, plv, plf, pli, plt, pldj, plfp, plmesh
color_bar, spann, contour, limits, logxy, range, fma, hcp
"""
# 1. Get contour colors
(vcmin, vcmax) = zmin_zmax (z, ireg)
if type (contours) == IntType :
n = contours
vc = zeros (n + 2, Float)
vc [0] = vcmin
vc [n + 1] = vcmax
if scale == "lin" or scale is None :
# This stuff is in lieu of the spann stuff in Yorick.
vc [1:n + 1] = vcmin + arange (1, n + 1, dtype = Float) * \
(vcmax - vcmin) / (n + 1)
elif scale == "log" :
vc [1:n + 1] = vcmin + exp (arange (1, n + 1, dtype = Float) * \
log (vcmax - vcmin) / (n + 1))
elif scale == "normal" :
zlin = ravel (z)
lzlin = len (zlin)
zbar = add.reduce (zlin) / lzlin
zs = sqrt ( (add.reduce (zlin ** 2) - lzlin * zbar ** 2) /
(lzlin - 1))
z1 = zbar - 2. * zs
z2 = zbar + 2. * zs
diff = (z2 - z1) / (n - 1)
vc [1:n + 1] = z1 + arange (n) * diff
else :
raise _ContourError, "Incomprehensible scale parameter."
elif type (contours) == ArrayType and contours.dtype.char == Float :
n = len (contours)
vc = zeros (n + 2, Float)
vc [0] = vcmin
vc [n + 1] = vcmax
vc [1:n + 1] = sort (contours)
else :
raise _ContourError, "Incorrect contour specification."
if colors is None :
colors = (arange (n + 1, dtype = Float) * (199. / n)).astype ('B')
else :
colors = array (colors)
if len (colors) != n + 1 :
raise "PLFC_Error", \
"colors must specify one more color than contours."
if colors.dtype.char != 'B' :
colors = bytscl (colors)
if triangle is None :
triangle = zeros (z.shape, Int16)
# Set mesh first
plmesh (y, x, ireg, triangle = triangle)
for i in range (n + 1) :
[nc, yc, xc] = contour (array ( [vc [i], vc [i + 1]]), z)
if (is_scalar(nc) and nc == 0 or nc is None) :
continue
plfp ( (ones (len (nc)) * colors [i]).astype ('B'),
yc, xc, nc, edges = 0)
def plh (y, x=None, width=1, hide=0, color=None, labels=None, height=None):
"""
plh ( y, [x, labels, <keylist>])
draws a histogram, where the height of the bars is given
by Y. If X is None, the bars in the histogram have a
width equal to unity. If X is a single real number, the
widths of the bars are all equal to this number. If X is
a one-dimensional array with an equal number of elements
as the Y array, then X is interpreted as the widths of
the bars. In all of these cases, the histogram starts at
the origin. However, if X is a one-dimensional array
with one element more than Y, then X is interpreted as
the locations of the start and end points of the bars in
the histogram. If X is a one-dimensional array with twice
as many elements as Y, then X represents the start and
end points for each bar separately.
The keyword color is either a single color, representing
the fill color of the bars, or a list of colors, one for
each bar.
If the keyword labels is given, then the horizontal tick
marks and numerical labels are switched off. The keyword
labels should then consist of a list of strings, with the
same number of elements as Y. These labels are then drawn
below the horizontal axis. The keyword height, if given,
specifies the font height for the labels.
To switch the tick marks and labels back on for subsequent
plots, you can execute
window(style="work.gs")
which will reset the window to the usual work.gs style sheet.
The following keywords are legal (each has a separate help entry):
KEYWORDS: width, hide, color, height
SEE ALSO: plg, plm, plc, plv, plf, pli, plt, pldj, plfp, plmesh
color_bar, spann, contour, limits, logxy, range, fma, hcp
"""
color_dict = { 'bg':-1, 'fg':-2, 'black':-3, 'white':-4, 'red':-5,
'green':-6, 'blue':-7, 'cyan':-8, 'magenta':-9, 'yellow':-10 }
n = len(y)
barx = [[]] * n
if x is None:
for i in range(n):
barx[i] = array([i,i,i+1,i+1])
else:
if type(x) == IntType or type(x) == FloatType:
# x denotes the width of the bars, which are all equal
for i in range(n-1):
barx[i] = array([i,i,i+1,i+1]) * x
elif type(x) == ListType or type(x) == ArrayType:
if len(x) == n:
# x denotes the width of the bars, which can be different
offset = 0
for i in range(n):
barx[i] = offset + array([0,0,1,1]) * x[i]
offset = offset + x[i]
elif len(x) == n + 1:
for i in range(n):
barx[i] = array([x[i],x[i],x[i+1],x[i+1]])
elif len(x) == 2*n:
for i in range(n):
barx[i] = array([x[2*i],x[2*i],x[2*i+1],x[2*i+1]])
else:
raise "plh error: inconsistent length of X"
bary = [[]] * n
for i in range(n):
bary[i] = array([0,y[i],y[i],0])
if labels:
if current_window() < 0:
window(style="boxed.gs",legends=0)
style = get_style()
if style['systems'][0]['ticks']['horizontal']['flags'] & 99:
# We need to switch off tick marks and labels here
window(style="boxed.gs", legends=0)
style = get_style()
flags = style['systems'][0]['ticks']['horizontal']['flags']
flags = flags & ( ~ 99) # Switch off horizontal tick marks, labels
style['systems'][0]['ticks']['horizontal']['flags'] = flags
set_style(style)
if color is not None:
if type(color) != ListType and type(color) != ArrayType:
color = [color] * n
for i in range(n):
z = color[i]
if type(z) == StringType: z = color_dict[z]
plfp(array([z],'B'),bary[i],barx[i],[4])
for i in range(n):
plg(bary[i],barx[i],width=width,hide=hide,marks=0)
if labels:
[left,right,bottom,top] = viewport()
hticks = style['systems'][0]['ticks']['horizontal']
scale = (right-left)/(barx[-1][-1]-barx[0][0])
y = bottom - hticks['labelOff'] + hticks['tickLen'][0] + hticks['tickOff']
if height:
for i in range(n):
x = left + scale * ((barx[i][0]+barx[i][-1])/2. - barx[0][0])
plt(labels[i],x,y,justify="CT",height=height)
else:
for i in range(n):
x = left + scale * ((barx[i][0]+barx[i][-1])/2. - barx[0][0])
plt(labels[i],x,y,justify="CT")
|