Corrplot function : setup Variable name
조회 수: 3 (최근 30일)
이전 댓글 표시
I am using the function corrplot reading a matrix in one Excel file.
The first row of the Excel file contains the name of Variables that I would like to see on the left and down of the result plot.
Instead I see: Var1 Var2 .....
Please someone can help me to unserstand how to define the name of Variables on the Excel file ? Or how I can prepare a text data file ?
Thanks.
Nicola
댓글 수: 2
채택된 답변
Walter Roberson
2021년 12월 27일
T = readtable("myExcelFile.xlsx");
data = table2array(T);
vars = T.Properties.VariableNames;
corrplot(data, 'varNames', vars)
댓글 수: 1
Khanh Dang
2023년 1월 10일
Hi Walter Roberson,
Please help me how to change the fontsize and color of subplots in the correlation matrix which is plotted by corrplot function?
I need a help immediately, I am on roadblock to complete report now.
Thanks advance!
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!