![]() |
|
Data Fields | |
int | verbose |
char | stop_on_warning |
char | output_delimiter [100] |
char | input_delimiters [100] |
char | db_name_column [300] |
char * | nan_string |
char | db_engine |
char | db_user [101] |
char | db_pass [101] |
FILE * | log_file |
int | thread_count |
int | rng_seed |
float | version |
The global options.
char apop_opts_type::db_engine |
If this is 'm', use mySQL, else use SQLite.
char apop_opts_type::db_name_column[300] |
If set, the name of the column in your tables that holds row names.
char apop_opts_type::db_pass[101] |
Password for database login. Max 100 chars.
char apop_opts_type::db_user[101] |
Username for database login. Max 100 chars.
char apop_opts_type::input_delimiters[100] |
Deprecated. Please use per-function inputs to apop_text_to_db and apop_text_to_data. Default = "|,\t"
FILE* apop_opts_type::log_file |
The file handle for the log. Defaults to stderr
, but change it with, e.g., apop_opts.log_file = fopen("outlog", "w");
char* apop_opts_type::nan_string |
The string used to indicate NaN.
char apop_opts_type::output_delimiter[100] |
The separator between elements of output tables. The default is "\t", but for LaTeX, use "&\t", or use "|" to get pipe-delimited output.
char apop_opts_type::stop_on_warning |
See outline page on error handling.
int apop_opts_type::thread_count |
Deprecated. Use omp_set_num_threads(n)
.
int apop_opts_type::verbose |
Set this to zero for silent mode, one for errors and warnings. default = 0.