Plot the Fourier Transform (Deprecated)
plot_ft.RdDeprecated: This function is deprecated and will be removed in a future version.
Use plot(fit, type = "ft") instead, where
fit is a bbnp_density or bbnp_regression object.
Examples
if (FALSE) { # \dontrun{
# Old (deprecated):
# plot_ft(sample_data$X, xi_interval = list(xi_lb = 1, xi_ub = 50))
# New (recommended):
fit <- biasBound_density(sample_data$X, h = 0.1)
plot(fit, type = "ft")
} # }