fitted line in a scatter plot within a subplot
이전 댓글 표시
Hi,
I would like to put a fitted line in a scatter plot, that I include in a figure with multiple plots. I am attaching the figure I produce, and I circle the subplot that I am referring to. Below you can find the code for my plotting.
figure
subplot(3,2,1) % first subplot
plot(thetaplot)
title('Human Capital Share')
xlabel('Time')
ylabel('Theta')
subplot(3,2,2) % first subplot
plot(khplot)
title('K/H ratio')
xlabel('Time')
ylabel('K/H')
subplot(3,2,3) % first subplot
plot(phiplot)
title('Sector II Share')
xlabel('Time')
ylabel('Phi')
subplot(3,2,4) % first subplot
plot(zhplot)
title('Z/H ratio')
xlabel('Time')
ylabel('Z/H')
subplot(3,2,5) % first subplot
plot(uplot)
title('MPC')
xlabel('Time')
ylabel(' Consumption per Wealth ')
subplot(3,2,6) % first subplot
plot(kh(500:T), kh(501:T+1), 'k.')
title('Policy Function for K/H')
xlabel('K_t')
ylabel('K_{t+1}')
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Two y-axis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!