Description Usage Arguments Details Value See Also Examples
Validate input type and load data into data frame.
1 | validateAndLoadData(data, isFile = FALSE, scaled = TRUE)
|
data |
a numerical R matrix or data frame. |
isFile |
if TRUE, data accepts a path to a file containing numeric multidimensional data. FALSE by default. |
scaled |
if TRUE, use Z-score standardization so that outliers aren"t weighted less. TRUE by default. |
Supported input types:
R numerical matrix or data frame
a wide range of file formats (refer to https://github.com/leeper/rio for a full list of supported formats)
Centered scaled R matrix with loaded data.
1 2 | irisCSV <- system.file("extdata", "iris.csv", package = "pcclust")
data <- validateAndLoadData(irisCSV, isFile = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.