Is there a way of adding character labels to the tic marks on the x- or y-axes in plotXY() or plotScatter(). In the deprecated PQ graphics, this would have been done with 'xlab=" or "ylab=". Thank you
1 Answer
0
You can simply pass in the string labels to either plotXY
or plotScatter
, like this:
labels = "A" $| "B" $| "C";
y = { 3, 4, 2 };
plotXY(labels, y);
Your Answer
1 Answer
0
You can simply pass in the string labels to either plotXY
or plotScatter
, like this:
labels = "A" $| "B" $| "C";
y = { 3, 4, 2 };
plotXY(labels, y);