필터 지우기
필터 지우기

MAXIMUM VALUE- BOXPLOT

조회 수: 3 (최근 30일)
DUMITRU ROBERT GUGIU
DUMITRU ROBERT GUGIU 2021년 2월 8일
댓글: samuel okeleye 2021년 2월 9일
Hi
I have a vector of 250 000 values.
I need to boxplot the vector uu
ex: bboxplot (uu)
How can I set the maximum value? because the maximum value marks it as an anomalous value
  댓글 수: 2
samuel okeleye
samuel okeleye 2021년 2월 9일
Boxplot is supposed to show you the following values:
Median, 25th and 75th percentile and outliers if any exists.
I think you should investigate the numbers in your data and see if they are all proper numbers.
You can also break the vector into pieces and make a boxplot of the pieces to see where the problem is coming from.
For example:
uu_FirstPart=uu(1:100000);
uu_SecondPart=uu(100001:250000);
boxplot(uu_FirstPart);
boxplot(uu_SecondPart);
% You could break it into 10 parts if you want.
% You just need to investigate your data first and be sure that the values are reasonable
samuel okeleye
samuel okeleye 2021년 2월 9일
You can also paste your code and the error you get.

댓글을 달려면 로그인하십시오.

답변 (0개)

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by