description: sddskde performs one-dimensional kernel density estimation (KDE) on one or
more columns of an SDDS file. For each selected input column, it writes the sample positions,
estimated probability density function (PDF), and cumulative distribution function (CDF).
Bandwidth selection uses Silverman’s rule of thumb.
sddskde [<inputfile>] [<outputfile>] [-pipe=[input][,output]]
-column=<list of columns> [-margin=<value>] [-threads=<number>]
switches:
-column=<list of columns> — Specifies the columns for KDE calculation. Column
names may be comma-separated and may contain wildcards.
-margin=<value> — Specifies the fractional margin added to the data range before
generating PDF and CDF samples. The default is 0.3.
-threads=<number> — Specifies the number of threads for PDF sample evaluation.
SDDS output operations are performed serially. The default is 1.
-pipe[=input][,output] — The standard SDDS Toolkit pipe option.
files: inputfile is an SDDS file supplying one or more numeric columns. outputfile is an SDDS file
containing a sampled copy of each selected column, a PDF column named by appending PDF to the
input column name, and a CDF column named by appending CDF to the input column
name.