필터 지우기
필터 지우기

How to Prevent Lowess 3D Curve From Dipping into Negative Values

조회 수: 9 (최근 30일)
CMatlabWold
CMatlabWold 2020년 10월 28일
댓글: CMatlabWold 2020년 10월 28일
Hi,
I have a code. The Z value represents total complaints. When I run the code to get a 3D scatterplot with Lowess curve, the curve dips into negative values. Since it is impossible to have a negative value of complaints, this is a problem for me.
I need the Lowess curve to stay in the positive realm. I'd appreciate any help.
This is my code:
function [fitresult, gof] = createFit1(x, y, z)
ss0 = readtable('StatenIsland3D.xlsx')
x = ss0{:,1}
y= ss0{:,2}
z = ss0{:,3}
[xData, yData, zData] = prepareSurfaceData( x, y, z );
% Set up fittype and options.
ft = fittype( 'lowess' );
% Fit model to data.
[fitresult, gof] = fit( [xData, yData], zData, ft, 'Normalize', 'on' );
% Plot fit with data.
figure( 'Name', 'Staten Island' );
h = plot( fitresult, [xData, yData], zData );
legend( h, 'Staten Island', 'z vs. x, y', 'Location', 'NorthEast', 'Interpreter', 'none' );
% Label axes
xlabel( 'x', 'Interpreter', 'none' );
ylabel( 'y', 'Interpreter', 'none' );
zlabel( 'z', 'Interpreter', 'none' );
grid on

답변 (1개)

Image Analyst
Image Analyst 2020년 10월 28일
Did you try
fitresult = max([0, fitresult]); % bump negative values up to zero.
  댓글 수: 1
CMatlabWold
CMatlabWold 2020년 10월 28일
If I add it under
[fitresult, gof] = fit( [xData, yData], zData, ft, 'Normalize', 'on' );
fitresult = max([0, fitresult])
I get this message:
Error using fittype/horzcat (line 6)
Concatenation of double objects not permitted.
Error in LowessTrial2 (line 17)
fitresult = max([0, fitresult])

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by