I can do this in R for 2 sample T-test:
t.test(x, y = NULL, alternative = c("two.sided", "less", "greater"), mu = 0,
paired = FALSE, var.equal = FALSE, conf.level = 0.95)
I want some function where I can pass this mu(difference in mean) parameter in Python ttest?