Giter Club home page Giter Club logo

Comments (1)

jakob-wirbel avatar jakob-wirbel commented on August 14, 2024

Hey @naarkhoo,

Okay, I am not quite sure if I totally understand what specifically your question is, but I will try to answer what i can :-) Please let me know if anything is still unclear.


We did not use a single value to quantify the strength of the confounding effect (although that is a good idea! I will think about which measure would be best here...). Instead, we visually inspected the plots in Extended Data Figure 1 and decided that Study and Colonoscopy had the strongest effects and should be included in the association testing.


For library size (and Age), the confounding variables are continuous, but for this analysis, we split them into quartiles (so that we ended up with four groups) using the R functions cut and quantile.

meta <- meta %>%
  # age
  mutate(age_factor=as.factor(
    cut(meta$Age, breaks = quantile(meta$Age), labels=c(1,2,3,4)))) %>%
  # bmi
  mutate(bmi_factor=as.factor(
    cut(meta$BMI, breaks = c(0, 25, 30, 100),
        labels=c('lean', 'overweight', 'obese')))) %>%
  # library size
  mutate(lib_size_factor=as.factor(
    cut(meta$Library_Size, breaks = quantile(meta$Library_Size),
        labels=c(1,2,3,4))))

The code for the anova-type analysis would this part:

ss.var <- apply(feat.red, 1, FUN=function(x, label){
    rank.x <- rank(x)/length(x)
    ss.tot <- sum((rank.x - mean(rank.x))^2)/length(rank.x)
    ss.o.i <- sum(vapply(unique(label), function(l){
      sum((rank.x[label==l] - mean(rank.x[label==l]))^2)
    }, FUN.VALUE = double(1)))/length(rank.x)
    return(1 - ss.o.i/ss.tot)
  }, label=meta.c %>% pull(meta.var))

This is indeed a bit convoluted and probably not super easy to understand. Here, we loop over all the features (i.e. bacterial species)

apply(feat.red, 1, ...)

and first convert the relative abundances of this feature to relative ranks (so that we may be non-parametric):

rank.x <- rank(x)/length(x)

Then, we compute the total variance within a feature

ss.tot <- sum((rank.x - mean(rank.x))^2)/length(rank.x)

Lastly, we compute the variance explained by the confounding variable. In order to do so, we do not compare each value of rank.x to the overall mean (as for the overall variance), but instead to the mean of the group to which it belongs (within the confounding variable; for example, we would compare a value from a sample in the group female to the mean of all samples in this group). This part is done in the vapply loop over the groups in the confounding variable.

ss.o.i <- sum(vapply(unique(label), function(l){
      sum((rank.x[label==l] - mean(rank.x[label==l]))^2)
    }, FUN.VALUE = double(1)))/length(rank.x)

I hope this explanation made some sense to you πŸ˜ƒ

Cheers,
Jakob

from crc_meta.

Related Issues (5)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.