Skip to main content

hstem

lq.hstem(x, y, color=auto, stroke=auto, mark=auto, mark-size=5pt, mark-color=auto, base=0, base-stroke=red, label=none, clip=true, z-index=2)

Creates a horizontal stem plot.

#let ys = lq.linspace(0, 10, num: 20)

#lq.diagram(
lq.hstem(
ys.map(calc.cos),
ys,
color: orange,
mark: "d",
base-stroke: black,
)
)

Also see stem for vertical stem plots.

Parameters

x : array

An array of xx coordinates.

y : array

An array of yy coordinates. The number of xx and yy coordinates must match.

color : auto | color    default: auto

Combined color for line and marks. See also the parameters hstem.line and hstem.mark-color which take precedence over color, if set.

stroke : auto | stroke    default: auto

The line style to use for this plot (takes precedence over hstem.color).

mark : auto | lq.mark | str    default: auto

The mark to use to mark data points. See plot.mark.

mark-size : length    default: 5pt

Size of the marks.

mark-color : auto | color    default: auto

Color of the marks (takes precedence over hstem.color).

base : int | float    default: 0

Defines the xx coordinate of the base line.

base-stroke : stroke    default: red

How to stroke the base line.

label : content    default: none

The legend label for this plot. See plot.label.

clip : bool    default: true

Whether to clip the plot to the data area. See plot.clip.

z-index : int | float    default: 2

Determines the zz position of this plot in the order of rendered diagram objects. See plot.z-index.