フィルターのクリア

Data Tips in parallelplot

5 ビュー (過去 30 日間)
broken_arrow
broken_arrow 2022 年 4 月 7 日
回答済み: Adam Danz 2024 年 2 月 13 日
I have some additional data point information which I would like to display in the data tips of a parallel coordinate plot (function "parallelplot"). Unfortunately the "data tip properties" of the parallelplot handle are not readily accessible. Hence my question:
Is there a way to modify the data tips? Or maybe there is some workaround using a mouseover function or something similar?
  1 件のコメント
Gernot Reichl
Gernot Reichl 2024 年 2 月 12 日
編集済み: Gernot Reichl 2024 年 2 月 12 日
got the same issue @Adam Danz do you have any advice? Your last support was really helpful.
Thank you in advance
kind regards

サインインしてコメントする。

回答 (2 件)

Adam Danz
Adam Danz 2024 年 2 月 13 日
The only way to add content to the datatip in parallelplot is to do so interactively by right-clicking the datatip in parallelplot and selecting "Modify Data Tips". There, you can select additional table variables to appear in the datatip.
tsunamis = readtable('tsunamis.xlsx');
coordvars = {'Year','Validity','Cause','Country'};
p = parallelplot(tsunamis,'CoordinateVariables',coordvars,'GroupVariable','Validity');

Gernot Reichl
Gernot Reichl 2024 年 2 月 12 日
I use the coordvars input argument to select the desired variables from the data input tabel
h = parallelplot(data(:,1:8),'GroupVariable','Origin','CoordinateVariables',{'Weight','Accelaration'})
% additional datatip information from data-table is included
Is it possible to fix the datatips by clicking? I've used a buttonDownFunction so far. Does not work...
Additionally the hovered value is added to the datatip in the first line. Is there a way to disable it?
Thank you

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

タグ

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by