get_fit: Get fit indices from objects generated by tidyLPA

View source: R/estimate-profiles.R

get_fitR Documentation

Get fit indices from objects generated by tidyLPA

Description

Get fit indices from objects generated by tidyLPA.

Usage

get_fit(x, ...)

## S3 method for class 'tidyLPA'
get_fit(x, ...)

## S3 method for class 'tidyProfile'
get_fit(x, ...)

Arguments

x

An object generated by tidyLPA.

...

further arguments to be passed to or from other methods. They are ignored in this function.

Value

A tibble. Learn more at https://data-edu.github.io/tidyLPA/articles/Introduction_to_tidyLPA.html#getting-fit-statistics

Methods (by class)

  • get_fit(tidyLPA): Get fit indices for a latent profile analysis with multiple numbers of classes and models, of class 'tidyLPA'.

  • get_fit(tidyProfile): Get fit indices for a single latent profile analysis object, of class 'tidyProfile'.

Author(s)

Caspar J. van Lissa

Examples

## Not run: 
if(interactive()){
 results <- iris %>%
   select(Sepal.Length, Sepal.Width, Petal.Length, Petal.Width) %>%
   estimate_profiles(3)
 get_fit(results)
 get_fit(results[[1]])
 }

## End(Not run)

data-edu/tidyLPA documentation built on Feb. 24, 2024, 10:04 p.m.