83char *option[N_OPTIONS] = {
94#define USAGE "sddscorrelate [<inputfile>] [<outputfile>]\n\
95 [-pipe=[input][,output]]\n\
96 [-columns=<list-of-names>]\n\
97 [-excludeColumns=<list-of-names>]\n\
100 [-stDevOutlier[=limit=<factor>][,passes=<integer>]]\n\
101 [-majorOrder=row|column]\n\
102 [-threads=<number>]\n\
104Compute and evaluate correlations among columns of data.\n\
107 -pipe=[input][,output] Use standard input/output as input and/or output.\n\
108 -columns=<list-of-names> Specify columns to include in correlation analysis.\n\
109 -excludeColumns=<list-of-names> Specify columns to exclude from correlation analysis.\n\
110 -withOnly=<name> Correlate only with the specified column.\n\
111 -rankOrder Use rank-order (Spearman) correlation instead of linear (Pearson).\n\
112 -stDevOutlier[=limit=<factor>][,passes=<integer>]\n\
113 Remove outliers based on standard deviation.\n\
114 -majorOrder=row|column Set data ordering to row-major or column-major.\n\
115 -threads=<number> Number of threads for rank and correlation computation.\n\
117Program by Michael Borland. ("__DATE__ " "__TIME__ ", SVN revision: " SVN_VERSION ")\n"
119void replaceWithRank(
double *data, int64_t n);
120double *findRank(
double *data, int64_t n);
121void markStDevOutliers(
double *data,
double limit,
long passes,
short *keep, int64_t n);
122static long correlationPairIndex(
long i,
long j,
long columns);
124int main(
int argc,
char **argv) {
126 char **column, **excludeColumn, *withOnly;
127 long columns, excludeColumns;
128 char *input, *output;
129 SCANNED_ARG *scanned;
131 long i, j, row, readCode, rankOrder, iName1, iName2;
132 long pairCount, pairIndex;
134 int32_t outlierStDevPasses;
135 double **data, outlierStDevLimit;
136 double *correlationValue, *significanceValue;
137 long *correlationPoints;
140 char s[SDDS_MAXLINE];
141 unsigned long pipeFlags, dummyFlags, majorOrderFlag;
142 short columnMajorOrder = -1;
146 argc =
scanargs(&scanned, argc, argv);
150 output = input = withOnly = NULL;
151 columns = excludeColumns = 0;
152 column = excludeColumn = NULL;
155 outlierStDevPasses = 0;
156 outlierStDevLimit = 1.0;
160 for (iArg = 1; iArg < argc; iArg++) {
161 if (scanned[iArg].arg_type == OPTION) {
163 switch (
match_string(scanned[iArg].list[0], option, N_OPTIONS, 0)) {
164 case SET_MAJOR_ORDER:
166 scanned[iArg].n_items--;
167 if (scanned[iArg].n_items > 0 &&
168 (!
scanItemList(&majorOrderFlag, scanned[iArg].list + 1, &scanned[iArg].n_items, 0,
169 "row", -1, NULL, 0, SDDS_ROW_MAJOR_ORDER,
170 "column", -1, NULL, 0, SDDS_COLUMN_MAJOR_ORDER, NULL)))
171 SDDS_Bomb(
"invalid -majorOrder syntax/values");
172 if (majorOrderFlag & SDDS_COLUMN_MAJOR_ORDER)
173 columnMajorOrder = 1;
174 else if (majorOrderFlag & SDDS_ROW_MAJOR_ORDER)
175 columnMajorOrder = 0;
179 SDDS_Bomb(
"only one -columns option may be given");
180 if (scanned[iArg].n_items < 2)
182 column =
tmalloc(
sizeof(*column) * (columns = scanned[iArg].n_items - 1));
183 for (i = 0; i < columns; i++)
184 column[i] = scanned[iArg].list[i + 1];
187 if (scanned[iArg].n_items < 2)
188 SDDS_Bomb(
"invalid -excludeColumns syntax");
189 moveToStringArray(&excludeColumn, &excludeColumns, scanned[iArg].list + 1, scanned[iArg].n_items - 1);
193 SDDS_Bomb(
"only one -withOnly option may be given");
194 if (scanned[iArg].n_items < 2)
196 withOnly = scanned[iArg].list[1];
199 if (!
processPipeOption(scanned[iArg].list + 1, scanned[iArg].n_items - 1, &pipeFlags))
205 case SET_STDEVOUTLIER:
206 scanned[iArg].n_items--;
207 outlierStDevPasses = 1;
208 outlierStDevLimit = 1.0;
209 if (!
scanItemList(&dummyFlags, scanned[iArg].list + 1, &scanned[iArg].n_items, 0,
211 "passes",
SDDS_LONG, &outlierStDevPasses, 1, 0, NULL) ||
212 outlierStDevPasses <= 0 || outlierStDevLimit <= 0.0)
213 SDDS_Bomb(
"invalid -stdevOutlier syntax/values");
216 if (scanned[iArg].n_items != 2 ||
217 sscanf(scanned[iArg].list[1],
"%d", &threads) != 1 || threads < 1)
221 fprintf(stderr,
"Error: unknown or ambiguous option: %s\n", scanned[iArg].list[0]);
227 input = scanned[iArg].list[0];
229 output = scanned[iArg].list[0];
241 columns = appendToStringArray(&column, columns,
"*");
243 columns = appendToStringArray(&column, columns, withOnly);
245 if ((columns = expandColumnPairNames(&SDDSin, &column, NULL, columns, excludeColumn, excludeColumns, FIND_NUMERIC_TYPE, 0)) <= 0) {
247 SDDS_Bomb(
"no columns selected for correlation analysis");
255 SDDS_DefineColumn(&SDDSout,
"CorrelationSignificance",
"P$br$n", NULL,
"Linear correlation coefficient significance", NULL,
SDDS_DOUBLE, 0) < 0 ||
256 SDDS_DefineColumn(&SDDSout,
"CorrelationPoints", NULL, NULL,
"Number of points used for correlation", NULL,
SDDS_LONG, 0) < 0 ||
258 SDDS_DefineParameter(&SDDSout,
"sddscorrelateInputFile", NULL, NULL,
"Data file processed by sddscorrelate", NULL,
SDDS_STRING, input ? input :
"stdin") < 0 ||
259 SDDS_DefineParameter(&SDDSout,
"sddscorrelateMode", NULL, NULL, NULL, NULL,
SDDS_STRING, rankOrder ?
"Rank-Order (Spearman)" :
"Linear (Pearson)") < 0 ||
260 SDDS_DefineParameter1(&SDDSout,
"sddscorrelateStDevOutlierPasses", NULL, NULL,
"Number of passes of standard-deviation outlier elimination applied", NULL,
SDDS_LONG, &outlierStDevPasses) < 0 ||
261 SDDS_DefineParameter1(&SDDSout,
"sddscorrelateStDevOutlierLimit", NULL, NULL,
"Standard-deviation outlier limit applied", NULL,
SDDS_DOUBLE, &outlierStDevLimit) < 0) {
265 if (columnMajorOrder != -1)
266 SDDSout.layout.data_mode.column_major = columnMajorOrder;
268 SDDSout.layout.data_mode.column_major = SDDSin.layout.data_mode.column_major;
273 data = malloc(
sizeof(*data) * columns);
274 pairCount = columns * (columns - 1) / 2;
275 correlationValue = pairCount ? malloc(
sizeof(*correlationValue) * pairCount) : NULL;
276 significanceValue = pairCount ? malloc(
sizeof(*significanceValue) * pairCount) : NULL;
277 correlationPoints = pairCount ? malloc(
sizeof(*correlationPoints) * pairCount) : NULL;
279 (pairCount && (!correlationValue || !significanceValue || !correlationPoints)) ||
280 (rankOrder && !(rank = malloc(
sizeof(*rank) * columns))) ||
281 !(accept = malloc(
sizeof(*accept) * columns))) {
289 !
SDDS_SetParameters(&SDDSout, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE,
"CorrelatedRows", rows, NULL)) {
292 for (i = 0; i < columns; i++) {
299 if (outlierStDevPasses) {
300 accept[i] = malloc(
sizeof(**accept) * rows);
305#pragma omp parallel for if (threads > 1) num_threads(threads)
306 for (i = 0; i < columns; i++) {
308 rank[i] = findRank(data[i], rows);
309 if (outlierStDevPasses)
310 markStDevOutliers(data[i], outlierStDevLimit, outlierStDevPasses, accept[i], rows);
312#pragma omp parallel for private(j, iName1, iName2, pairIndex) if (threads > 1) num_threads(threads)
313 for (i = 0; i < columns; i++) {
314 for (j = i + 1; j < columns; j++) {
316 double correlation, significance;
317 pairIndex = correlationPairIndex(i, j, columns);
321 if (strcmp(withOnly, column[i]) == 0) {
324 }
else if (strcmp(withOnly, column[j]) == 0) {
328 correlationValue[pairIndex] = 0;
329 significanceValue[pairIndex] = 0;
330 correlationPoints[pairIndex] = 0;
335 rankOrder ? rank[j] : data[j],
336 accept[i], accept[j], rows, &count);
338 correlationValue[pairIndex] = correlation;
339 significanceValue[pairIndex] = significance;
340 correlationPoints[pairIndex] = count;
343 for (i = row = 0; i < columns; i++) {
344 for (j = i + 1; j < columns; j++) {
345 pairIndex = correlationPairIndex(i, j, columns);
349 if (strcmp(withOnly, column[i]) == 0) {
352 }
else if (strcmp(withOnly, column[j]) == 0) {
359 snprintf(s,
sizeof(s),
"%s.%s", column[iName1], column[iName2]);
364 3, correlationValue[pairIndex],
365 4, significanceValue[pairIndex],
366 5, correlationPoints[pairIndex],
372 for (i = 0; i < columns; i++) {
384 free(correlationValue);
385 free(significanceValue);
386 free(correlationPoints);
403static long correlationPairIndex(
long i,
long j,
long columns) {
404 return i * (2 * columns - i - 1) / 2 + (j - i - 1);
407void markStDevOutliers(
double *data,
double limit,
long passes,
short *keep, int64_t n) {
408 double sum1, sum2, variance, mean, absLimit;
410 int64_t i, summed, kept;
412 for (i = 0; i < n; i++)
415 for (pass = 0; pass < passes && kept; pass++) {
418 for (i = 0; i < n; i++) {
426 mean = sum1 / summed;
428 for (i = 0; i < n; i++) {
430 sum2 += sqr(data[i] - mean);
432 variance = sum2 / summed;
433 if (variance > 0.0) {
434 absLimit = limit * sqrt(variance);
435 for (i = 0; i < n; i++) {
436 if (keep[i] && fabs(data[i] - mean) > absLimit) {
450int compareData(
const void *d1,
const void *d2) {
460double *findRank(
double *data, int64_t n) {
461 double *rank = malloc(
sizeof(*rank) * n);
464 for (int64_t i = 0; i < n; i++)
466 replaceWithRank(rank, n);
470void replaceWithRank(
double *data, int64_t n) {
472 int64_t i, j, iStart, iEnd;
474 indexedData =
SDDS_Malloc(
sizeof(*indexedData) * n);
475 for (i = 0; i < n; i++) {
476 indexedData[i].data = data[i];
477 indexedData[i].originalIndex = i;
479 qsort(indexedData, n,
sizeof(*indexedData), compareData);
480 for (i = 0; i < n; i++)
481 data[indexedData[i].originalIndex] = (
double)i;
482 for (i = 0; i < n - 1; i++) {
483 if (data[i] == data[i + 1]) {
485 for (j = i + 2; j < n; j++) {
486 if (data[j] != data[i])
490 double averageRank = (iStart + iEnd) / 2.0;
491 for (j = iStart; j <= iEnd; j++)
492 data[indexedData[j].originalIndex] = averageRank;
SDDS (Self Describing Data Set) Data Types Definitions and Function Prototypes.
int32_t SDDS_SetRowValues(SDDS_DATASET *SDDS_dataset, int32_t mode, int64_t row,...)
int32_t SDDS_StartPage(SDDS_DATASET *SDDS_dataset, int64_t expected_n_rows)
int32_t SDDS_SetParameters(SDDS_DATASET *SDDS_dataset, int32_t mode,...)
int32_t SDDS_DefineParameter1(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, void *fixed_value)
Defines a data parameter with a fixed numerical value.
int32_t SDDS_InitializeOutput(SDDS_DATASET *SDDS_dataset, int32_t data_mode, int32_t lines_per_row, const char *description, const char *contents, const char *filename)
Initializes the SDDS output dataset.
int32_t SDDS_WritePage(SDDS_DATASET *SDDS_dataset)
Writes the current data table to the output file.
int32_t SDDS_DefineColumn(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, int32_t field_length)
Defines a data column within the SDDS dataset.
int32_t SDDS_WriteLayout(SDDS_DATASET *SDDS_dataset)
Writes the SDDS layout header to the output file.
int32_t SDDS_DefineParameter(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, char *fixed_value)
Defines a data parameter with a fixed string value.
void SDDS_PrintErrors(FILE *fp, int32_t mode)
Prints recorded error messages to a specified file stream.
void * SDDS_Malloc(size_t size)
Allocates memory of a specified size.
void SDDS_RegisterProgramName(const char *name)
Registers the executable program name for use in error messages.
void SDDS_Bomb(char *message)
Terminates the program after printing an error message and recorded errors.
#define SDDS_STRING
Identifier for the string data type.
#define SDDS_LONG
Identifier for the signed 32-bit integer data type.
#define SDDS_DOUBLE
Identifier for the double data type.
Utility functions for SDDS dataset manipulation and string array operations.
void * tmalloc(uint64_t size_of_block)
Allocates a memory block of the specified size with zero initialization.
void bomb(char *error, char *usage)
Reports error messages to the terminal and aborts the program.
double linearCorrelationSignificance(double r, long rows)
Compute the statistical significance of a linear correlation coefficient.
double linearCorrelationCoefficient(double *data1, double *data2, short *accept1, short *accept2, long rows, long *count)
Compute the linear correlation coefficient for two data sets.
long match_string(char *string, char **option, long n_options, long mode)
Matches a given string against an array of option strings based on specified modes.
int scanargs(SCANNED_ARG **scanned, int argc, char **argv)
long processPipeOption(char **item, long items, unsigned long *flags)
void processFilenames(char *programName, char **input, char **output, unsigned long pipeFlags, long noWarnings, long *tmpOutputUsed)
long scanItemList(unsigned long *flags, char **item, long *items, unsigned long mode,...)
Scans a list of items and assigns values based on provided keywords and types.