I've this variables in R:
n <- 112 #Observations
p <- 4 # Variables
alpha <- 0.05 # Alpha is alpha
quant=qt(1-alpha/2,n-p-1) # which is 1.982383
From my researches, qt function from R is related with T distribution,
My Question :
How can I get the equivalent in python ?
Thank you if you can help