Displaying 1 result from an estimated 1 matches for "mle_beta0".
Did you mean:
mle_beta1
2010 Apr 20
1
3D surface plot with wireframe or persp?
...f(x,y), and try a surface plot with this function.
But, on the reference of "wireframe" requires data option, so I generated x
and y, and computed z with them. But, still I have a problem to draw a
surface plot. The code and errors are
##################################################
mle_beta0=64.43707;
mle_beta1=-24365.16;
# generating for the requirement of "wireframe"
data_for_c = runif(1000,30,85); # range is (30,50)
data_for_s = sort(1/(273+data_for_c));
data_for_time = sort(runif(1000,0,100000)) # range is (0,100000)
data_for_R = exp((-exp(mle_be...