Creating a boxplot from 2 tables
이전 댓글 표시
I am working with a dataset that containts 100 sample from red and 100 sample white wine. Basiclly I have 2 tables, one for red and one for white. Each table containts 12 charateristics that are mesearued for both wines. Now I need to make box plot for each of the charatersitic of wine for both red and white. That is 24 box plot. I tried to use function boxplot(Name of the table), but I get 12 boxplot that are not scaled and not usable.
I need a answer which is the easiset way to make one boxplot from table that I need and for characterstic I need.
Thank you in advance
답변 (1개)
Ameer Hamza
2020년 3월 20일
If you have two tables t1 and t2, you can combine them in boxplot by combining their matrices
boxplot([t1.Variables t2.Variables])
댓글 수: 5
Faris Durakovic
2020년 3월 20일
Ameer Hamza
2020년 3월 20일
That code will only work if you want to select all the columns. If you only want to select first column then try
boxplot([t1{:,1} t2{:,1}])
Faris Durakovic
2020년 3월 20일
편집: Faris Durakovic
2020년 3월 20일
Ameer Hamza
2020년 3월 21일
편집: Ameer Hamza
2020년 3월 21일
Which release of MATLAB are you using? What is the type of variables red and white? Are these matrices or tables?
Faris Durakovic
2020년 3월 21일
카테고리
도움말 센터 및 File Exchange에서 Box Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




