Hi !
I am new to R studio. I am using it for a latent profile analysis. However, I can't find the R syntax to display all the rows of the estimator table of the analysis.
I have found the syntax to display all the columns and rows of an array that we have created ourselves. However, this does not work when it is R studio that computes the table. I am interested in any idea.
Thanks in advance for your help.
The code :
library(mclust)
m2 <- Classeur2%>%
select(SC, AC, QLP, RS, AM, VAL, STAB, STRU) %>%
single_imputation() %>%
scale() %>%
estimate_profiles(6, variances="varying", covariance="zero")
m2
get_estimates(m2)
The output with the 96 row I want to display :
get_estimates(m2)
**# A tibble: 96 × 8**
Category Parameter Estimate se p Class Model Classes
<chr> <chr> <dbl> <dbl> <dbl> <int> <dbl> <dbl>
1 Means SC 0.353 0.293 2.29e- 1 1 2 6
2 Means AC 0.474 0.267 7.58e- 2 1 2 6
3 Means QLP -0.381 0.271 1.60e- 1 1 2 6
4 Means RS -0.163 0.286 5.69e- 1 1 2 6
5 Means AM -0.592 0.325 6.82e- 2 1 2 6
6 Means VAL 0.141 0.276 6.09e- 1 1 2 6
7 Means STAB -1.07 0.197 5.75e- 8 1 2 6
8 Means STRU -0.876 0.106 1.19e-16 1 2 6
9 Variances SC 0.805 0.194 3.33e- 5 1 2 6
10 Variances AC 0.603 0.166 2.71e- 4 1 2 6
**# … with 86 more rows**