Pqnorm: Difference between revisions
Jump to navigation
Jump to search
imported>Scott (Created page with "===Purpose=== Probabilistic Quotient Normalization for rows of a matrix. ===Synopsis=== :[sx,beta,xref] = pqnorm(x) :[sx,beta,xref] = pqnorm(x,xref) ===Description=== A r...") |
imported>Scott |
||
(2 intermediate revisions by the same user not shown) | |||
Line 19: | Line 19: | ||
* '''''xref''''' = Reference spectrum to normalize to (used for applying previously calculated normalization target to new data). | * '''''xref''''' = Reference spectrum to normalize to (used for applying previously calculated normalization target to new data). | ||
====Outputs==== | |||
* '''sx''' = Corrected spectra. | |||
* '''beta''' = The multiplicative scatter factor/slope. | |||
* '''xref''' = The reference spectrum used. | |||
===See Also=== | |||
[[mscorr]], [[normaliz]], [[snv]] |
Latest revision as of 14:08, 8 June 2015
Purpose
Probabilistic Quotient Normalization for rows of a matrix.
Synopsis
- [sx,beta,xref] = pqnorm(x)
- [sx,beta,xref] = pqnorm(x,xref)
Description
A robust normalization method similar to Multiplicative Scatter Correction but using the median as the target and a robust fitting of each row to the target. PQN is equivalent to performing a 1-norm on the rows of X, followed by a robust MSC (algorithm = median, see mscorr).
Inputs
- x = Matrix of data to normalize (double).
Optional Inputs
- xref = Reference spectrum to normalize to (used for applying previously calculated normalization target to new data).
Outputs
- sx = Corrected spectra.
- beta = The multiplicative scatter factor/slope.
- xref = The reference spectrum used.