switch order of rowid to be last in output signature

This commit is contained in:
Andy Eschbacher 2017-01-04 16:36:46 -05:00
parent dbee19723e
commit b049da4155
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
CREATE OR REPLACE FUNCTION
CDB_GWR(subquery text, dep_var text, ind_vars text[],
bw numeric default null, fixed boolean default False, kernel text default 'bisquare')
RETURNS table(coeffs JSON, stand_errs JSON, t_vals JSON, predicted numeric, residuals numeric, r_squared numeric, rowid bigint, bandwidth numeric)
RETURNS table(coeffs JSON, stand_errs JSON, t_vals JSON, predicted numeric, residuals numeric, r_squared numeric, bandwidth numeric, rowid bigint)
AS $$
from crankshaft.regression import GWR

View File

@ -89,4 +89,4 @@ class GWR:
for k, var in enumerate(ind_vars)}))
return zip(coeffs, stand_errs, t_vals,
predicted, residuals, r_squared, rowid, bw)
predicted, residuals, r_squared, bw, rowid)