├── .RData ├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── confidence_intervals.R ├── confidence_intervals_helpers.R ├── data.R ├── delay_distributions.R ├── delta_method.R ├── likelihood_functions.R ├── mcs_data.R ├── mcs_delay.R ├── mcs_mileage.R ├── mileage_distribution.R ├── mixture_identification.R ├── ml_estimation.R ├── ml_estimation_helpers.R ├── model_estimation.R ├── plot_functions.R ├── plot_functions_generic.R ├── plot_functions_ggplot2.R ├── plot_functions_plotly.R ├── plot_helpers.R ├── predict.R ├── probability_estimators.R ├── r_squared_function.R ├── rank_regression.R ├── rank_regression_helpers.R ├── reliability_data.R ├── utils.R ├── utils_parametric_models.R └── weibulltools-package.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data ├── alloy.rda ├── field_data.rda ├── shock.rda └── voltage.rda ├── docs ├── 404.html ├── articles │ ├── Life_Data_Analysis_Part_I.html │ ├── Life_Data_Analysis_Part_II.html │ ├── Life_Data_Analysis_Part_III.html │ ├── Life_Data_Analysis_Part_III_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── crosstalk-1.1.0.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── figure-html │ │ │ ├── BBB on failure probabilities-1.png │ │ │ ├── BBB on quantiles-1.png │ │ │ ├── FI on failure probabilities-1.png │ │ │ ├── FI on quantiles-1.png │ │ │ ├── em weibull I-1.png │ │ │ ├── em weibull II-1.png │ │ │ ├── em_weibull_I-1.png │ │ │ ├── em_weibull_II-1.png │ │ │ ├── probability plot weibull-1.png │ │ │ ├── probability_plot_weibull-1.png │ │ │ ├── segmented weibull I-1.png │ │ │ ├── segmented weibull II-1.png │ │ │ ├── segmented_weibull_I-1.png │ │ │ └── segmented_weibull_II-1.png │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── htmlwidgets-1.5.2 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.11.3 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── plotly-binding-4.9.2.1 │ │ │ └── plotly.js │ │ ├── plotly-htmlwidgets-css-1.52.2 │ │ │ └── plotly-htmlwidgets.css │ │ ├── plotly-main-1.52.2 │ │ │ └── plotly-latest.min.js │ │ └── typedarray-0.1 │ │ │ └── typedarray.min.js │ ├── Life_Data_Analysis_Part_II_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── crosstalk-1.1.0.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── figure-html │ │ │ ├── ML visualization I-1.png │ │ │ ├── ML visualization II-1.png │ │ │ ├── ML weibull-1.png │ │ │ ├── ML_visualization_I-1.png │ │ │ ├── ML_visualization_II-1.png │ │ │ ├── ML_weibull-1.png │ │ │ ├── MRR weibull-1.png │ │ │ ├── RR weibull-1.png │ │ │ └── RR_weibull-1.png │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.11.3 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── plotly-binding-4.9.2.1 │ │ │ └── plotly.js │ │ ├── plotly-htmlwidgets-css-1.52.2 │ │ │ └── plotly-htmlwidgets.css │ │ ├── plotly-main-1.52.2 │ │ │ └── plotly-latest.min.js │ │ └── typedarray-0.1 │ │ │ └── typedarray.min.js │ ├── Life_Data_Analysis_Part_IV.html │ ├── Life_Data_Analysis_Part_IV_files │ │ ├── figure-html │ │ │ ├── em_weibull_I-1.png │ │ │ ├── em_weibull_II-1.png │ │ │ ├── probability_plot_weibull-1.png │ │ │ ├── segmented_weibull_I-1.png │ │ │ └── segmented_weibull_II-1.png │ │ └── header-attrs-2.7 │ │ │ └── header-attrs.js │ ├── Life_Data_Analysis_Part_I_files │ │ ├── accessible-code-block-0.0.1 │ │ │ └── empty-anchor.js │ │ ├── anchor-sections-1.0 │ │ │ ├── anchor-sections.css │ │ │ └── anchor-sections.js │ │ ├── crosstalk-1.1.0.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── figure-html │ │ │ ├── dataset shock-1.png │ │ │ ├── probability plot log-normal-1.png │ │ │ ├── probability plot weibull-1.png │ │ │ ├── probability_plot_log-normal-1.png │ │ │ ├── probability_plot_weibull-1.png │ │ │ ├── rank densities-1.png │ │ │ └── rank_densities-1.png │ │ ├── header-attrs-2.7 │ │ │ └── header-attrs.js │ │ ├── htmlwidgets-1.5.1 │ │ │ └── htmlwidgets.js │ │ ├── jquery-1.11.3 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── plotly-binding-4.9.2.1 │ │ │ └── plotly.js │ │ ├── plotly-htmlwidgets-css-1.52.2 │ │ │ └── plotly-htmlwidgets.css │ │ ├── plotly-main-1.52.2 │ │ │ └── plotly-latest.min.js │ │ └── typedarray-0.1 │ │ │ └── typedarray.min.js │ └── index.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── alloy.html │ ├── calculate_ranks.html │ ├── confint_betabinom.default.html │ ├── confint_betabinom.html │ ├── confint_fisher.default.html │ ├── confint_fisher.html │ ├── delta_method.html │ ├── dist_delay.default.html │ ├── dist_delay.html │ ├── dist_delay_register.html │ ├── dist_delay_report.html │ ├── dist_mileage.default.html │ ├── dist_mileage.html │ ├── estimate_cdf.default.html │ ├── estimate_cdf.html │ ├── failure_data.html │ ├── field_data.html │ ├── figures │ │ ├── README-model visualization-1.png │ │ ├── README-model_visualization-1.png │ │ ├── README-pressure-1.png │ │ ├── README-probability visualization-1.png │ │ ├── README-probability_visualization-1.png │ │ ├── lifecycle-archived.svg │ │ ├── lifecycle-defunct.svg │ │ ├── lifecycle-deprecated.svg │ │ ├── lifecycle-experimental.svg │ │ ├── lifecycle-maturing.svg │ │ ├── lifecycle-questioning.svg │ │ ├── lifecycle-soft-deprecated.svg │ │ ├── lifecycle-stable.svg │ │ └── lifecycle-superseded.svg │ ├── index.html │ ├── johnson_method.html │ ├── kaplan_method.html │ ├── loglik_function.default.html │ ├── loglik_function.html │ ├── loglik_profiling-1.png │ ├── loglik_profiling.default-1.png │ ├── loglik_profiling.default.html │ ├── loglik_profiling.html │ ├── mcs_delay.default.html │ ├── mcs_delay.html │ ├── mcs_delay_data.html │ ├── mcs_delay_register.html │ ├── mcs_delay_report.html │ ├── mcs_delays.html │ ├── mcs_mileage.default.html │ ├── mcs_mileage.html │ ├── mcs_mileage_data.html │ ├── mixmod_em.default.html │ ├── mixmod_em.html │ ├── mixmod_em.reliability_data.html │ ├── mixmod_regression.cdf_estimation.html │ ├── mixmod_regression.default.html │ ├── mixmod_regression.html │ ├── mixture_em_cpp.html │ ├── ml_estimation.default.html │ ├── ml_estimation.html │ ├── mr_method.html │ ├── nelson_method.html │ ├── plot_conf.confint.html │ ├── plot_conf.default.html │ ├── plot_conf.html │ ├── plot_layout.html │ ├── plot_mod.default.html │ ├── plot_mod.html │ ├── plot_mod.model_estimation.html │ ├── plot_mod_mix.html │ ├── plot_pop.html │ ├── plot_prob.cdf_estimation.html │ ├── plot_prob.default.html │ ├── plot_prob.html │ ├── plot_prob.model_estimation.html │ ├── plot_prob_mix.html │ ├── predict_prob.html │ ├── predict_quantile.html │ ├── r_squared_profiling-1.png │ ├── r_squared_profiling.default-1.png │ ├── r_squared_profiling.default.html │ ├── r_squared_profiling.html │ ├── rank_regression.default.html │ ├── rank_regression.html │ ├── reliability_data.html │ ├── shock.html │ ├── voltage.html │ ├── weibulltools-package.html │ └── weibulltools.html └── sitemap.xml ├── flow-chart ├── flow_chart.R ├── gr_viz_flow_chart.R ├── weibulltools_flussdiagramm.asta └── weibulltools_flussdiagramm.asta.lock ├── man-roxygen ├── details-estimate-cdf.R ├── dist-params.R ├── dist-params_tbl.R ├── dots.R ├── mod-classes.R ├── prob-classes.R ├── return-bb-confidence-intervals.R ├── return-coefficient.R ├── return-fisher-confidence-intervals.R ├── return-ml-estimation.R └── return-rank-regression.R ├── man ├── alloy.Rd ├── calculate_ranks.Rd ├── confint_betabinom.Rd ├── confint_betabinom.default.Rd ├── confint_fisher.Rd ├── confint_fisher.default.Rd ├── delta_method.Rd ├── dist_delay.Rd ├── dist_delay.default.Rd ├── dist_delay_register.Rd ├── dist_delay_report.Rd ├── dist_mileage.Rd ├── dist_mileage.default.Rd ├── estimate_cdf.Rd ├── estimate_cdf.default.Rd ├── field_data.Rd ├── figures │ ├── README-model_visualization-1.png │ ├── README-probability_visualization-1.png │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-soft-deprecated.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.ico ├── johnson_method.Rd ├── kaplan_method.Rd ├── loglik_function.Rd ├── loglik_function.default.Rd ├── loglik_profiling.Rd ├── loglik_profiling.default.Rd ├── mcs_delay.Rd ├── mcs_delay.default.Rd ├── mcs_delay_data.Rd ├── mcs_delay_register.Rd ├── mcs_delay_report.Rd ├── mcs_delays.Rd ├── mcs_mileage.Rd ├── mcs_mileage.default.Rd ├── mcs_mileage_data.Rd ├── mixmod_em.Rd ├── mixmod_em.default.Rd ├── mixmod_regression.Rd ├── mixmod_regression.default.Rd ├── mixture_em_cpp.Rd ├── ml_estimation.Rd ├── ml_estimation.default.Rd ├── mr_method.Rd ├── nelson_method.Rd ├── plot_conf.Rd ├── plot_conf.default.Rd ├── plot_layout.Rd ├── plot_mod.Rd ├── plot_mod.default.Rd ├── plot_mod_mix.Rd ├── plot_pop.Rd ├── plot_prob.Rd ├── plot_prob.default.Rd ├── plot_prob_mix.Rd ├── predict_prob.Rd ├── predict_quantile.Rd ├── r_squared_profiling.Rd ├── r_squared_profiling.default.Rd ├── rank_regression.Rd ├── rank_regression.default.Rd ├── reliability_data.Rd ├── shock.Rd ├── voltage.Rd └── weibulltools-package.Rd ├── src ├── .gitignore ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── em_mixture.cpp └── johnson_ranks.cpp ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── confidence_intervals.md │ ├── delay_distributions.md │ ├── delta_method.md │ ├── likelihood_functions.md │ ├── mileage_distribution.md │ ├── mixture_identification.md │ ├── ml_estimation.md │ ├── plot_helpers.md │ ├── predict.md │ ├── probability_estimators.md │ ├── r_squared_function.md │ └── rank_regression.md │ ├── setup_models.R │ ├── test-confidence_intervals.R │ ├── test-delay_distributions.R │ ├── test-delta_method.R │ ├── test-likelihood_functions.R │ ├── test-mcs_data.R │ ├── test-mileage_distribution.R │ ├── test-mixture_identification.R │ ├── test-ml_estimation.R │ ├── test-plot_functions.R │ ├── test-plot_helpers.R │ ├── test-predict.R │ ├── test-probability_estimators.R │ ├── test-r_squared_function.R │ ├── test-rank_regression.R │ └── test-reliability_data.R ├── vignettes ├── .gitignore ├── Life_Data_Analysis_Part_I.Rmd ├── Life_Data_Analysis_Part_II.Rmd ├── Life_Data_Analysis_Part_III.Rmd └── Life_Data_Analysis_Part_IV.Rmd └── weibulltools.Rproj /.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/.RData -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/confidence_intervals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/confidence_intervals.R -------------------------------------------------------------------------------- /R/confidence_intervals_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/confidence_intervals_helpers.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/data.R -------------------------------------------------------------------------------- /R/delay_distributions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/delay_distributions.R -------------------------------------------------------------------------------- /R/delta_method.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/delta_method.R -------------------------------------------------------------------------------- /R/likelihood_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/likelihood_functions.R -------------------------------------------------------------------------------- /R/mcs_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/mcs_data.R -------------------------------------------------------------------------------- /R/mcs_delay.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/mcs_delay.R -------------------------------------------------------------------------------- /R/mcs_mileage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/mcs_mileage.R -------------------------------------------------------------------------------- /R/mileage_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/mileage_distribution.R -------------------------------------------------------------------------------- /R/mixture_identification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/mixture_identification.R -------------------------------------------------------------------------------- /R/ml_estimation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/ml_estimation.R -------------------------------------------------------------------------------- /R/ml_estimation_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/ml_estimation_helpers.R -------------------------------------------------------------------------------- /R/model_estimation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/model_estimation.R -------------------------------------------------------------------------------- /R/plot_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/plot_functions.R -------------------------------------------------------------------------------- /R/plot_functions_generic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/plot_functions_generic.R -------------------------------------------------------------------------------- /R/plot_functions_ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/plot_functions_ggplot2.R -------------------------------------------------------------------------------- /R/plot_functions_plotly.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/plot_functions_plotly.R -------------------------------------------------------------------------------- /R/plot_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/plot_helpers.R -------------------------------------------------------------------------------- /R/predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/predict.R -------------------------------------------------------------------------------- /R/probability_estimators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/probability_estimators.R -------------------------------------------------------------------------------- /R/r_squared_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/r_squared_function.R -------------------------------------------------------------------------------- /R/rank_regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/rank_regression.R -------------------------------------------------------------------------------- /R/rank_regression_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/rank_regression_helpers.R -------------------------------------------------------------------------------- /R/reliability_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/reliability_data.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/utils_parametric_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/utils_parametric_models.R -------------------------------------------------------------------------------- /R/weibulltools-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/R/weibulltools-package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/alloy.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/data/alloy.rda -------------------------------------------------------------------------------- /data/field_data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/data/field_data.rda -------------------------------------------------------------------------------- /data/shock.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/data/shock.rda -------------------------------------------------------------------------------- /data/voltage.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/data/voltage.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I.html -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II.html -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III.html -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/BBB on failure probabilities-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/BBB on failure probabilities-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/BBB on quantiles-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/BBB on quantiles-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/FI on failure probabilities-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/FI on failure probabilities-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/FI on quantiles-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/FI on quantiles-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em weibull I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em weibull I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em weibull II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em weibull II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em_weibull_I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em_weibull_I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em_weibull_II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/em_weibull_II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/probability plot weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/probability plot weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/probability_plot_weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/probability_plot_weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented weibull I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented weibull I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented weibull II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented weibull II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented_weibull_I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented_weibull_I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented_weibull_II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/figure-html/segmented_weibull_II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/htmlwidgets-1.5.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/htmlwidgets-1.5.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/jquery-1.11.3/jquery.min.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/plotly-binding-4.9.2.1/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/plotly-binding-4.9.2.1/plotly.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/plotly-htmlwidgets-css-1.52.2/plotly-htmlwidgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/plotly-htmlwidgets-css-1.52.2/plotly-htmlwidgets.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/plotly-main-1.52.2/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/plotly-main-1.52.2/plotly-latest.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_III_files/typedarray-0.1/typedarray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_III_files/typedarray-0.1/typedarray.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML visualization I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML visualization I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML visualization II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML visualization II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML_visualization_I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML_visualization_I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML_visualization_II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML_visualization_II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML_weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/ML_weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/MRR weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/MRR weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/RR weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/RR weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/figure-html/RR_weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/figure-html/RR_weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/jquery-1.11.3/jquery.min.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/plotly-binding-4.9.2.1/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/plotly-binding-4.9.2.1/plotly.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/plotly-htmlwidgets-css-1.52.2/plotly-htmlwidgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/plotly-htmlwidgets-css-1.52.2/plotly-htmlwidgets.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/plotly-main-1.52.2/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/plotly-main-1.52.2/plotly-latest.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_II_files/typedarray-0.1/typedarray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_II_files/typedarray-0.1/typedarray.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_IV.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_IV.html -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/em_weibull_I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/em_weibull_I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/em_weibull_II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/em_weibull_II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/probability_plot_weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/probability_plot_weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/segmented_weibull_I-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/segmented_weibull_I-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/segmented_weibull_II-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_IV_files/figure-html/segmented_weibull_II-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_IV_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_IV_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/accessible-code-block-0.0.1/empty-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/accessible-code-block-0.0.1/empty-anchor.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/crosstalk-1.1.0.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/figure-html/dataset shock-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/figure-html/dataset shock-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability plot log-normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability plot log-normal-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability plot weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability plot weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability_plot_log-normal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability_plot_log-normal-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability_plot_weibull-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/figure-html/probability_plot_weibull-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/figure-html/rank densities-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/figure-html/rank densities-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/figure-html/rank_densities-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/figure-html/rank_densities-1.png -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/header-attrs-2.7/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/header-attrs-2.7/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/htmlwidgets-1.5.1/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/htmlwidgets-1.5.1/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/jquery-1.11.3/jquery.min.map -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/plotly-binding-4.9.2.1/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/plotly-binding-4.9.2.1/plotly.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/plotly-htmlwidgets-css-1.52.2/plotly-htmlwidgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/plotly-htmlwidgets-css-1.52.2/plotly-htmlwidgets.css -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/plotly-main-1.52.2/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/plotly-main-1.52.2/plotly-latest.min.js -------------------------------------------------------------------------------- /docs/articles/Life_Data_Analysis_Part_I_files/typedarray-0.1/typedarray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/Life_Data_Analysis_Part_I_files/typedarray-0.1/typedarray.min.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/alloy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/alloy.html -------------------------------------------------------------------------------- /docs/reference/calculate_ranks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/calculate_ranks.html -------------------------------------------------------------------------------- /docs/reference/confint_betabinom.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/confint_betabinom.default.html -------------------------------------------------------------------------------- /docs/reference/confint_betabinom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/confint_betabinom.html -------------------------------------------------------------------------------- /docs/reference/confint_fisher.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/confint_fisher.default.html -------------------------------------------------------------------------------- /docs/reference/confint_fisher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/confint_fisher.html -------------------------------------------------------------------------------- /docs/reference/delta_method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/delta_method.html -------------------------------------------------------------------------------- /docs/reference/dist_delay.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/dist_delay.default.html -------------------------------------------------------------------------------- /docs/reference/dist_delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/dist_delay.html -------------------------------------------------------------------------------- /docs/reference/dist_delay_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/dist_delay_register.html -------------------------------------------------------------------------------- /docs/reference/dist_delay_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/dist_delay_report.html -------------------------------------------------------------------------------- /docs/reference/dist_mileage.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/dist_mileage.default.html -------------------------------------------------------------------------------- /docs/reference/dist_mileage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/dist_mileage.html -------------------------------------------------------------------------------- /docs/reference/estimate_cdf.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/estimate_cdf.default.html -------------------------------------------------------------------------------- /docs/reference/estimate_cdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/estimate_cdf.html -------------------------------------------------------------------------------- /docs/reference/failure_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/failure_data.html -------------------------------------------------------------------------------- /docs/reference/field_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/field_data.html -------------------------------------------------------------------------------- /docs/reference/figures/README-model visualization-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/README-model visualization-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-model_visualization-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/README-model_visualization-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-pressure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/README-pressure-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-probability visualization-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/README-probability visualization-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-probability_visualization-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/README-probability_visualization-1.png -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-soft-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-soft-deprecated.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /docs/reference/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/johnson_method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/johnson_method.html -------------------------------------------------------------------------------- /docs/reference/kaplan_method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/kaplan_method.html -------------------------------------------------------------------------------- /docs/reference/loglik_function.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/loglik_function.default.html -------------------------------------------------------------------------------- /docs/reference/loglik_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/loglik_function.html -------------------------------------------------------------------------------- /docs/reference/loglik_profiling-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/loglik_profiling-1.png -------------------------------------------------------------------------------- /docs/reference/loglik_profiling.default-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/loglik_profiling.default-1.png -------------------------------------------------------------------------------- /docs/reference/loglik_profiling.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/loglik_profiling.default.html -------------------------------------------------------------------------------- /docs/reference/loglik_profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/loglik_profiling.html -------------------------------------------------------------------------------- /docs/reference/mcs_delay.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_delay.default.html -------------------------------------------------------------------------------- /docs/reference/mcs_delay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_delay.html -------------------------------------------------------------------------------- /docs/reference/mcs_delay_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_delay_data.html -------------------------------------------------------------------------------- /docs/reference/mcs_delay_register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_delay_register.html -------------------------------------------------------------------------------- /docs/reference/mcs_delay_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_delay_report.html -------------------------------------------------------------------------------- /docs/reference/mcs_delays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_delays.html -------------------------------------------------------------------------------- /docs/reference/mcs_mileage.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_mileage.default.html -------------------------------------------------------------------------------- /docs/reference/mcs_mileage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_mileage.html -------------------------------------------------------------------------------- /docs/reference/mcs_mileage_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mcs_mileage_data.html -------------------------------------------------------------------------------- /docs/reference/mixmod_em.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mixmod_em.default.html -------------------------------------------------------------------------------- /docs/reference/mixmod_em.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mixmod_em.html -------------------------------------------------------------------------------- /docs/reference/mixmod_em.reliability_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mixmod_em.reliability_data.html -------------------------------------------------------------------------------- /docs/reference/mixmod_regression.cdf_estimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mixmod_regression.cdf_estimation.html -------------------------------------------------------------------------------- /docs/reference/mixmod_regression.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mixmod_regression.default.html -------------------------------------------------------------------------------- /docs/reference/mixmod_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mixmod_regression.html -------------------------------------------------------------------------------- /docs/reference/mixture_em_cpp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mixture_em_cpp.html -------------------------------------------------------------------------------- /docs/reference/ml_estimation.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/ml_estimation.default.html -------------------------------------------------------------------------------- /docs/reference/ml_estimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/ml_estimation.html -------------------------------------------------------------------------------- /docs/reference/mr_method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/mr_method.html -------------------------------------------------------------------------------- /docs/reference/nelson_method.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/nelson_method.html -------------------------------------------------------------------------------- /docs/reference/plot_conf.confint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_conf.confint.html -------------------------------------------------------------------------------- /docs/reference/plot_conf.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_conf.default.html -------------------------------------------------------------------------------- /docs/reference/plot_conf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_conf.html -------------------------------------------------------------------------------- /docs/reference/plot_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_layout.html -------------------------------------------------------------------------------- /docs/reference/plot_mod.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_mod.default.html -------------------------------------------------------------------------------- /docs/reference/plot_mod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_mod.html -------------------------------------------------------------------------------- /docs/reference/plot_mod.model_estimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_mod.model_estimation.html -------------------------------------------------------------------------------- /docs/reference/plot_mod_mix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_mod_mix.html -------------------------------------------------------------------------------- /docs/reference/plot_pop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_pop.html -------------------------------------------------------------------------------- /docs/reference/plot_prob.cdf_estimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_prob.cdf_estimation.html -------------------------------------------------------------------------------- /docs/reference/plot_prob.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_prob.default.html -------------------------------------------------------------------------------- /docs/reference/plot_prob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_prob.html -------------------------------------------------------------------------------- /docs/reference/plot_prob.model_estimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_prob.model_estimation.html -------------------------------------------------------------------------------- /docs/reference/plot_prob_mix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/plot_prob_mix.html -------------------------------------------------------------------------------- /docs/reference/predict_prob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/predict_prob.html -------------------------------------------------------------------------------- /docs/reference/predict_quantile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/predict_quantile.html -------------------------------------------------------------------------------- /docs/reference/r_squared_profiling-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/r_squared_profiling-1.png -------------------------------------------------------------------------------- /docs/reference/r_squared_profiling.default-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/r_squared_profiling.default-1.png -------------------------------------------------------------------------------- /docs/reference/r_squared_profiling.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/r_squared_profiling.default.html -------------------------------------------------------------------------------- /docs/reference/r_squared_profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/r_squared_profiling.html -------------------------------------------------------------------------------- /docs/reference/rank_regression.default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/rank_regression.default.html -------------------------------------------------------------------------------- /docs/reference/rank_regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/rank_regression.html -------------------------------------------------------------------------------- /docs/reference/reliability_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/reliability_data.html -------------------------------------------------------------------------------- /docs/reference/shock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/shock.html -------------------------------------------------------------------------------- /docs/reference/voltage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/voltage.html -------------------------------------------------------------------------------- /docs/reference/weibulltools-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/weibulltools-package.html -------------------------------------------------------------------------------- /docs/reference/weibulltools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/reference/weibulltools.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /flow-chart/flow_chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/flow-chart/flow_chart.R -------------------------------------------------------------------------------- /flow-chart/gr_viz_flow_chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/flow-chart/gr_viz_flow_chart.R -------------------------------------------------------------------------------- /flow-chart/weibulltools_flussdiagramm.asta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/flow-chart/weibulltools_flussdiagramm.asta -------------------------------------------------------------------------------- /flow-chart/weibulltools_flussdiagramm.asta.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man-roxygen/details-estimate-cdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/details-estimate-cdf.R -------------------------------------------------------------------------------- /man-roxygen/dist-params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/dist-params.R -------------------------------------------------------------------------------- /man-roxygen/dist-params_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/dist-params_tbl.R -------------------------------------------------------------------------------- /man-roxygen/dots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/dots.R -------------------------------------------------------------------------------- /man-roxygen/mod-classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/mod-classes.R -------------------------------------------------------------------------------- /man-roxygen/prob-classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/prob-classes.R -------------------------------------------------------------------------------- /man-roxygen/return-bb-confidence-intervals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/return-bb-confidence-intervals.R -------------------------------------------------------------------------------- /man-roxygen/return-coefficient.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/return-coefficient.R -------------------------------------------------------------------------------- /man-roxygen/return-fisher-confidence-intervals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/return-fisher-confidence-intervals.R -------------------------------------------------------------------------------- /man-roxygen/return-ml-estimation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/return-ml-estimation.R -------------------------------------------------------------------------------- /man-roxygen/return-rank-regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man-roxygen/return-rank-regression.R -------------------------------------------------------------------------------- /man/alloy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/alloy.Rd -------------------------------------------------------------------------------- /man/calculate_ranks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/calculate_ranks.Rd -------------------------------------------------------------------------------- /man/confint_betabinom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/confint_betabinom.Rd -------------------------------------------------------------------------------- /man/confint_betabinom.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/confint_betabinom.default.Rd -------------------------------------------------------------------------------- /man/confint_fisher.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/confint_fisher.Rd -------------------------------------------------------------------------------- /man/confint_fisher.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/confint_fisher.default.Rd -------------------------------------------------------------------------------- /man/delta_method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/delta_method.Rd -------------------------------------------------------------------------------- /man/dist_delay.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/dist_delay.Rd -------------------------------------------------------------------------------- /man/dist_delay.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/dist_delay.default.Rd -------------------------------------------------------------------------------- /man/dist_delay_register.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/dist_delay_register.Rd -------------------------------------------------------------------------------- /man/dist_delay_report.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/dist_delay_report.Rd -------------------------------------------------------------------------------- /man/dist_mileage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/dist_mileage.Rd -------------------------------------------------------------------------------- /man/dist_mileage.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/dist_mileage.default.Rd -------------------------------------------------------------------------------- /man/estimate_cdf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/estimate_cdf.Rd -------------------------------------------------------------------------------- /man/estimate_cdf.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/estimate_cdf.default.Rd -------------------------------------------------------------------------------- /man/field_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/field_data.Rd -------------------------------------------------------------------------------- /man/figures/README-model_visualization-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/README-model_visualization-1.png -------------------------------------------------------------------------------- /man/figures/README-probability_visualization-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/README-probability_visualization-1.png -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-soft-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-soft-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/figures/logo.ico -------------------------------------------------------------------------------- /man/johnson_method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/johnson_method.Rd -------------------------------------------------------------------------------- /man/kaplan_method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/kaplan_method.Rd -------------------------------------------------------------------------------- /man/loglik_function.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/loglik_function.Rd -------------------------------------------------------------------------------- /man/loglik_function.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/loglik_function.default.Rd -------------------------------------------------------------------------------- /man/loglik_profiling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/loglik_profiling.Rd -------------------------------------------------------------------------------- /man/loglik_profiling.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/loglik_profiling.default.Rd -------------------------------------------------------------------------------- /man/mcs_delay.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_delay.Rd -------------------------------------------------------------------------------- /man/mcs_delay.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_delay.default.Rd -------------------------------------------------------------------------------- /man/mcs_delay_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_delay_data.Rd -------------------------------------------------------------------------------- /man/mcs_delay_register.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_delay_register.Rd -------------------------------------------------------------------------------- /man/mcs_delay_report.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_delay_report.Rd -------------------------------------------------------------------------------- /man/mcs_delays.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_delays.Rd -------------------------------------------------------------------------------- /man/mcs_mileage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_mileage.Rd -------------------------------------------------------------------------------- /man/mcs_mileage.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_mileage.default.Rd -------------------------------------------------------------------------------- /man/mcs_mileage_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mcs_mileage_data.Rd -------------------------------------------------------------------------------- /man/mixmod_em.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mixmod_em.Rd -------------------------------------------------------------------------------- /man/mixmod_em.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mixmod_em.default.Rd -------------------------------------------------------------------------------- /man/mixmod_regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mixmod_regression.Rd -------------------------------------------------------------------------------- /man/mixmod_regression.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mixmod_regression.default.Rd -------------------------------------------------------------------------------- /man/mixture_em_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mixture_em_cpp.Rd -------------------------------------------------------------------------------- /man/ml_estimation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/ml_estimation.Rd -------------------------------------------------------------------------------- /man/ml_estimation.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/ml_estimation.default.Rd -------------------------------------------------------------------------------- /man/mr_method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/mr_method.Rd -------------------------------------------------------------------------------- /man/nelson_method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/nelson_method.Rd -------------------------------------------------------------------------------- /man/plot_conf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_conf.Rd -------------------------------------------------------------------------------- /man/plot_conf.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_conf.default.Rd -------------------------------------------------------------------------------- /man/plot_layout.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_layout.Rd -------------------------------------------------------------------------------- /man/plot_mod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_mod.Rd -------------------------------------------------------------------------------- /man/plot_mod.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_mod.default.Rd -------------------------------------------------------------------------------- /man/plot_mod_mix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_mod_mix.Rd -------------------------------------------------------------------------------- /man/plot_pop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_pop.Rd -------------------------------------------------------------------------------- /man/plot_prob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_prob.Rd -------------------------------------------------------------------------------- /man/plot_prob.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_prob.default.Rd -------------------------------------------------------------------------------- /man/plot_prob_mix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/plot_prob_mix.Rd -------------------------------------------------------------------------------- /man/predict_prob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/predict_prob.Rd -------------------------------------------------------------------------------- /man/predict_quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/predict_quantile.Rd -------------------------------------------------------------------------------- /man/r_squared_profiling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/r_squared_profiling.Rd -------------------------------------------------------------------------------- /man/r_squared_profiling.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/r_squared_profiling.default.Rd -------------------------------------------------------------------------------- /man/rank_regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/rank_regression.Rd -------------------------------------------------------------------------------- /man/rank_regression.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/rank_regression.default.Rd -------------------------------------------------------------------------------- /man/reliability_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/reliability_data.Rd -------------------------------------------------------------------------------- /man/shock.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/shock.Rd -------------------------------------------------------------------------------- /man/voltage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/voltage.Rd -------------------------------------------------------------------------------- /man/weibulltools-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/man/weibulltools-package.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/em_mixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/src/em_mixture.cpp -------------------------------------------------------------------------------- /src/johnson_ranks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/src/johnson_ranks.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/confidence_intervals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/confidence_intervals.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/delay_distributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/delay_distributions.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/delta_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/delta_method.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/likelihood_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/likelihood_functions.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mileage_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/mileage_distribution.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/mixture_identification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/mixture_identification.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/ml_estimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/ml_estimation.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot_helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/plot_helpers.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/predict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/predict.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/probability_estimators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/probability_estimators.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/r_squared_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/r_squared_function.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rank_regression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/_snaps/rank_regression.md -------------------------------------------------------------------------------- /tests/testthat/setup_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/setup_models.R -------------------------------------------------------------------------------- /tests/testthat/test-confidence_intervals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-confidence_intervals.R -------------------------------------------------------------------------------- /tests/testthat/test-delay_distributions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-delay_distributions.R -------------------------------------------------------------------------------- /tests/testthat/test-delta_method.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-delta_method.R -------------------------------------------------------------------------------- /tests/testthat/test-likelihood_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-likelihood_functions.R -------------------------------------------------------------------------------- /tests/testthat/test-mcs_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-mcs_data.R -------------------------------------------------------------------------------- /tests/testthat/test-mileage_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-mileage_distribution.R -------------------------------------------------------------------------------- /tests/testthat/test-mixture_identification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-mixture_identification.R -------------------------------------------------------------------------------- /tests/testthat/test-ml_estimation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-ml_estimation.R -------------------------------------------------------------------------------- /tests/testthat/test-plot_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-plot_functions.R -------------------------------------------------------------------------------- /tests/testthat/test-plot_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-plot_helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-predict.R -------------------------------------------------------------------------------- /tests/testthat/test-probability_estimators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-probability_estimators.R -------------------------------------------------------------------------------- /tests/testthat/test-r_squared_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-r_squared_function.R -------------------------------------------------------------------------------- /tests/testthat/test-rank_regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-rank_regression.R -------------------------------------------------------------------------------- /tests/testthat/test-reliability_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/tests/testthat/test-reliability_data.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/Life_Data_Analysis_Part_I.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/vignettes/Life_Data_Analysis_Part_I.Rmd -------------------------------------------------------------------------------- /vignettes/Life_Data_Analysis_Part_II.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/vignettes/Life_Data_Analysis_Part_II.Rmd -------------------------------------------------------------------------------- /vignettes/Life_Data_Analysis_Part_III.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/vignettes/Life_Data_Analysis_Part_III.Rmd -------------------------------------------------------------------------------- /vignettes/Life_Data_Analysis_Part_IV.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/vignettes/Life_Data_Analysis_Part_IV.Rmd -------------------------------------------------------------------------------- /weibulltools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tim-TU/weibulltools/HEAD/weibulltools.Rproj --------------------------------------------------------------------------------