I have data with very small values between -1 to 1 in X, Y and Z values between -1 to 1 like below
X,Y,Z
-0.858301,-1,1.00916
-0.929151,-1,1.0047
-0.896405,-0.940299,1.00396
-0.960967,-0.944075,1.00035
wireframe(Z~X+Y,data=sol)
Seems wireframe works only with larger values (1, 2, 3...) , How do I plot small values?
wireframe
might be use in one of two ways -With a rectangular data matrix where the values of
x
andy
are implied by the shape of the matrix.Or with a dataframe, where the values of
x
andy
are explicit, and here you can use a formula for the relationships between the columns.