blob: 1373be14d8b916fc40955ffcbe4e429bf00b105f [file] [log] [blame]
/* ----------------------------------------------------------------------- *//**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*//* ----------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
* Test Logistic Regression.
* -------------------------------------------------------------------------- */
/*
* The following example is taken from:
* http://luna.cas.usf.edu/~mbrannic/files/regression/Logistic.html
* Predicting heart attack
*/
DROP TABLE IF EXISTS patients;
CREATE TABLE patients (
id INTEGER NOT NULL,
second_attack INTEGER,
treatment INTEGER,
trait_anxiety INTEGER
);
INSERT INTO patients(ID, second_attack, treatment, trait_anxiety) VALUES
( 0, NULL, 1, 70),
( 1, 1, 1, 70),
( 2, 1, 1, 80),
( 3, 1, 1, 50),
( 4, 1, 0, 60),
( 5, 1, 0, 40);
drop table if exists temp_result;
drop table if exists temp_result_summary;
select logregr_train(
'patients',
'temp_result',
'second_attack',
'ARRAY[1, treatment]',
Null,
2,
'irls'
);