124 {
125 int iArg;
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;
133 int64_t rows;
134 int32_t outlierStDevPasses;
135 double **data, outlierStDevLimit;
136 double *correlationValue, *significanceValue;
137 long *correlationPoints;
138 double **rank;
139 short **accept;
140 char s[SDDS_MAXLINE];
141 unsigned long pipeFlags, dummyFlags, majorOrderFlag;
142 short columnMajorOrder = -1;
143 int threads = 1;
144
146 argc =
scanargs(&scanned, argc, argv);
147 if (argc < 2)
149
150 output = input = withOnly = NULL;
151 columns = excludeColumns = 0;
152 column = excludeColumn = NULL;
153 pipeFlags = 0;
154 rankOrder = 0;
155 outlierStDevPasses = 0;
156 outlierStDevLimit = 1.0;
157 rank = NULL;
158 accept = NULL;
159
160 for (iArg = 1; iArg < argc; iArg++) {
161 if (scanned[iArg].arg_type == OPTION) {
162
163 switch (
match_string(scanned[iArg].list[0], option, N_OPTIONS, 0)) {
164 case SET_MAJOR_ORDER:
165 majorOrderFlag = 0;
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;
176 break;
177 case SET_COLUMNS:
178 if (columns)
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];
185 break;
186 case SET_EXCLUDE:
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);
190 break;
191 case SET_WITHONLY:
192 if (withOnly)
193 SDDS_Bomb(
"only one -withOnly option may be given");
194 if (scanned[iArg].n_items < 2)
196 withOnly = scanned[iArg].list[1];
197 break;
198 case SET_PIPE:
199 if (!
processPipeOption(scanned[iArg].list + 1, scanned[iArg].n_items - 1, &pipeFlags))
201 break;
202 case SET_RANKORDER:
203 rankOrder = 1;
204 break;
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");
214 break;
215 case SET_THREADS:
216 if (scanned[iArg].n_items != 2 ||
217 sscanf(scanned[iArg].list[1], "%d", &threads) != 1 || threads < 1)
219 break;
220 default:
221 fprintf(stderr, "Error: unknown or ambiguous option: %s\n", scanned[iArg].list[0]);
222 exit(EXIT_FAILURE);
223 break;
224 }
225 } else {
226 if (!input)
227 input = scanned[iArg].list[0];
228 else if (!output)
229 output = scanned[iArg].list[0];
230 else
232 }
233 }
234
236
239
240 if (!columns)
241 columns = appendToStringArray(&column, columns, "*");
242 if (withOnly)
243 columns = appendToStringArray(&column, columns, withOnly);
244
245 if ((columns = expandColumnPairNames(&SDDSin, &column, NULL, columns, excludeColumn, excludeColumns, FIND_NUMERIC_TYPE, 0)) <= 0) {
247 SDDS_Bomb(
"no columns selected for correlation analysis");
248 }
249
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) {
263 }
264
265 if (columnMajorOrder != -1)
266 SDDSout.layout.data_mode.column_major = columnMajorOrder;
267 else
268 SDDSout.layout.data_mode.column_major = SDDSin.layout.data_mode.column_major;
269
272
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;
278 if (!data ||
279 (pairCount && (!correlationValue || !significanceValue || !correlationPoints)) ||
280 (rankOrder && !(rank = malloc(sizeof(*rank) * columns))) ||
281 !(accept = malloc(sizeof(*accept) * columns))) {
283 }
284
287 continue;
289 !
SDDS_SetParameters(&SDDSout, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE,
"CorrelatedRows", rows, NULL)) {
291 }
292 for (i = 0; i < columns; i++) {
294 if (!data[i])
296 if (rankOrder)
297 rank[i] = NULL;
298 accept[i] = NULL;
299 if (outlierStDevPasses) {
300 accept[i] = malloc(sizeof(**accept) * rows);
301 if (!accept[i])
303 }
304 }
305#pragma omp parallel for if (threads > 1) num_threads(threads)
306 for (i = 0; i < columns; i++) {
307 if (rankOrder)
308 rank[i] = findRank(data[i], rows);
309 if (outlierStDevPasses)
310 markStDevOutliers(data[i], outlierStDevLimit, outlierStDevPasses, accept[i], rows);
311 }
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++) {
315 long count;
316 double correlation, significance;
317 pairIndex = correlationPairIndex(i, j, columns);
318 iName1 = i;
319 iName2 = j;
320 if (withOnly) {
321 if (strcmp(withOnly, column[i]) == 0) {
322 iName1 = j;
323 iName2 = i;
324 } else if (strcmp(withOnly, column[j]) == 0) {
325 iName1 = i;
326 iName2 = j;
327 } else {
328 correlationValue[pairIndex] = 0;
329 significanceValue[pairIndex] = 0;
330 correlationPoints[pairIndex] = 0;
331 continue;
332 }
333 }
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;
341 }
342 }
343 for (i = row = 0; i < columns; i++) {
344 for (j = i + 1; j < columns; j++) {
345 pairIndex = correlationPairIndex(i, j, columns);
346 iName1 = i;
347 iName2 = j;
348 if (withOnly) {
349 if (strcmp(withOnly, column[i]) == 0) {
350 iName1 = j;
351 iName2 = i;
352 } else if (strcmp(withOnly, column[j]) == 0) {
353 iName1 = i;
354 iName2 = j;
355 } else {
356 continue;
357 }
358 }
359 snprintf(s, sizeof(s), "%s.%s", column[iName1], column[iName2]);
361 0, column[iName1],
362 1, column[iName2],
363 2, s,
364 3, correlationValue[pairIndex],
365 4, significanceValue[pairIndex],
366 5, correlationPoints[pairIndex],
367 -1)) {
369 }
370 }
371 }
372 for (i = 0; i < columns; i++) {
373 free(data[i]);
374 if (rankOrder)
375 free(rank[i]);
376 if (accept[i])
377 free(accept[i]);
378 }
381 }
382
383 free(data);
384 free(correlationValue);
385 free(significanceValue);
386 free(correlationPoints);
387 if (rankOrder)
388 free(rank);
389 free(accept);
390
393 exit(EXIT_FAILURE);
394 }
397 exit(EXIT_FAILURE);
398 }
399
400 return EXIT_SUCCESS;
401}
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_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.
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.