This file is indexed.

/usr/share/doc/python-scitools/examples/grab_backend_matplotlib_ex1.py is in python-scitools 0.9.0-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 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
#!/usr/bin/env python
"""Configure a plot by grabbing the matplotlib backend

This example demonstrates the use of setp and getp, which is a
typical matlab/pyplot way to set properties of objects

setp(handler, 'something', value) or getp(handler [, 'something'])
will call set_something or get_something from handler 

getp with only the handler argument will show full property list
"""
__author__ = 'Rolv Erlend Bredesen <rolv@simula.no'

from scitools.easyviz.matplotlib_ import *
import numpy as np

def _pyplot_patch_alpha(alpha=0.2):
    """Makes patches (e.g. fill objects) located in the current axes
    transparent with given opacity coefficient."""
    setp = pyplot.setp
    getp = pyplot.getp 
    ax = pyplot.gca()
    for child in getp(ax, 'children'):
        if not isinstance(child, pyplot.matplotlib.patches.Polygon):
            continue
        if __debug__:
            print 'Old alpha value:', getp(child, 'alpha'), 'new:', alpha
        setp(child, 'alpha', alpha)

if __name__ == '__main__':

    if backend == 'matplotlib':
        pyplot = get_backend()
        # override some properties for nicer plots:
        pyplot.rcParams.update({'font.size' : 10,
                               'axes.labelsize' : 10,
                               'text.fontsize' : 10, 
                               'xtick.labelsize' : 8,
                               'ytick.labelsize' : 8,
                               })
    
    x = np.linspace(0.0, 10., 101)
    y1 = np.sin(x)
    y2 = np.cos(3*x)
        
    # fix fill boundaries so we color between zero-line and values
    x_ = np.concatenate([x[:], x[::-1]])
    y1_ = np.concatenate([y1[:], 0*y1[:]])
    y2_ = np.concatenate([y2[:], 0*y2[:]])

    subplot(2,1,1)
    fill(y1_, 'b', y2_, 'g', x=x_, grid=True, title='no transparency')
    subplot(2,1,2)
    fill(y1_, 'b', y2_, 'g', x=x_, alpha=0.2, title='transparent fill')
    
    if backend == 'matplotlib':
        # Set alpha on patches
        _pyplot_patch_alpha(0.3)
        # Don't use normal hardcopy after an update in backend
        pyplot.savefig('tmp_transparent_fill.png') 

    raw_input('Press Return key to quit: ')