lineplot

cfplot.lineplot(f=None, x=None, y=None, fill=True, lines=True, line_labels=True, title=None, ptype=0, linestyle='-', linewidth=1.0, color='k', xlog=False, ylog=False, verbose=None, swap_xy=False, marker=None, markersize=5.0, label=None, legend_location='upper right', xunits=None, yunits=None, xlabel=None, ylabel=None, xticks=None, yticks=None, xticklabels=None, yticklabels=None, xname=None, yname=None, axes=True, xaxis=True, yaxis=True)[source]
lineplot is the interface to line plotting in cf-plot.
The minimum use is lineplot(f) where f is a CF field.
If x and y are passed then an appropriate plot is made allowing
x vs data and y vs data plots.
When making a labelled line plot:
always have a label for each line
always put the legend location as an option to the last call to lineplot

f - CF data used to make a line plot
x - x locations of data in y
y - y locations of data in x
linestyle=’-‘ - line style
color=’k - line color
linewidth=1.0 - line width
marker=None - marker for points along the line
markersize=5.0 - size of the marker
xlog=False - log x-axis
ylog=False - log y-axis
label=None - line label - label for line
legend_location=’upper right’ - default location of legend
verbose=None - change to 1 to get a verbose listing of what lineplot
is doing

The following parameters override any CF data defaults:
title=None - plot title
xunits=None - x units
yunits=None - y units
xlabel=None - x name
ylabel=None - y name
xname=None - depreciated keyword
yname=None - depreciated keyword
xticks=None - x ticks
xticklabels=None - x tick labels
yticks=None - y ticks
yticklabels - y tick labels
axes=True - plot x and y axes
xaxis=True - plot xaxis
yaxis=True - plot y axis