フィルターのクリア

Set plot colour when assigned to a variable

2 ビュー (過去 30 日間)
William Garrett
William Garrett 2020 年 3 月 16 日
回答済み: darova 2020 年 3 月 16 日
I am creating a plot showing how air pollution changes in a room over time. I have a record of activity in the room and want to colour the plot according to wether there is activity (1) or no activity (0), for which I have created a logistical variable.
I have used the below code but it is plotting no activity in yellow - which is very hard to see. How do I determine my own colours when plotting colour according to a variable?
scatter(Table.Date_Time, Table.PM_Concentration, 5, Table.Activity)
  1 件のコメント
Ankit
Ankit 2020 年 3 月 16 日
s = scatter(Table.Date_Time, Table.PM_Concentration, 5, Table.Activity);
s.MarkerEdgeColor = 'your color choice';
s.MarkerFaceColor = 'your color choice';
and so on..

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

採用された回答

darova
darova 2020 年 3 月 16 日
try to change color axis
caxis([min(Table.Activity) max(Table.Activity)])
colormap jet

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeView and Analyze Simulation Results についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by