Example #1
0
def age_table():
    import dismod_at
    import copy
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the age table
    col_name = ['age']
    col_type = ['real']
    row_list = [[0.0], [20.0], [40.0], [60.0], [80.0], [100.0]]
    tbl_name = 'age'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('age_table: OK')
Example #2
0
def get_row_list():
    import dismod_at
    import copy
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the covariate table
    col_name = ['covariate_name', 'reference']
    col_type = ['text', 'real']
    row_list = [['sex', 0.0], ['income', 2000.0]]
    tbl_name = 'covariate'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    n_row = len(row_list)
    #
    # reverse the order of the columns
    col_name = ['reference', 'covariate_name']
    n_col = len(col_name)
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    #
    assert len(row_list) == n_row
    for i in range(n_row):
        assert len(row_list[i]) == n_col
        assert isinstance(row_list[i][0], float)
        assert isinstance(row_list[i][1], str)
    assert row_list[0][0] == 0.0
    assert row_list[0][1] == 'sex'
    assert row_list[1][0] == 2000.0
    assert row_list[1][1] == 'income'
    #
    connection.close()
    print('get_row_list: OK')
Example #3
0
def density_table() :
	import dismod_at
	import copy
	#
	file_name      = 'example.db'
	new            = True
	connection     = dismod_at.create_connection(file_name, new)
	cursor         = connection.cursor()
	#
	# create the density table
	col_name = [ 'density_name'  ]
	col_type = [ 'text'       ]
	row_list = [
		['uniform'],
		['gaussian'],
		['laplace'],
		['log_gaussian'],
		['log_laplace']
	]
	tbl_name = 'density'
	dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
	# ----------------------------------------------------------------------
	# include primary key in test
	check_name = [ tbl_name + '_id' ] + col_name
	check_list = list()
	for i in range( len(row_list) ) :
		check_list.append( [i] + row_list[i] )
	#
	row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
	assert row_list == check_list
	# ----------------------------------------------------------------------
	connection.close()
	print('density_table: OK')
Example #4
0
def integrand_table():
    import dismod_at
    import copy
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the integrand table
    col_name = ['integrand_name', 'eta']
    col_type = ['text', 'real']
    row_list = [['Tincidence', 1e-6], ['remission', 1e-6], ['mtall', 1e-6],
                ['mulcov_1', 1e-6]]
    tbl_name = 'integrand'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('integrand_table: OK')
Example #5
0
def nslist_table():
    import dismod_at
    import copy
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the nslist table
    col_name = ['nslist_name']
    col_type = ['test']
    row_list = [['first_list'], ['second_list']]
    tbl_name = 'nslist'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('nslist_table: OK')
Example #6
0
def node_table():
    import dismod_at
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the node table
    col_name = ['node_name', 'parent']
    col_type = ['text', 'integer']
    row_list = [['world', None], ['north_america', 0], ['united_states', 1],
                ['canada', 1]]
    tbl_name = 'node'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('node_table: OK')
Example #7
0
def rate_table():
    import dismod_at
    import copy
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the rate table
    col_name = [
        'rate_name', 'parent_smooth_id', 'child_smooth_id', 'child_nslist_id'
    ]
    col_type = ['text', 'integer', 'integer', 'integer']
    row_list = [['pini', 0, 1, None], ['iota', 2, 3, None],
                ['rho', 2, 3, None], ['chi', 2, 3, None], ['omega', 2, 3, 0]]
    tbl_name = 'rate'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('rate_table: OK')
Example #8
0
def covariate_table():
    import dismod_at
    import copy
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the covariate table
    col_name = ['covariate_name', 'reference', 'max_difference']
    col_type = ['text', 'real', 'real']
    row_list = [['sex', 0.0, 0.6], ['income', 2000.0, None]]
    tbl_name = 'covariate'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    #
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('covariate_table: OK')
Example #9
0
def prior_table():
    import dismod_at
    import copy
    import collections
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create the prior table
    ptype = 'integer primary key'
    col_name2type = collections.OrderedDict([('prior_name', 'text'),
                                             ('density_id', 'integer'),
                                             ('lower', 'real'),
                                             ('upper', 'real'),
                                             ('mean', 'real'), ('std', 'real'),
                                             ('eta', 'real')])
    col_name = list(col_name2type.keys())
    col_type = list(col_name2type.values())
    uniform_density_id = 0
    row_list = [
        [
            'none',  # prior_name
            uniform_density_id,  # density_id
            None,  # lower
            None,  # upper
            0,  # mean
            None,  # std
            None  # eta
        ],
        [
            'rate',  # prior_name
            uniform_density_id,  # density_id
            0.0,  # lower
            1.0,  # upper
            0.1,  # mean
            None,  # std
            None  # eta
        ]
    ]
    tbl_name = 'prior'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('prior_table: OK')
Example #10
0
def avgint_table():
    import dismod_at
    import copy
    import collections
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    #
    col_name2type = collections.OrderedDict([
        # required columns
        ('integrand_id', 'integer'),
        ('density_id', 'integer'),
        ('node_id', 'integer'),
        ('weight_id', 'integer'),
        ('age_lower', 'real'),
        ('age_upper', 'real'),
        ('time_lower', 'real'),
        ('time_upper', 'real'),
        # covariates
        ('x_sex', 'real'),
        ('x_income', 'real'),
    ])
    col_name = list(col_name2type.keys())
    col_type = list(col_name2type.values())
    row_list = [[
        1,  # integrand_id
        0,  # density_id
        3,  # node_id
        4,  # weight_id
        10.0,  # age_lower
        90.0,  # age_upper
        2000.,  # time_lower
        2005.,  # time_upper
        0.5,  # x_sex
        1000.  # x_income
    ]]

    # create the avgint table
    tbl_name = 'avgint'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('avgint_table: OK')
Example #11
0
def mulcov_table():
    import dismod_at
    import copy
    import collections
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    cursor = connection.cursor()
    #
    # create a mulcov table
    col_name2type = collections.OrderedDict([('mulcov_type', 'text'),
                                             ('rate_id', 'integer'),
                                             ('integrand_id', 'integer'),
                                             ('covariate_id', 'integer'),
                                             ('smooth_id', 'integer')])
    col_name = list(col_name2type.keys())
    col_type = list(col_name2type.values())
    row_list = [
        [
            'meas_value',  # muitiplier_type
            None,  # rate_id is null becasue measurement covariate
            2,  # integrand_id
            1,  # covariate_id
            2  # smooth_id
        ],
        [
            'rate_value',  # muitiplier_type
            1,  # rate_id
            None,  # integrand_id is null because a rate covariate
            2,  # covariate_id
            2  # smooth_id
        ]
    ]
    tbl_name = 'mulcov'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('mulcov_table: OK')
Example #12
0
def nslist_pair_table() :
	import dismod_at
	import copy
	import collections
	#
	file_name      = 'example.db'
	new            = True
	connection     = dismod_at.create_connection(file_name, new)
	cursor         = connection.cursor()
	#
	# create nslist_pair table column names and types
	col_name2type = collections.OrderedDict( [
		('nslist_id',       'integer' ),
		('node_id',                 'integer' ),
		('smooth_id',                'integer' )
	] )
	col_name = list(col_name2type.keys())
	col_type = list(col_name2type.values())
	# two lists with different smoothing for each node
	row_list = [
		# nslist_id, node_id, smooth_id
		[                 0,       0,         0 ],
		[                 0,       1,         1 ],
		[                 0,       2,         2 ],
		[                 1,       0,         3 ],
		[                 1,       1,         4 ],
		[                 1,       2,         5 ]
	]
	tbl_name = 'nslist_pair'
	dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
	# ----------------------------------------------------------------------
	# include primary key in test
	check_name = [ tbl_name + '_id' ] + col_name
	check_list = list()
	for i in range( len(row_list) ) :
		check_list.append( [i] + row_list[i] )
	#
	row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
	assert row_list == check_list
	# ----------------------------------------------------------------------
	connection.close()
	print('nslist_pair_table: OK')
Example #13
0
def create_database():
    import dismod_at
    import copy
    #
    # file_name, age_list, time_list, integrand_table
    file_name = 'example.db'
    age_list = [50.0]
    time_list = [2000.0]
    integrand_table = [{'name': 'mtother', 'minimum_meas_cv': 0.0}]
    #
    # node_table
    node_table = [{
        'name': 'world',
        'parent': ''
    }, {
        'name': 'north_america',
        'parent': 'world'
    }, {
        'name': 'united_states',
        'parent': 'north_america'
    }, {
        'name': 'canada',
        'parent': 'north_america'
    }]
    # weight_table
    fun = constant_weight_fun
    weight_table = [{
        'name': 'constant',
        'age_id': [0],
        'time_id': [0],
        'fun': fun
    }]
    # covariate_table
    covariate_table = [{
        'name': 'sex',
        'reference': 0.0,
        'max_difference': 0.6
    }]
    # data_table
    data_table = []
    row = {
        'integrand': 'mtother',
        'density': 'log_gaussian',
        'weight': 'constant',
        'hold_out': False,
        'meas_std': 1e-5,
        'age_lower': 0.0,
        'age_upper': 100.0,
        'time_lower': 1990.0,
        'time_upper': 2010.0,
        'sex': 0.5,
        'subgroup': 'world',
    }
    row['data_name'] = 'one'
    row['node'] = 'north_america'
    row['meas_value'] = 1.0e-5
    data_table.append(copy.copy(row))
    row['data_name'] = 'two'
    row['node'] = 'united_states'
    row['meas_value'] = 1.5e-5
    data_table.append(copy.copy(row))
    row['data_name'] = 'three'
    row['node'] = 'canada'
    row['meas_value'] = 0.5e-5
    data_table.append(copy.copy(row))
    #
    # prior_table
    prior_table = [{
        'name': 'zero',
        'density': 'uniform',
        'lower': 0.0,
        'upper': 0.0,
        'mean': 0.0,
    }, {
        'name': 'one',
        'density': 'uniform',
        'lower': 1.0,
        'upper': 1.0,
        'mean': 1.0,
    }, {
        'name': 'uniform_01',
        'density': 'uniform',
        'lower': 0.0,
        'upper': 1.0,
        'mean': 0.1,
    }, {
        'name': 'gaussian_01',
        'density': 'gaussian',
        'mean': 0.0,
        'std': 1.0,
    }, {
        'name': 'log_gaussian',
        'density': 'log_gaussian',
        'mean': 0.0,
        'eta': 1e-6
    }]
    #
    # smooth list
    smooth_table = [{
        'name': 'uniform_01_constant',
        'age_id': [0],
        'time_id': [0],
        'mulstd_value_prior_name': None,
        'mulstd_dage_prior_name': None,
        'mulstd_dtime_prior_name': None,
        'fun': smooth_uniform_01_fun
    }, {
        'name': 'gaussian_01_constant',
        'age_id': [0],
        'time_id': [0],
        'mulstd_value_prior_name': None,
        'mulstd_dage_prior_name': None,
        'mulstd_dtime_prior_name': None,
        'fun': smooth_gaussian_01_fun
    }]
    #
    # rate_table
    rate_table = [{
        'name': 'pini',
        'parent_smooth': 'uniform_01_constant',
        'child_smooth': 'gaussian_01_constant',
        'child_nslist': None
    }, {
        'name': 'iota',
        'parent_smooth': 'uniform_01_constant',
        'child_smooth': 'gaussian_01_constant',
        'child_nslist': None
    }, {
        'name': 'rho',
        'parent_smooth': 'uniform_01_constant',
        'child_smooth': 'gaussian_01_constant',
        'child_nslist': None
    }, {
        'name': 'chi',
        'parent_smooth': 'uniform_01_constant',
        'child_smooth': 'gaussian_01_constant',
        'child_nslist': None
    }, {
        'name': 'omega',
        'parent_smooth': 'uniform_01_constant',
        'child_smooth': 'gaussian_01_constant',
        'child_nslist': None
    }]
    #
    # mulcov_table
    mulcov_table = [{
        'covariate': 'sex',
        'type': 'rate_value',
        'effected': 'omega',
        'group': 'world',
        'smooth': 'uniform_01_constant'
    }]
    #
    # option_table
    option_table = [{
        'name': 'parent_node_name',
        'value': 'world'
    }, {
        'name': 'ode_step_size',
        'value': '10.0'
    }, {
        'name': 'random_seed',
        'value': '0'
    }, {
        'name': 'rate_case',
        'value': 'iota_pos_rho_pos'
    }, {
        'name': 'tolerance',
        'value': '1e-8'
    }, {
        'name': 'max_num_iter',
        'value': '100'
    }, {
        'name': 'print_level',
        'value': '0'
    }, {
        'name': 'derivative_test',
        'value': 'second-order'
    }]
    # avgint_table
    avgint_table = []
    row = {
        'integrand': 'mtother',
        'weight': 'constant',
        'age_lower': 0.0,
        'age_upper': 100.0,
        'time_lower': 1990.0,
        'time_upper': 2010.0,
        'sex': 0.5,
        'subgroup': 'world',
    }
    row['node'] = 'north_america'
    avgint_table.append(copy.copy(row))
    row['node'] = 'united_states'
    avgint_table.append(copy.copy(row))
    row['node'] = 'canada'
    row['meas_value'] = 0.5e-5
    avgint_table.append(copy.copy(row))
    # nslist_table
    nslist_table = dict()
    #
    # ----------------------------------------------------------------------
    # subgroup_table
    subgroup_table = [{'subgroup': 'world', 'group': 'world'}]
    # ----------------------------------------------------------------------
    dismod_at.create_database(file_name, age_list, time_list, integrand_table,
                              node_table, subgroup_table, weight_table,
                              covariate_table, avgint_table, data_table,
                              prior_table, smooth_table, nslist_table,
                              rate_table, mulcov_table, option_table)
    # ----------------------------------------------------------------------
    # Check database
    # ----------------------------------------------------------------------
    #
    # connection
    new = False
    connection = dismod_at.create_connection(file_name, new)
    #
    # age_table
    tbl_name = 'age'
    col_name = ['age']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    col_list = column_as_list(row_list, 0)
    assert col_list == age_list
    #
    # time_table
    tbl_name = 'time'
    col_name = ['time']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    col_list = column_as_list(row_list, 0)
    assert col_list == time_list
    #
    # intergrand_table
    tbl_name = 'integrand'
    col_name = ['integrand_name']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['mtother']]
    assert row_list == check_list
    #
    # weight_table
    tbl_name = 'weight'
    col_name = ['weight_name', 'n_age', 'n_time']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['constant', 1, 1]]
    assert row_list == check_list
    #
    # weight_grid_table
    tbl_name = 'weight_grid'
    col_name = ['weight_id', 'age_id', 'time_id', 'weight']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [[0, 0, 0, 1.0]]
    assert row_list == check_list
    #
    # covariate_table
    tbl_name = 'covariate'
    col_name = ['covariate_name', 'reference']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['sex', 0.0]]
    assert row_list == check_list
    #
    # node_table
    tbl_name = 'node'
    col_name = ['node_name', 'parent']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['world', None], ['north_america', 0], ['united_states', 1],
                  ['canada', 1]]
    assert row_list == check_list
    #
    # data_table
    tbl_name = 'data'
    col_name = ['integrand_id', 'node_id', 'meas_value', 'meas_std']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [[0, 1, 1.0e-5, 1e-5], [0, 2, 1.5e-5, 1e-5],
                  [0, 3, 0.5e-5, 1e-5]]
    assert row_list == check_list
    #
    # prior_table
    tbl_name = 'prior'
    col_name = ['prior_name', 'density_id', 'lower', 'upper']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['zero', 0, 0.0, 0.0], ['one', 0, 1.0, 1.0],
                  ['uniform_01', 0, 0.0, 1.0], ['gaussian_01', 1, None, None],
                  ['log_gaussian', 4, None, None]]
    assert row_list == check_list
    #
    # smooth_table
    tbl_name = 'smooth'
    col_name = [
        'smooth_name', 'n_age', 'n_time', 'mulstd_value_prior_id',
        'mulstd_dage_prior_id', 'mulstd_dtime_prior_id'
    ]
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['uniform_01_constant', 1, 1, None, None, None],
                  ['gaussian_01_constant', 1, 1, None, None, None]]
    assert row_list == check_list
    #
    # smooth_grid_table
    tbl_name = 'smooth_grid'
    col_name = [
        'smooth_id', 'age_id', 'time_id', 'value_prior_id', 'dage_prior_id',
        'dtime_prior_id'
    ]
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [[0, 0, 0, 2, None, None], [1, 0, 0, 3, None, None]]
    assert row_list == check_list
    #
    # rate_table
    tbl_name = 'rate'
    col_name = ['rate_name', 'parent_smooth_id', 'child_smooth_id']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['pini', 0, 1], ['iota', 0, 1], ['rho', 0, 1], ['chi', 0, 1],
                  ['omega', 0, 1]]
    assert row_list == check_list
    #
    # mulcov_table
    tbl_name = 'mulcov'
    col_name = [
        'mulcov_type', 'rate_id', 'integrand_id', 'covariate_id', 'group_id',
        'subgroup_smooth_id', 'group_smooth_id'
    ]
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['rate_value', 4, None, 0, 0, None, 0]]
    assert row_list == check_list
    #
    # option_table
    tbl_name = 'option'
    col_name = ['option_name', 'option_value']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [['parent_node_name', 'world'], ['ode_step_size', '10.0'],
                  ['random_seed', '0'], ['rate_case', 'iota_pos_rho_pos'],
                  ['tolerance', '1e-8'], ['max_num_iter', '100'],
                  ['print_level', '0'], ['derivative_test', 'second-order']]
    assert row_list == check_list
    #
    # avgint_table
    tbl_name = 'avgint'
    col_name = ['integrand_id', 'node_id', 'age_lower', 'age_upper']
    row_list = dismod_at.get_row_list(connection, tbl_name, col_name)
    check_list = [[0, 1, 0.0, 100.0], [0, 2, 0.0, 100.0], [0, 3, 0.0, 100.0]]
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('create_database: OK')
Example #14
0
def data_table():
    import dismod_at
    import copy
    import collections
    #
    file_name = 'example.db'
    new = True
    connection = dismod_at.create_connection(file_name, new)
    #
    col_name2type = collections.OrderedDict([
        # required columns
        ('data_name', 'text'),
        ('integrand_id', 'integer'),
        ('density_id', 'integer'),
        ('node_id', 'integer'),
        ('weight_id', 'integer'),
        ('hold_out', 'integer'),
        ('meas_value', 'real'),
        ('meas_std', 'real'),
        ('age_lower', 'real'),
        ('age_upper', 'real'),
        ('time_lower', 'real'),
        ('time_upper', 'real'),
        # covariates
        ('x_sex', 'real'),
        ('x_income', 'real'),
        # comments
        ('c_data_source', 'text')
    ])
    col_name = list(col_name2type.keys())
    col_type = list(col_name2type.values())
    row_list = [[
        'one',  # data_name
        1,  # integrand_id
        0,  # density_id
        3,  # node_id
        4,  # weight_id
        0,  # hold_out
        1e-4,  # meas_value
        1e-5,  # meas_std
        10.0,  # age_lower
        90.0,  # age_upper
        2000.,  # time_lower
        2005.,  # time_upper
        0.5,  # x_sex
        1000.,  # x_income
        'www.healthdata.org'  # c_data_source
    ]]

    # create the data table
    tbl_name = 'data'
    dismod_at.create_table(connection, tbl_name, col_name, col_type, row_list)
    # ----------------------------------------------------------------------
    # include primary key in test
    check_name = [tbl_name + '_id'] + col_name
    check_list = list()
    for i in range(len(row_list)):
        check_list.append([i] + row_list[i])
    #
    row_list = dismod_at.get_row_list(connection, tbl_name, check_name)
    assert row_list == check_list
    # ----------------------------------------------------------------------
    connection.close()
    print('data_table: OK')