Python straight from JMP
def getModelMetadata():
return {"creator": u"Fit Least Squares", "modelName": u"", "predicted": u"BoxCox(Sold Price Adjusted,-1.088)", "table": u"Nation Export", "version": u"18.0.2", "timestamp": u"2025-07-02T17:34:44Z"}
def getInputMetadata():
return {
u"Approx Living Area": "float",
u"YSB": "float"
}
def getOutputMetadata():
return {
u"Pred Formula BoxCox(Sold Price Adjusted,-1.088)": "float"
}
def score(indata, outdata):
outdata[u"Pred Formula BoxCox(Sold Price Adjusted,-1.088)"] = 386761700160.329 + 153.473460505384 * indata[u"Approx Living Area"] + -1519.63590642121 * indata[u"YSB"]
return outdata[u"Pred Formula BoxCox(Sold Price Adjusted,-1.088)"]