Color of Kaplan meiern with ecdf function

1 回表示 (過去 30 日間)
Changoleon
Changoleon 2017 年 12 月 22 日
コメント済み: Star Strider 2020 年 5 月 5 日
Hello,
How can I change the color of plots that are made with ecdf?
ecdf(days,'frequency',s_xrt,'function','survivor');

採用された回答

Star Strider
Star Strider 2017 年 12 月 22 日
You cannot. Instead, ask for the outputs and plot the data yourself.
Example
rng default % for reproducibility
failuretime = random('birnbaumsaunders',0.3,1,100,1);T = 0.9;
cens = (failuretime>T);
[f,x,flo,fup] = ecdf(failuretime,'function','cumulative hazard',...
'censoring',cens,'bounds','on');
figure(1)
stairs(x, f, '-r')
hold on
stairs(x, flo, ':g', 'LineWidth',1)
stairs(x, fup, ':g', 'LineWidth',1)
hold off
xlabel('x')
ylabel('H(x)')
grid
Experiment to get the result you want.
  4 件のコメント
Isabella Osetinsky-Tzidaki
Isabella Osetinsky-Tzidaki 2020 年 5 月 5 日
Great!
Star Strider
Star Strider 2020 年 5 月 5 日
Thank you!
A Vote would be appreciated!
.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeExploration and Visualization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by