--- title: "Feature Weighting" output: rmarkdown::html_vignette: toc: true description: > Vary feature weights to expand or refine the space of generated cluster solutions. vignette: > %\VignetteIndexEntry{Feature Weighting} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` Download a copy of the vignette to follow along here: [feature_weights.Rmd](https://raw.githubusercontent.com/BRANCHlab/metasnf/main/vignettes/feature_weights.Rmd) ## Generating and Using the Weights Matrix The [distance metrics](https://branchlab.github.io/metasnf/articles/distance_metrics.html) used in metasnf are all capable of applying custom weights to included features. The code below outlines how to generate and use a weights_matrix (dataframe containing feature weights) object. ```{r} library(metasnf) # Make sure to throw in all the data you're interested in visualizing for this # data_list, including out-of-model measures and confounding variables. data_list <- generate_data_list( list(abcd_h_income, "household_income", "demographics", "ordinal"), list(abcd_pubertal, "pubertal_status", "demographics", "continuous"), list(abcd_colour, "favourite_colour", "demographics", "categorical"), list(abcd_anxiety, "anxiety", "behaviour", "ordinal"), list(abcd_depress, "depressed", "behaviour", "ordinal"), uid = "patient" ) summarize_dl(data_list) settings_matrix <- generate_settings_matrix( data_list, nrow = 20, min_k = 20, max_k = 50, seed = 42 ) weights_matrix <- generate_weights_matrix( data_list, nrow = 20 ) head(weights_matrix) ``` By default, the weights are all 1. This is what `batch_snf` uses when no weights_matrix is supplied. If you have custom feature weights you'd like to be used you can manually populate this dataframe. There's one column per variable (no need to worry about column orders) and the number of rows should match the number of rows in the settings_matrix. If you are just looking to broaden the space of cluster solutions you generate, you can use some of the built-in randomization options for the weights: ```{r} # Random uniformly distributed values generate_weights_matrix( data_list, nrow = 5, fill = "uniform" ) # Random exponentially distributed values generate_weights_matrix( data_list, nrow = 5, fill = "exponential" ) ``` Once you're happy with your weights_matrix, you can pass it into batch_snf: ```{r eval = FALSE} batch_snf( data_list = data_list, settings_matrix = settings_matrix, weights_matrix = weights_matrix ) ``` ## The Nitty Gritty of How Weights are Used The specific implementation of the weights during distance matrix calculations is dependent on the distance metric used, which you can learn more about in the [distance metrics vignette](https://branchlab.github.io/metasnf/articles/distance_metrics.html). The other aspect to understand if you want to know precisely how your weights are being used is related to the SNF schemes. Depending on which scheme is specified in the settings_matrix row, the variable columns that are involved at each distance matrix calculation can differ substantially. For example, in the domain scheme, all variables of the same domain are concatenated prior to distance matrix calculation. If you have any domains with multiple types of variables (e.g., continuous and categorical), that will mean that the mixed distance metric (Gower's method by default) will be used, and weights will be applied but only on a per-domain basis. Here's a more concrete example on how data set-up and SNF scheme can influence the variable weighting process: consider generating a data_list where every single input dataframe contains only 1 input variable. If that data_list is processed exclusively using the "individual" SNF scheme, *feature weights won't matter*. This is because the individual SNF scheme calculates individual distance metrics for every input dataframe separately before fusing them together with SNF. Anytime a distance matrix is calculated, it'll be for a single variable only, and the purpose of feature weighting (changing the relative contributions of input variables during the distance matrix calculations) will be lost.