Function to display the estimates of parameters from probability
distributions using the mle_tf function or parameters from regression models using
the mlereg_tf function.
# S3 method for MLEtf print(x, ...)
| x | an object of class |
|---|---|
| ... | additional arguments affecting the displayed estimates. |
print.MLEtf function displays the estimates of parameters from probability distributions
and regression models.
Sara Garcés Céspedes sgarcesc@unal.edu.co
#--------------------------------------------------------------- # Estimation of both normal distrubution parameters # Generate a sample from the normal distribution x <- rnorm(n = 1000, mean = 10, sd = 3) # Use the print function print(mle_tf(x, xdist = "Normal", initparam = list(mean = 1.0, sd = 1.0), optimizer = "AdamOptimizer", hyperparameters = list(learning_rate = 0.1)))#> Estimates: #> mean sd #> 10.02 3.01