Description Usage Arguments Value Examples
Feature engineer the data
1 | fe(quantile_df, marker, marker_name)
|
quantile_df |
the dataframe that contains the list of cutoffs for each marker |
marker |
name of the marker column to feature engineer |
marker_name |
name of the marker column to feature engineer in quotes |
convert the marker data column into either a 0 for negative expression or 1 for positive expressoin
1 2 3 4 5 | library(dplyr)
all_of(df_all_gated) %>%
select("Alexa Fluor 532-A") %>%
rename("CD3" = "Alexa Fluor 532-A") %>%
mutate(CD3 = fe(add_quantile, CD3, "CD3"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.