summarize_pc_name {HMC}R Documentation

Summarize the features (e.g. genes) that contribute to the test result, i.e. those features consistently show up in the sparse principle components.

Description

Summarize the features (e.g. genes) that contribute to the test result, i.e. those features consistently show up in the sparse principle components.

Usage

summarize_pc_name(
  testing_result,
  latent_fator_index = 1,
  method = "majority voting"
)

Arguments

testing_result

The output/test result list from simple_pc_testing() or debiased_pc_testing().

latent_fator_index

Which principle component should the algorithm summarize? Default is PC1.

method

How to combine the feature list across different splits. Default is 'majority voting'—features that show up more than 50% of the splits are considered active/useful. It can be 'union'—all the features pooled together; or 'intersection'—only include features showing up in all splits.

Value

A list of names of features (your very original input data need to have column names!) that contribute to the test result.

Feature names that consistently showing up in the estimated PC vectors.


[Package HMC version 1.0 Index]