Re: Model fitting
- To: mathgroup at smc.vnet.net
- Subject: [mg128769] Re: Model fitting
- From: Ray Koopman <koopman at sfu.ca>
- Date: Sat, 24 Nov 2012 02:28:26 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <k8nc4m$dfl$1@smc.vnet.net>
On Nov 23, 12:31 am, dzinov... at gmail.com wrote: > I have an array of 3D data in the form {xi,yi,0/1} (that is, the z coordinate is either 0 or 1). The points are not on a rectangular grid. The 0 and 1 areas are more or less contiguous, though the boundary between them can be somewhat fuzzy. The boundary is expected to be described by the equation y=a x^b. How can I adapt NonlinearModelFit or any other standard function to find the best fit values for a and b? Thanks! y = a x^b is linear in log-log coordinates, so use LogitModelFit with Log@x and Log@y as the predictors; i.e., the probability of observing z == 1 is 1/(1 + Exp[-(b0 + b1*Log@x + b2*Log@y)]).