why getBimodalThres is used to get the score distribution of malignant cells?
getBimodalThres function is based on bimodal distribution. infact the maligantscore‘s actual distribution is not a bimodal distribution?
Does the red line indicate a bimodal distribution?
why getBimodalThres is used to get the score distribution of malignant cells? getBimodalThres function is based on bimodal distribution. infact the maligantscore‘s actual distribution is not a bimodal distribution?
Does the red line indicate a bimodal distribution?
getBimodalThres <- function(scores){ x.density <- density(scores) d.x.density <- diff(x.density$y) d.sign <- (d.x.density > 0) + 0
}