1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
---
title: "Overview of Vignettes"
output:
rmarkdown::html_vignette:
vignette: >
%\VignetteIndexEntry{Overview of Vignettes}
\usepackage[utf8]{inputenc}
%\VignetteEngine{knitr::rmarkdown}
editor_options:
chunk_output_type: console
---
```{r message=FALSE, warning=FALSE, include=FALSE}
library(knitr)
knitr::opts_chunk$set(
echo = TRUE,
collapse = TRUE,
warning = FALSE,
message = FALSE,
comment = "#>",
eval = TRUE
)
```
All package vignettes are available at [https://easystats.github.io/parameters/](https://easystats.github.io/parameters/).
## Function Overview
* [Function Reference](https://easystats.github.io/parameters/reference/index.html)
## Description of Parameters
* [Summary of Model Parameters](https://easystats.github.io/parameters/articles/model_parameters.html)
* [Parameter and Model Standardization](https://easystats.github.io/parameters/articles/standardize_parameters_effsize.html)
* [Robust Estimation of Standard Errors, Confidence Intervals, and p-values](https://easystats.github.io/parameters/articles/model_parameters_robust.html)
* [Model Parameters for Multiply Imputed Repeated Analyses](https://easystats.github.io/parameters/articles/model_parameters_mice.html)
* [Analysing Longitudinal or Panel Data](https://easystats.github.io/parameters/articles/demean.html)
## Formatting and Printing
* [Formatting Model Parameters](https://easystats.github.io/parameters/articles/model_parameters_formatting.html)
* [Printing Model Parameters](https://easystats.github.io/parameters/articles/model_parameters_print.html)
## Dimension Reduction and Clustering
* [Feature Reduction (PCA, cMDS, ICA, ...)](https://easystats.github.io/parameters/articles/parameters_reduction.html)
* [Structural Models (EFA, CFA, SEM, ...)](https://easystats.github.io/parameters/articles/efa_cfa.html)
* [Selection of Model Parameters](https://easystats.github.io/parameters/articles/parameters_selection.html)
* [Clustering with easystats](https://easystats.github.io/parameters/articles/clustering.html)
## Plotting Functions
* [Plotting functions in the **see** package](https://easystats.github.io/see/articles/parameters.html)
|