Color of Kaplan meiern with ecdf function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Changoleon
el 22 de Dic. de 2017
Comentada: Star Strider
el 5 de Mayo de 2020
Hello,
How can I change the color of plots that are made with ecdf?
ecdf(days,'frequency',s_xrt,'function','survivor');
0 comentarios
Respuesta aceptada
Star Strider
el 22 de Dic. de 2017
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 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!