powered by
Computes the density.
dt_(x, df, mean, sd)
Numeric vector. Data set to which the density is evaluated.
Numeric constant. Degrees of freedom (> 0, maybe non-integer)
Numeric constant. Location parameter.
Positive numeric constant. Scale parameter.
## The function is currently defined as function(x, df, mean, sd) dt((x - mean) / sd, df, ncp = 0) / sd
For internal use