필터 지우기
필터 지우기

how to display the valueof q1, q3, max, min, whisker of boxplot

조회 수: 49 (최근 30일)
Skydriver
Skydriver 2020년 11월 11일
댓글: Ameer Hamza 2020년 11월 11일
Ia ave te coding like this
clear all
clc
filename = 'table_FC.xlsx';
rng default
N = 10000;
data = randn(N,1);
figure(1)
boxplot([data],'PlotStyle','traditional','Labels',{'FC'},'Whisker',1)
xlabel('Type of FC');
ylabel('Fines Content (%)');
But I want to display the value of Min, Q1, Median, Q3 and Maximum. Let me know how to do that.
Thank you

답변 (1개)

Ameer Hamza
Ameer Hamza 2020년 11월 11일
This links: https://www.mathworks.com/help/stats/boxplot.html#bu5f8g7-4 shows the functions used by boxplot to calculate these values. You can also call these functions on your dataset.
  댓글 수: 4
Skydriver
Skydriver 2020년 11월 11일
Can you show me what is the function to do manually
Ameer Hamza
Ameer Hamza 2020년 11월 11일
You can do it in GUI. In the figure window, go the to "insert" menu and select "text box" to insert text boxes in on your axes.

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

Community Treasure Hunt

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

Start Hunting!

Translated by