@header@
 
 
matplotlib.lines
index
/matplotlib/lines.py

This module contains all the 2D line class which can draw with a
variety of line styles, markers and colors

 
Modules
       
sys

 
Classes
       
matplotlib.artist.Artist
Line2D

 
class Line2D(matplotlib.artist.Artist)
     Methods defined here:
__init__(self, dpi, bbox, xdata, ydata, linewidth=0.5, linestyle='-', color='b', marker=None, markersize=6, markeredgecolor=None, markerfacecolor=None, transx=Transform: Bound1D: 0 1 to Bound1D: 0 1, transy=Transform: Bound1D: 0 1 to Bound1D: 0 1)
dpi is a DPI instance
bbox is a Bound2D instance with the display bounding box xdata
xdata is a sequence of x data
ydata is a sequence of y data
linewidth is the width of the line in points
linestle is one of lineStyls
marker is one of lineMarkers or None
markersize is the size of the marker in points
markeredgecolor  and markerfacecolor can be any color arg 
 
Public attributes:
transx : a Transorm instance
transy : a Transorm instance
copy_properties(self, line)
get_color(self)
get_linestyle(self)
get_linewidth(self)
get_marker(self)
get_markeredgecolor(self)
get_markerfacecolor(self)
get_markersize(self)
get_window_extent(self)
get_xdata(self)
get_ydata(self)
set_color(self, color)
set_data(self, x, y)
set_data_clipping(self, b)
b is a boolean that sets whether data clipping is on
set_linestyle(self, s)
set_linewidth(self, w)
set_marker(self, marker)
set_markeredgecolor(self, ec)
set_markerfacecolor(self, fc)
set_markersize(self, sz)
set_vertical_offset(self, voff, transOffset=None)
set_xclip(self, xmin, xmax)
set_xdata(self, x)
set_yclip(self, ymin, ymax)
set_ydata(self, y)

Methods inherited from matplotlib.artist.Artist:
draw(self, drawable=None, *args, **kwargs)
Derived classes drawing method
get_child_artists(self)
Return all artists contained in self
get_clip_on(self)
Return whether artist uses clipping
get_dpi(self)
Get the DPI of the display
set_child_attr(self, attr, val)
Set attribute attr for self, and all child artists
set_clip_on(self, b)
Set whether artist is clipped to bbox
set_lod(self, on)
Set Level of Detail on or off.  If on, the artists may examine
things like the pixel width of the axes and draw a subset of
their contents accordingly
set_transform(self, transform)
Set the artist transform for self and all children

Data and other attributes inherited from matplotlib.artist.Artist:
aname = 'Artist'

 
Functions
       
arange(...)
arange(start, stop=None, step=1, typecode=None)
 
 Just like range() except it returns an array whose type can be
specified by the keyword argument typecode.
array(...)
array(sequence, typecode=None, copy=1, savespace=0) will return a new array formed from the given (potentially nested) sequence with type given by typecode.  If no typecode is given, then the type will be determined as the minimum type required to hold the objects in sequence.  If copy is zero and sequence is already an array, a reference will be returned.  If savespace is nonzero, the new array will maintain its precision in operations.
reshape(...)
reshape(a, (d1, d2, ..., dn)).  Change the shape of a to be an n-dimensional array with dimensions given by d1...dn.  Note: the size specified for the new array must be exactly equal to the size of the  old one or an error will occur.
searchsorted = binarysearch(...)
binarysearch(a,v)
take(...)
take(a, indices, axis=0).  Selects the elements in indices from array a along the given axis.

 
Data
        False = False
Float = 'd'
Int = 'l'
True = True
division = _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192)
generators = _Feature((2, 2, 0, 'alpha', 1), (2, 3, 0, 'final', 0), 4096)
lineMarkers = {'+': 1, ',': 1, '.': 1, '<': 1, '>': 1, '^': 1, 'o': 1, 's': 1, 'v': 1}
lineStyles = {'-': 1, '--': 1, '-.': 1, ':': 1}
logical_and = <ufunc 'logical_and'>
@footer@