lets_plot.xlab#

lets_plot.xlab(label)#

Add label to the x axis.

Parameters:
labelstr

The text for the x axis label.

Returns:
FeatureSpec

Axis label specification.

Examples

1from lets_plot import *
2LetsPlot.setup_html()
3data = {'x': list(range(10)), 'y': list(range(10))}
4ggplot(data, aes('x', 'y')) + geom_point(aes(size='y')) + \
5    xlab('x axis label')