Multiply two probability plots (CDF/PDF)
I have two probability plots, one generated as a CDF, and one as a pdf. The exact mathematics is not important for my purpose, I only want to extract the qualitative idea.
This is the code I used:
figure()
ax1 = subplot(1,1,1);
cdfplot(temp);
% plot(DE,y)
ax1.XDir = ‘reverse’;
set(gca, ‘YScale’, ‘log’)
figure();
pd_HOLT = fitdist(total_HOLT,’Normal’);
DE_HOLT = bingroups_HOLT;
y_HOLT = pdf(pd_HOLT,DE_HOLT);
ax1 = subplot(1,1,1);
plot(DE_HOLT,y_HOLT)
ax1.XDir = ‘reverse’;
set(gca, ‘YScale’, ‘log’)
The x-axis is the same. How can I multiply these plots to convey a (qualitative) idea? Thanks.I have two probability plots, one generated as a CDF, and one as a pdf. The exact mathematics is not important for my purpose, I only want to extract the qualitative idea.
This is the code I used:
figure()
ax1 = subplot(1,1,1);
cdfplot(temp);
% plot(DE,y)
ax1.XDir = ‘reverse’;
set(gca, ‘YScale’, ‘log’)
figure();
pd_HOLT = fitdist(total_HOLT,’Normal’);
DE_HOLT = bingroups_HOLT;
y_HOLT = pdf(pd_HOLT,DE_HOLT);
ax1 = subplot(1,1,1);
plot(DE_HOLT,y_HOLT)
ax1.XDir = ‘reverse’;
set(gca, ‘YScale’, ‘log’)
The x-axis is the same. How can I multiply these plots to convey a (qualitative) idea? Thanks. I have two probability plots, one generated as a CDF, and one as a pdf. The exact mathematics is not important for my purpose, I only want to extract the qualitative idea.
This is the code I used:
figure()
ax1 = subplot(1,1,1);
cdfplot(temp);
% plot(DE,y)
ax1.XDir = ‘reverse’;
set(gca, ‘YScale’, ‘log’)
figure();
pd_HOLT = fitdist(total_HOLT,’Normal’);
DE_HOLT = bingroups_HOLT;
y_HOLT = pdf(pd_HOLT,DE_HOLT);
ax1 = subplot(1,1,1);
plot(DE_HOLT,y_HOLT)
ax1.XDir = ‘reverse’;
set(gca, ‘YScale’, ‘log’)
The x-axis is the same. How can I multiply these plots to convey a (qualitative) idea? Thanks. probability, distribution, multiply MATLAB Answers — New Questions