plot x label like plot(x, y) in boxplot

1 view (last 30 days)
Miraboreasu
Miraboreasu on 10 Mar 2023
Edited: Voss on 11 Mar 2023
Hello,
I need to use boxplot, but how to plot boxplot like plot(x,y), because the x-label (position) for my boxplot is unified
like
load data.mat
x=[1,2,5,10,16]
boxplot(x, data)
Thanks

Accepted Answer

Voss
Voss on 10 Mar 2023
data = magic(5);
x=[1,2,5,10,16];
boxplot(data,x);
  4 Comments
Voss
Voss on 11 Mar 2023
Edited: Voss on 11 Mar 2023

You're welcome!

Sign in to comment.

More Answers (0)

Products


Release

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!