필터 지우기
필터 지우기

How to plot the colormap of a 3D data set

조회 수: 2 (최근 30일)
Matlab_Student
Matlab_Student 2018년 1월 19일
댓글: Matlab_Student 2018년 1월 21일
1st var: age [31,32,33,34,35]
2nd var: years of working [10,15]
3rd var: corresponding yearly income(*10k) [8,8,6,9,9,10,14,17,13,9]
-----edits---->Each combination of age&years corresponds to an income. For example, 31-yr-old person with 10 yrs of working experience earns 80k, 31-yr-old person with 15 yrs of working experience also earns 80k, etc.<----edits-----
I would like to represent the numbers in the third column with a color scale (smaller=blue --> larger=yellow) looking like a 2D histogram except the third dimension doesn't represent number of occurrence.

채택된 답변

Walter Roberson
Walter Roberson 2018년 1월 19일
income_matrix = reshape(yearly_income, length(years_working), []);
imagesc(age,years_working,income_matrix)
xticks(age)
yticks(years_working)
It was not clear what order the data was in in yearly_matrix so you need to check the first line. Is your yearly income arranged so that all of the ages are used in order for each years working entry? Or is it arranged so that all of the years working are used in order for each age? The above code assumes it is the years working are grouped together.
  댓글 수: 5
Walter Roberson
Walter Roberson 2018년 1월 19일
I suspect the colorbar might be interfering with the y axis labels. Try
set(gca, 'YAxisLocation', 'left')
If that does not work then try again without the colorbar and see whether the y axes ticks show up.
Getting the x axes to label properly is a going to be a bit of a nuisance if you need the data cursor to show the correct position information. If you do not care about data cursor then use
imagesc(income_matrix);
xticks(1:length(age));
yticks(1:length(year));
set(gca, 'xticklabel', age);
set(gca, 'yticklabel', year);
Matlab_Student
Matlab_Student 2018년 1월 21일
combing these two worked!!Thanks!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by