Closed dnehar closed 5 years ago
Hi,
Is there a way to correct for more than 2 covariates (e.g. 10X batches and donors) using BBKNN ? Also, thank you for this super helpfull tool ! Best,
Just combine the two into a new adata.obs column. Assuming they're both strings, adata.obs['combined'] = adata.obs['key1'] + adata.obs['key2'].
adata.obs
adata.obs['combined'] = adata.obs['key1'] + adata.obs['key2']
Hi,
Is there a way to correct for more than 2 covariates (e.g. 10X batches and donors) using BBKNN ? Also, thank you for this super helpfull tool ! Best,