Last updated: 2019-05-07

Checks: 6 0

Knit directory: mcfa-fit/

This reproducible R Markdown analysis was created with workflowr (version 1.3.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.


Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.

Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(20190507) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility. The version displayed above was the version of the Git repository at the time these results were generated.

Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish or wflow_git_commit). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:


Ignored files:
    Ignored:    .Rhistory
    Ignored:    .Rproj.user/

Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.


These are the previous versions of the R Markdown and HTML files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view them.

File Version Author Date Message
Rmd f22b9e3 noah-padgett 2019-05-07 summary tables recreated

Purpose of this file:

  1. Summarize convergence
  2. Summarize proper solution rates
  3. Creating simple descriptive statistics across conditions
  4. Generating tables of those stats

The output is mostly just a lot of latex ready tables. Not all of these tables are included in the final publication, but we wanted to be as precise as possible with respect to the summary of the fit statistics.

Packages and Set-Up

## Chunk iptions
knitr::opts_chunk$set(out.width = "225%")

# setwd('C:/Users/noahp/Dropbox/MCFA Thesis/Code Results')

## Packages General Packages
library(tidyverse)
-- Attaching packages ---------------------------------------------------------------------- tidyverse 1.2.1 --
v ggplot2 3.1.0       v purrr   0.2.5  
v tibble  2.0.1       v dplyr   0.8.0.1
v tidyr   0.8.2       v stringr 1.3.1  
v readr   1.3.1       v forcats 0.3.0  
Warning: package 'dplyr' was built under R version 3.5.3
-- Conflicts ------------------------------------------------------------------------- tidyverse_conflicts() --
x dplyr::filter() masks stats::filter()
x dplyr::lag()    masks stats::lag()
# Formatting and Tables
library(kableExtra)

Attaching package: 'kableExtra'
The following object is masked from 'package:dplyr':

    group_rows
library(xtable)
# For plotting
library(ggplot2)
theme_set(theme_bw())
# Data manipulating
library(dplyr)

Data Management

sim_results <- as_tibble(read.table("data/compiled_fit_results.txt", header = T, 
    sep = "\t"))

## Next, turn condition into a factor for plotting
sim_results$Condition <- as.factor(sim_results$Condition)

## Next, since TLI is non-normed, any value greater than 1 needs to be
## rescaled to 1.
sim_results$TLI <- ifelse(sim_results$TLI > 1, 1, sim_results$TLI)
sim_results$TLI <- ifelse(sim_results$TLI < 0, 0, sim_results$TLI)
## Next, summarize the results of the chi-square test of model fit. This is
## done simply by comparing the p-value to alpha (0.05) and indicating
## whether the model was flagged as fitting or not.  Note: if p < 0.05 then
## this variable is flagged as 0, and 1 otherwise
sim_results$Chi2_pvalue_decision <- ifelse(sim_results$chisqu_pvalue < 0.05, 
    0, 1)
# 0 = rejected that these data fit this model 1 = failed to reject that
# these data fit this model

Adding Labels to Conditions

Currently, each condition is kind of like a hidden id that we don’t know what the actual factor is. So, first thing isto create meaningful labels for us to use. Remember, the 72 conditions for the this study were

  1. Level-1 sample size (ss_l1 or n1) (5, 10, 30)
  2. Level-2 sample size (ss_l2 or n2) (30, 50, 100, 200)
  3. Observed indicator ICC (.1, .3, .5)
  4. Latent variable ICC (.1, .5)
## level-1 Sample size
ss_l1 <- c(5, 10, 30) ## 6 conditions each
ss_l2 <- c(30, 50, 100, 200) ## 18 condition each
icc_ov <- c(.1, .3, .5) ## 2 conditions each
icc_lv <- c(.1, .5) ## every other condition
nCon <- 72 # number of conditions
nRep <- 500 # number of replications per condition
nMod <- 12 ## numberof estimated models per conditions
## Total number of rows: 432,000
ss_l2 <- c(rep(ss_l2[1], 18*nRep*nMod), rep(ss_l2[2], 18*nRep*nMod), 
           rep(ss_l2[3], 18*nRep*nMod), rep(ss_l2[4], 18*nRep*nMod))
ss_l1 <- rep(c(rep(ss_l1[1],6*nRep*nMod), rep(ss_l1[2],6*nRep*nMod), rep(ss_l1[3],6*nRep*nMod)), 4)
icc_ov <- rep(c(rep(icc_ov[1], 2*nRep*nMod), rep(icc_ov[2], 2*nRep*nMod), rep(icc_ov[3], 2*nRep*nMod)), 12)
icc_lv <- rep(c(rep(icc_lv[1], nRep*nMod), rep(icc_lv[2], nRep*nMod)), 36)
## Force these vectors to be column vectors
ss_l1 <- matrix(ss_l1, ncol=1)
ss_l2 <- matrix(ss_l2, ncol=1)
icc_ov <- matrix(icc_ov, ncol=1)
icc_lv <- matrix(icc_lv, ncol=1)
## Add the labels to the results data frame
sim_results <- sim_results[order(sim_results$Condition),]
sim_results <- cbind(sim_results, ss_l1, ss_l2, icc_ov, icc_lv)

## Force the conditions to be factors
sim_results$ss_l1 <- as.factor(sim_results$ss_l1)
sim_results$ss_l2 <- as.factor(sim_results$ss_l2)
sim_results$icc_ov <- as.factor(sim_results$icc_ov)
sim_results$icc_lv <- as.factor(sim_results$icc_lv)
sim_results$Model <- factor(sim_results$Model, levels = c('C','M1','M2','M12'), ordered = T)
## Set up iterators for remainder of script
mods <- c('C', 'M1', 'M2', 'M12')
ests <- c('MLR', 'ULSMV', 'WLSMV')

For the descriptive statistics, I will use dplyr. From here I can easily create matrices that store the results so that I can easily print out the results for summarizing the results. Each will be printed out as a html table and a xtable (latex ready) table.

Convergence Summary

Convergence will be broken out by Model (C, M1, M2, M12) and estimator (MLR, WLSMV, ULSMV). So, there will 12 smallish tables piecemail tables. Next, one very large table of all the conditions will be exported in latex ready format.

Convergence by Model and Estimator

## first table summary table
c <- sim_results %>%
  group_by(Model, Estimator) %>%
  summarise(Converge=mean(Converge))
# Next make the columns the estimator factor
c <- cbind(c[ c$Model == 'C', 'Converge'], 
           c[ c$Model == 'M1', 'Converge'], 
           c[ c$Model == 'M2', 'Converge'], 
           c[ c$Model == 'M12', 'Converge'])
rownames(c) <- c('MLR', 'ULSMV', 'WLSMV')
colnames(c) <- c('C' ,'M1' ,'M2', 'M12')
## Print results in a nice looking table in HTML
kable(c, format='html') %>%
    kable_styling(full_width = T)%>%
  add_header_above(c(' '= 1, 'Model Specification'=4))
Model Specification
C M1 M2 M12
MLR 0.9998056 0.9819444 0.9998056 0.9997778
ULSMV 0.9989722 0.9737500 0.9882500 0.9853056
WLSMV 0.9997778 0.9645000 0.9997500 0.9919444
## Print out in tex
print(xtable(c, digits = 3), booktabs = T, include.rownames = T)
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:23 2019
\begin{table}[ht]
\centering
\begin{tabular}{rrrrr}
  \toprule
 & C & M1 & M2 & M12 \\ 
  \midrule
MLR & 1.000 & 0.982 & 1.000 & 1.000 \\ 
  ULSMV & 0.999 & 0.974 & 0.988 & 0.985 \\ 
  WLSMV & 1.000 & 0.965 & 1.000 & 0.992 \\ 
   \bottomrule
\end{tabular}
\end{table}

Model, Estimator, and Sample Sizes

## first table summary table
c <- sim_results %>%
  group_by(Model, Estimator, ss_l1, ss_l2) %>%
  summarise(Converge=mean(Converge))
# Next make the columns the estimator factor
c1 <- cbind(c[ c$Model == 'C', c('Estimator', 'ss_l1', 'ss_l2', 'Converge')], 
           c[ c$Model == 'M1', 'Converge'], 
           c[ c$Model == 'M2', 'Converge'], 
           c[ c$Model == 'M12', 'Converge'])
colnames(c1) <- c('Estimator', 'SS Level-1', 'SS Level-2', 'C' ,'M1' ,'M2', 'M12')

## Print results in a nice looking table in HTML
kable(c1, format='html') %>%
  kable_styling(full_width = T) %>%
  add_header_above(c(' '= 3, 'Model Specification'=4))
Model Specification
Estimator SS Level-1 SS Level-2 C M1 M2 M12
MLR 5 30 1.0000000 0.9820000 0.9996667 0.9996667
MLR 5 50 1.0000000 0.9860000 1.0000000 1.0000000
MLR 5 100 1.0000000 0.9820000 1.0000000 1.0000000
MLR 5 200 0.9996667 0.9860000 1.0000000 1.0000000
MLR 10 30 1.0000000 0.9816667 1.0000000 0.9993333
MLR 10 50 1.0000000 0.9783333 0.9996667 1.0000000
MLR 10 100 1.0000000 0.9800000 1.0000000 1.0000000
MLR 10 200 0.9996667 0.9873333 1.0000000 1.0000000
MLR 30 30 1.0000000 0.9713333 1.0000000 0.9990000
MLR 30 50 0.9996667 0.9766667 0.9993333 0.9993333
MLR 30 100 0.9993333 0.9846667 0.9996667 1.0000000
MLR 30 200 0.9993333 0.9873333 0.9993333 1.0000000
ULSMV 5 30 0.9896667 0.9283333 0.9576667 0.9436667
ULSMV 5 50 0.9996667 0.9576667 0.9820000 0.9723333
ULSMV 5 100 1.0000000 0.9743333 0.9926667 0.9896667
ULSMV 5 200 1.0000000 0.9846667 0.9993333 0.9993333
ULSMV 10 30 0.9990000 0.9603333 0.9756667 0.9700000
ULSMV 10 50 0.9996667 0.9686667 0.9883333 0.9883333
ULSMV 10 100 1.0000000 0.9826667 0.9956667 0.9946667
ULSMV 10 200 1.0000000 0.9880000 0.9996667 0.9996667
ULSMV 30 30 0.9996667 0.9740000 0.9806667 0.9806667
ULSMV 30 50 1.0000000 0.9840000 0.9920000 0.9893333
ULSMV 30 100 1.0000000 0.9896667 0.9953333 0.9963333
ULSMV 30 200 1.0000000 0.9926667 1.0000000 0.9996667
WLSMV 5 30 0.9976667 0.9036667 0.9973333 0.9513333
WLSMV 5 50 1.0000000 0.9413333 1.0000000 0.9786667
WLSMV 5 100 1.0000000 0.9706667 1.0000000 0.9983333
WLSMV 5 200 1.0000000 0.9806667 1.0000000 1.0000000
WLSMV 10 30 1.0000000 0.9446667 1.0000000 0.9830000
WLSMV 10 50 0.9996667 0.9626667 0.9996667 0.9983333
WLSMV 10 100 1.0000000 0.9746667 1.0000000 1.0000000
WLSMV 10 200 1.0000000 0.9860000 1.0000000 1.0000000
WLSMV 30 30 1.0000000 0.9653333 1.0000000 0.9936667
WLSMV 30 50 1.0000000 0.9750000 1.0000000 1.0000000
WLSMV 30 100 1.0000000 0.9846667 1.0000000 1.0000000
WLSMV 30 200 1.0000000 0.9846667 1.0000000 1.0000000
## Print out in tex
print(xtable(c1, digits = 3), booktabs = T, include.rownames = F)
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:23 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllrrrr}
  \toprule
Estimator & SS Level-1 & SS Level-2 & C & M1 & M2 & M12 \\ 
  \midrule
MLR & 5 & 30 & 1.000 & 0.982 & 1.000 & 1.000 \\ 
  MLR & 5 & 50 & 1.000 & 0.986 & 1.000 & 1.000 \\ 
  MLR & 5 & 100 & 1.000 & 0.982 & 1.000 & 1.000 \\ 
  MLR & 5 & 200 & 1.000 & 0.986 & 1.000 & 1.000 \\ 
  MLR & 10 & 30 & 1.000 & 0.982 & 1.000 & 0.999 \\ 
  MLR & 10 & 50 & 1.000 & 0.978 & 1.000 & 1.000 \\ 
  MLR & 10 & 100 & 1.000 & 0.980 & 1.000 & 1.000 \\ 
  MLR & 10 & 200 & 1.000 & 0.987 & 1.000 & 1.000 \\ 
  MLR & 30 & 30 & 1.000 & 0.971 & 1.000 & 0.999 \\ 
  MLR & 30 & 50 & 1.000 & 0.977 & 0.999 & 0.999 \\ 
  MLR & 30 & 100 & 0.999 & 0.985 & 1.000 & 1.000 \\ 
  MLR & 30 & 200 & 0.999 & 0.987 & 0.999 & 1.000 \\ 
  ULSMV & 5 & 30 & 0.990 & 0.928 & 0.958 & 0.944 \\ 
  ULSMV & 5 & 50 & 1.000 & 0.958 & 0.982 & 0.972 \\ 
  ULSMV & 5 & 100 & 1.000 & 0.974 & 0.993 & 0.990 \\ 
  ULSMV & 5 & 200 & 1.000 & 0.985 & 0.999 & 0.999 \\ 
  ULSMV & 10 & 30 & 0.999 & 0.960 & 0.976 & 0.970 \\ 
  ULSMV & 10 & 50 & 1.000 & 0.969 & 0.988 & 0.988 \\ 
  ULSMV & 10 & 100 & 1.000 & 0.983 & 0.996 & 0.995 \\ 
  ULSMV & 10 & 200 & 1.000 & 0.988 & 1.000 & 1.000 \\ 
  ULSMV & 30 & 30 & 1.000 & 0.974 & 0.981 & 0.981 \\ 
  ULSMV & 30 & 50 & 1.000 & 0.984 & 0.992 & 0.989 \\ 
  ULSMV & 30 & 100 & 1.000 & 0.990 & 0.995 & 0.996 \\ 
  ULSMV & 30 & 200 & 1.000 & 0.993 & 1.000 & 1.000 \\ 
  WLSMV & 5 & 30 & 0.998 & 0.904 & 0.997 & 0.951 \\ 
  WLSMV & 5 & 50 & 1.000 & 0.941 & 1.000 & 0.979 \\ 
  WLSMV & 5 & 100 & 1.000 & 0.971 & 1.000 & 0.998 \\ 
  WLSMV & 5 & 200 & 1.000 & 0.981 & 1.000 & 1.000 \\ 
  WLSMV & 10 & 30 & 1.000 & 0.945 & 1.000 & 0.983 \\ 
  WLSMV & 10 & 50 & 1.000 & 0.963 & 1.000 & 0.998 \\ 
  WLSMV & 10 & 100 & 1.000 & 0.975 & 1.000 & 1.000 \\ 
  WLSMV & 10 & 200 & 1.000 & 0.986 & 1.000 & 1.000 \\ 
  WLSMV & 30 & 30 & 1.000 & 0.965 & 1.000 & 0.994 \\ 
  WLSMV & 30 & 50 & 1.000 & 0.975 & 1.000 & 1.000 \\ 
  WLSMV & 30 & 100 & 1.000 & 0.985 & 1.000 & 1.000 \\ 
  WLSMV & 30 & 200 & 1.000 & 0.985 & 1.000 & 1.000 \\ 
   \bottomrule
\end{tabular}
\end{table}

Across all conditions

## first table summary table
c <- sim_results %>%
  group_by(Model, Estimator, ss_l1, ss_l2, icc_ov, icc_lv) %>%
  summarise(Converge=mean(Converge))
# Next make the columns the estimator factor
c1 <- cbind(c[ c$Model == 'C' & c$Estimator == 'MLR', c('ss_l1', 'ss_l2','icc_ov', 'icc_lv', 'Converge')],
            c[ c$Model == 'C' & c$Estimator == 'ULSMV', 'Converge'],
            c[ c$Model == 'C' & c$Estimator == 'WLSMV', 'Converge'],
            c[ c$Model == 'M1' & c$Estimator == 'MLR', 'Converge'], 
            c[ c$Model == 'M1' & c$Estimator == 'ULSMV', 'Converge'],
            c[ c$Model == 'M1' & c$Estimator == 'WLSMV', 'Converge'],
            c[ c$Model == 'M2' & c$Estimator == 'MLR', 'Converge'],
            c[ c$Model == 'M2' & c$Estimator == 'ULSMV', 'Converge'],
            c[ c$Model == 'M2' & c$Estimator == 'WLSMV', 'Converge'],
            c[ c$Model == 'M12' & c$Estimator == 'MLR', 'Converge'],
            c[ c$Model == 'M12' & c$Estimator == 'ULSMV', 'Converge'],
            c[ c$Model == 'M12' & c$Estimator == 'WLSMV', 'Converge'])
colnames(c1) <- c('SS Level-1', 'SS Level-2', 'ICC-OV', 'ICC-LV', rep(c('MLR', 'ULSMV', 'WLSMV'), 4))

## Print results in a nice looking table in HTML
kable(c1, format='html') %>%
  kable_styling(full_width = T) %>%
  add_header_above(c(' '= 4, 'Model C'=3, 'Model M1'=3, 'Model M2'=3, 'Model M12'=3))
Model C
Model M1
Model M2
Model M12
SS Level-1 SS Level-2 ICC-OV ICC-LV MLR ULSMV WLSMV MLR ULSMV WLSMV MLR ULSMV WLSMV MLR ULSMV WLSMV
5 30 0.1 0.1 1.000 0.998 0.992 0.980 0.924 0.866 1.000 0.998 0.994 1.000 0.976 0.926
5 30 0.1 0.5 1.000 1.000 1.000 1.000 0.980 0.968 1.000 0.938 0.998 1.000 0.942 0.976
5 30 0.3 0.1 1.000 0.998 1.000 0.972 0.892 0.842 1.000 0.994 0.996 1.000 0.952 0.938
5 30 0.3 0.5 1.000 1.000 1.000 0.996 0.970 0.960 1.000 0.934 1.000 1.000 0.940 0.972
5 30 0.5 0.1 1.000 0.966 0.998 0.956 0.866 0.866 1.000 0.968 0.998 0.998 0.946 0.942
5 30 0.5 0.5 1.000 0.976 0.996 0.988 0.938 0.920 0.998 0.914 0.998 1.000 0.906 0.954
5 50 0.1 0.1 1.000 1.000 1.000 0.992 0.932 0.892 1.000 1.000 1.000 1.000 0.988 0.964
5 50 0.1 0.5 1.000 1.000 1.000 0.998 0.998 0.996 1.000 0.982 1.000 1.000 0.974 0.994
5 50 0.3 0.1 1.000 1.000 1.000 0.972 0.916 0.904 1.000 1.000 1.000 1.000 0.988 0.974
5 50 0.3 0.5 1.000 1.000 1.000 1.000 0.996 0.990 1.000 0.966 1.000 1.000 0.964 0.980
5 50 0.5 0.1 1.000 0.998 1.000 0.958 0.916 0.898 1.000 1.000 1.000 1.000 0.978 0.976
5 50 0.5 0.5 1.000 1.000 1.000 0.996 0.988 0.968 1.000 0.944 1.000 1.000 0.942 0.984
5 100 0.1 0.1 1.000 1.000 1.000 0.982 0.966 0.954 1.000 1.000 1.000 1.000 0.998 0.996
5 100 0.1 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.998 1.000 1.000 0.996 1.000
5 100 0.3 0.1 1.000 1.000 1.000 0.972 0.942 0.946 1.000 1.000 1.000 1.000 1.000 1.000
5 100 0.3 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.988 1.000 1.000 0.988 1.000
5 100 0.5 0.1 1.000 1.000 1.000 0.942 0.938 0.932 1.000 1.000 1.000 1.000 0.998 1.000
5 100 0.5 0.5 1.000 1.000 1.000 0.996 1.000 0.992 1.000 0.970 1.000 1.000 0.958 0.994
5 200 0.1 0.1 1.000 1.000 1.000 0.996 0.986 0.984 1.000 1.000 1.000 1.000 1.000 1.000
5 200 0.1 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000
5 200 0.3 0.1 1.000 1.000 1.000 0.978 0.960 0.954 1.000 1.000 1.000 1.000 1.000 1.000
5 200 0.3 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000
5 200 0.5 0.1 1.000 1.000 1.000 0.942 0.962 0.946 1.000 1.000 1.000 1.000 1.000 1.000
5 200 0.5 0.5 0.998 1.000 1.000 1.000 1.000 1.000 1.000 0.996 1.000 1.000 0.996 1.000
10 30 0.1 0.1 1.000 1.000 1.000 0.992 0.948 0.920 1.000 1.000 1.000 1.000 0.990 0.982
10 30 0.1 0.5 1.000 1.000 1.000 1.000 0.998 0.994 1.000 0.980 1.000 1.000 0.970 0.994
10 30 0.3 0.1 1.000 1.000 1.000 0.974 0.898 0.900 1.000 1.000 1.000 0.998 0.990 0.986
10 30 0.3 0.5 1.000 1.000 1.000 1.000 0.996 0.996 1.000 0.940 1.000 1.000 0.952 0.992
10 30 0.5 0.1 1.000 0.998 1.000 0.932 0.938 0.880 1.000 0.990 1.000 1.000 0.980 0.964
10 30 0.5 0.5 1.000 0.996 1.000 0.992 0.984 0.978 1.000 0.944 1.000 0.998 0.938 0.980
10 50 0.1 0.1 1.000 1.000 1.000 0.990 0.956 0.964 1.000 1.000 1.000 1.000 0.998 0.998
10 50 0.1 0.5 1.000 0.998 0.998 1.000 0.998 0.998 1.000 0.992 0.998 1.000 0.994 0.998
10 50 0.3 0.1 1.000 1.000 1.000 0.954 0.936 0.932 1.000 1.000 1.000 1.000 1.000 1.000
10 50 0.3 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.982 1.000 1.000 0.986 1.000
10 50 0.5 0.1 1.000 1.000 1.000 0.926 0.932 0.884 1.000 1.000 1.000 1.000 1.000 0.998
10 50 0.5 0.5 1.000 1.000 1.000 1.000 0.990 0.998 0.998 0.956 1.000 1.000 0.952 0.996
10 100 0.1 0.1 1.000 1.000 1.000 0.992 0.980 0.984 1.000 1.000 1.000 1.000 1.000 1.000
10 100 0.1 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.998 1.000 1.000 0.998 1.000
10 100 0.3 0.1 1.000 1.000 1.000 0.964 0.958 0.946 1.000 1.000 1.000 1.000 1.000 1.000
10 100 0.3 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.998 1.000 1.000 0.998 1.000
10 100 0.5 0.1 1.000 1.000 1.000 0.924 0.958 0.918 1.000 1.000 1.000 1.000 1.000 1.000
10 100 0.5 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.978 1.000 1.000 0.972 1.000
10 200 0.1 0.1 1.000 1.000 1.000 0.992 1.000 0.996 1.000 1.000 1.000 1.000 1.000 1.000
10 200 0.1 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000
10 200 0.3 0.1 0.998 1.000 1.000 0.992 0.976 0.980 1.000 1.000 1.000 1.000 1.000 1.000
10 200 0.3 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000
10 200 0.5 0.1 1.000 1.000 1.000 0.940 0.952 0.940 1.000 1.000 1.000 1.000 1.000 1.000
10 200 0.5 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.998 1.000 1.000 0.998 1.000
30 30 0.1 0.1 1.000 1.000 1.000 0.984 0.982 0.982 1.000 1.000 1.000 1.000 1.000 1.000
30 30 0.1 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.988 1.000 1.000 0.992 1.000
30 30 0.3 0.1 1.000 1.000 1.000 0.956 0.940 0.934 1.000 1.000 1.000 1.000 1.000 0.998
30 30 0.3 0.5 1.000 1.000 1.000 1.000 1.000 0.994 1.000 0.962 1.000 0.994 0.968 0.994
30 30 0.5 0.1 1.000 1.000 1.000 0.894 0.932 0.902 1.000 1.000 1.000 1.000 1.000 0.982
30 30 0.5 0.5 1.000 0.998 1.000 0.994 0.990 0.980 1.000 0.934 1.000 1.000 0.924 0.988
30 50 0.1 0.1 1.000 1.000 1.000 0.990 0.992 0.992 1.000 1.000 1.000 1.000 1.000 1.000
30 50 0.1 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.992 1.000 1.000 0.992 1.000
30 50 0.3 0.1 1.000 1.000 1.000 0.966 0.964 0.946 1.000 1.000 1.000 1.000 1.000 1.000
30 50 0.3 0.5 0.998 1.000 1.000 1.000 1.000 1.000 0.996 0.988 1.000 0.996 0.982 1.000
30 50 0.5 0.1 1.000 1.000 1.000 0.908 0.948 0.914 1.000 1.000 1.000 1.000 1.000 1.000
30 50 0.5 0.5 1.000 1.000 1.000 0.996 1.000 0.998 1.000 0.972 1.000 1.000 0.962 1.000
30 100 0.1 0.1 1.000 1.000 1.000 0.994 1.000 0.998 1.000 1.000 1.000 1.000 1.000 1.000
30 100 0.1 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.998 1.000 1.000 1.000 1.000
30 100 0.3 0.1 1.000 1.000 1.000 0.986 0.984 0.974 1.000 1.000 1.000 1.000 1.000 1.000
30 100 0.3 0.5 0.996 1.000 1.000 1.000 1.000 1.000 0.998 0.992 1.000 1.000 0.992 1.000
30 100 0.5 0.1 1.000 1.000 1.000 0.928 0.954 0.936 1.000 1.000 1.000 1.000 1.000 1.000
30 100 0.5 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.982 1.000 1.000 0.986 1.000
30 200 0.1 0.1 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000
30 200 0.1 0.5 1.000 1.000 1.000 1.000 0.998 1.000 1.000 1.000 1.000 1.000 1.000 1.000
30 200 0.3 0.1 1.000 1.000 1.000 0.994 0.986 0.982 1.000 1.000 1.000 1.000 1.000 1.000
30 200 0.3 0.5 0.996 1.000 1.000 0.998 1.000 1.000 0.996 1.000 1.000 1.000 1.000 1.000
30 200 0.5 0.1 1.000 1.000 1.000 0.932 0.972 0.926 1.000 1.000 1.000 1.000 1.000 1.000
30 200 0.5 0.5 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 1.000 0.998 1.000
## Print out in tex
print(xtable(c1, digits = 3), booktabs = T, include.rownames = F)
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:23 2019
\begin{table}[ht]
\centering
\begin{tabular}{llllrrrrrrrrrrrr}
  \toprule
SS Level-1 & SS Level-2 & ICC-OV & ICC-LV & MLR & ULSMV & WLSMV & MLR & ULSMV & WLSMV & MLR & ULSMV & WLSMV & MLR & ULSMV & WLSMV \\ 
  \midrule
5 & 30 & 0.1 & 0.1 & 1.000 & 0.998 & 0.992 & 0.980 & 0.924 & 0.866 & 1.000 & 0.998 & 0.994 & 1.000 & 0.976 & 0.926 \\ 
  5 & 30 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.980 & 0.968 & 1.000 & 0.938 & 0.998 & 1.000 & 0.942 & 0.976 \\ 
  5 & 30 & 0.3 & 0.1 & 1.000 & 0.998 & 1.000 & 0.972 & 0.892 & 0.842 & 1.000 & 0.994 & 0.996 & 1.000 & 0.952 & 0.938 \\ 
  5 & 30 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 0.996 & 0.970 & 0.960 & 1.000 & 0.934 & 1.000 & 1.000 & 0.940 & 0.972 \\ 
  5 & 30 & 0.5 & 0.1 & 1.000 & 0.966 & 0.998 & 0.956 & 0.866 & 0.866 & 1.000 & 0.968 & 0.998 & 0.998 & 0.946 & 0.942 \\ 
  5 & 30 & 0.5 & 0.5 & 1.000 & 0.976 & 0.996 & 0.988 & 0.938 & 0.920 & 0.998 & 0.914 & 0.998 & 1.000 & 0.906 & 0.954 \\ 
  5 & 50 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.992 & 0.932 & 0.892 & 1.000 & 1.000 & 1.000 & 1.000 & 0.988 & 0.964 \\ 
  5 & 50 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 0.998 & 0.998 & 0.996 & 1.000 & 0.982 & 1.000 & 1.000 & 0.974 & 0.994 \\ 
  5 & 50 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.972 & 0.916 & 0.904 & 1.000 & 1.000 & 1.000 & 1.000 & 0.988 & 0.974 \\ 
  5 & 50 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.996 & 0.990 & 1.000 & 0.966 & 1.000 & 1.000 & 0.964 & 0.980 \\ 
  5 & 50 & 0.5 & 0.1 & 1.000 & 0.998 & 1.000 & 0.958 & 0.916 & 0.898 & 1.000 & 1.000 & 1.000 & 1.000 & 0.978 & 0.976 \\ 
  5 & 50 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 0.996 & 0.988 & 0.968 & 1.000 & 0.944 & 1.000 & 1.000 & 0.942 & 0.984 \\ 
  5 & 100 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.982 & 0.966 & 0.954 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 0.996 \\ 
  5 & 100 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 & 1.000 & 0.996 & 1.000 \\ 
  5 & 100 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.972 & 0.942 & 0.946 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  5 & 100 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.988 & 1.000 & 1.000 & 0.988 & 1.000 \\ 
  5 & 100 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.942 & 0.938 & 0.932 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 \\ 
  5 & 100 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 0.996 & 1.000 & 0.992 & 1.000 & 0.970 & 1.000 & 1.000 & 0.958 & 0.994 \\ 
  5 & 200 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.996 & 0.986 & 0.984 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  5 & 200 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  5 & 200 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.978 & 0.960 & 0.954 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  5 & 200 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  5 & 200 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.942 & 0.962 & 0.946 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  5 & 200 & 0.5 & 0.5 & 0.998 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.996 & 1.000 & 1.000 & 0.996 & 1.000 \\ 
  10 & 30 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.992 & 0.948 & 0.920 & 1.000 & 1.000 & 1.000 & 1.000 & 0.990 & 0.982 \\ 
  10 & 30 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 0.994 & 1.000 & 0.980 & 1.000 & 1.000 & 0.970 & 0.994 \\ 
  10 & 30 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.974 & 0.898 & 0.900 & 1.000 & 1.000 & 1.000 & 0.998 & 0.990 & 0.986 \\ 
  10 & 30 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.996 & 0.996 & 1.000 & 0.940 & 1.000 & 1.000 & 0.952 & 0.992 \\ 
  10 & 30 & 0.5 & 0.1 & 1.000 & 0.998 & 1.000 & 0.932 & 0.938 & 0.880 & 1.000 & 0.990 & 1.000 & 1.000 & 0.980 & 0.964 \\ 
  10 & 30 & 0.5 & 0.5 & 1.000 & 0.996 & 1.000 & 0.992 & 0.984 & 0.978 & 1.000 & 0.944 & 1.000 & 0.998 & 0.938 & 0.980 \\ 
  10 & 50 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.990 & 0.956 & 0.964 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 0.998 \\ 
  10 & 50 & 0.1 & 0.5 & 1.000 & 0.998 & 0.998 & 1.000 & 0.998 & 0.998 & 1.000 & 0.992 & 0.998 & 1.000 & 0.994 & 0.998 \\ 
  10 & 50 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.954 & 0.936 & 0.932 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 50 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.982 & 1.000 & 1.000 & 0.986 & 1.000 \\ 
  10 & 50 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.926 & 0.932 & 0.884 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 \\ 
  10 & 50 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.990 & 0.998 & 0.998 & 0.956 & 1.000 & 1.000 & 0.952 & 0.996 \\ 
  10 & 100 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.992 & 0.980 & 0.984 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 100 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 & 1.000 & 0.998 & 1.000 \\ 
  10 & 100 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.964 & 0.958 & 0.946 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 100 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 & 1.000 & 0.998 & 1.000 \\ 
  10 & 100 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.924 & 0.958 & 0.918 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 100 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.978 & 1.000 & 1.000 & 0.972 & 1.000 \\ 
  10 & 200 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.992 & 1.000 & 0.996 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 200 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 200 & 0.3 & 0.1 & 0.998 & 1.000 & 1.000 & 0.992 & 0.976 & 0.980 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 200 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 200 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.940 & 0.952 & 0.940 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  10 & 200 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 & 1.000 & 0.998 & 1.000 \\ 
  30 & 30 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.984 & 0.982 & 0.982 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 30 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.988 & 1.000 & 1.000 & 0.992 & 1.000 \\ 
  30 & 30 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.956 & 0.940 & 0.934 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 \\ 
  30 & 30 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.994 & 1.000 & 0.962 & 1.000 & 0.994 & 0.968 & 0.994 \\ 
  30 & 30 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.894 & 0.932 & 0.902 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.982 \\ 
  30 & 30 & 0.5 & 0.5 & 1.000 & 0.998 & 1.000 & 0.994 & 0.990 & 0.980 & 1.000 & 0.934 & 1.000 & 1.000 & 0.924 & 0.988 \\ 
  30 & 50 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.990 & 0.992 & 0.992 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 50 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.992 & 1.000 & 1.000 & 0.992 & 1.000 \\ 
  30 & 50 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.966 & 0.964 & 0.946 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 50 & 0.3 & 0.5 & 0.998 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.996 & 0.988 & 1.000 & 0.996 & 0.982 & 1.000 \\ 
  30 & 50 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.908 & 0.948 & 0.914 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 50 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 0.996 & 1.000 & 0.998 & 1.000 & 0.972 & 1.000 & 1.000 & 0.962 & 1.000 \\ 
  30 & 100 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.994 & 1.000 & 0.998 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 100 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 100 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.986 & 0.984 & 0.974 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 100 & 0.3 & 0.5 & 0.996 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 0.992 & 1.000 & 1.000 & 0.992 & 1.000 \\ 
  30 & 100 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.928 & 0.954 & 0.936 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 100 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.982 & 1.000 & 1.000 & 0.986 & 1.000 \\ 
  30 & 200 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 200 & 0.1 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 200 & 0.3 & 0.1 & 1.000 & 1.000 & 1.000 & 0.994 & 0.986 & 0.982 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 200 & 0.3 & 0.5 & 0.996 & 1.000 & 1.000 & 0.998 & 1.000 & 1.000 & 0.996 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 200 & 0.5 & 0.1 & 1.000 & 1.000 & 1.000 & 0.932 & 0.972 & 0.926 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 200 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 1.000 \\ 
   \bottomrule
\end{tabular}
\end{table}

Admissibility Summary

Admissibility rates are first subsetted to the converged models. So, the rates may seem misleading and not directly relatable across all conditions and models due to differences in convergence rates.

c.sim_results <- filter(sim_results, Converge == 1)

Admissibilty by Model and Estimator

## first table summary table
c <- c.sim_results %>%
  group_by(Model, Estimator) %>%
  summarise(Admissible=mean(Admissible))
# Next make the columns the estimator factor
c1 <- cbind(c[ c$Model == 'C', 'Admissible'], 
           c[ c$Model == 'M1', 'Admissible'], 
           c[ c$Model == 'M2', 'Admissible'], 
           c[ c$Model == 'M12', 'Admissible'])
rownames(c1) <- c('MLR', 'ULSMV', 'WLSMV')
colnames(c1) <- c('C' ,'M1' ,'M2', 'M12')
## Print results in a nice looking table in HTML
kable(c1, format='html') %>%
    kable_styling(full_width = T) %>%
    add_header_above(c(' '= 1, 'Model Specification'=4))
Model Specification
C M1 M2 M12
MLR 0.8339955 0.7310608 0.8316339 0.8299344
ULSMV 0.7650919 0.6100699 0.7719594 0.6409179
WLSMV 0.7217437 0.5238466 0.7334611 0.6174741
## Print out in tex
print(xtable(c1, digits = 3), booktabs = T, include.rownames = T)
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:24 2019
\begin{table}[ht]
\centering
\begin{tabular}{rrrrr}
  \toprule
 & C & M1 & M2 & M12 \\ 
  \midrule
MLR & 0.834 & 0.731 & 0.832 & 0.830 \\ 
  ULSMV & 0.765 & 0.610 & 0.772 & 0.641 \\ 
  WLSMV & 0.722 & 0.524 & 0.733 & 0.617 \\ 
   \bottomrule
\end{tabular}
\end{table}

Model, Estimator, and Sample Sizes

## first table summary table
c <- c.sim_results %>%
  group_by(Model, Estimator, ss_l1, ss_l2) %>%
  summarise(Admissible=mean(Admissible))
# Next make the columns the estimator factor
c1 <- cbind(c[ c$Model == 'C', c('Estimator', 'ss_l1', 'ss_l2', 'Admissible')], 
           c[ c$Model == 'M1', 'Admissible'], 
           c[ c$Model == 'M2', 'Admissible'], 
           c[ c$Model == 'M12', 'Admissible'])
colnames(c1) <- c('Estimator', 'SS Level-1', 'SS Level-2', 'C' ,'M1' ,'M2', 'M12')

## Print results in a nice looking table in HTML
kable(c1, format='html') %>%
  kable_styling(full_width = T) %>%
  add_header_above(c(' '= 3, 'Model Specification'=4))
Model Specification
Estimator SS Level-1 SS Level-2 C M1 M2 M12
MLR 5 30 0.5753333 0.4680923 0.5728576 0.5475158
MLR 5 50 0.6773333 0.5655849 0.6833333 0.6670000
MLR 5 100 0.8056667 0.6096402 0.8023333 0.8113333
MLR 5 200 0.9236412 0.6582150 0.9153333 0.9263333
MLR 10 30 0.6846667 0.5935484 0.6846667 0.6771181
MLR 10 50 0.7956667 0.6838160 0.7969323 0.7976667
MLR 10 100 0.9200000 0.7979592 0.9093333 0.9163333
MLR 10 200 0.9633211 0.8706955 0.9596667 0.9606667
MLR 30 30 0.8383333 0.7700755 0.8406667 0.8398398
MLR 30 50 0.9019673 0.8621160 0.8972648 0.8962642
MLR 30 100 0.9462975 0.9343263 0.9466489 0.9473333
MLR 30 200 0.9759840 0.9581364 0.9706471 0.9716667
ULSMV 5 30 0.4051869 0.3605027 0.3992342 0.3705404
ULSMV 5 50 0.5318439 0.4667595 0.5346232 0.4809736
ULSMV 5 100 0.6920000 0.5737256 0.7051713 0.6039070
ULSMV 5 200 0.8753333 0.6828030 0.8969313 0.7311541
ULSMV 10 30 0.5735736 0.4946199 0.5872907 0.5113402
ULSMV 10 50 0.7075692 0.5626290 0.7170320 0.6037099
ULSMV 10 100 0.8730000 0.6682497 0.8865082 0.7114611
ULSMV 10 200 0.9576667 0.7378543 0.9589863 0.7712571
ULSMV 30 30 0.7622541 0.5773443 0.7705642 0.6284840
ULSMV 30 50 0.8796667 0.6663279 0.8716398 0.6987871
ULSMV 30 100 0.9446667 0.7329067 0.9413932 0.7604550
ULSMV 30 200 0.9743333 0.7723304 0.9706667 0.7959320
WLSMV 5 30 0.3558303 0.3142752 0.3606283 0.3346181
WLSMV 5 50 0.4700000 0.3891643 0.4976667 0.4288147
WLSMV 5 100 0.6646667 0.5078984 0.6813333 0.5736227
WLSMV 5 200 0.8486667 0.6101292 0.8676667 0.7156667
WLSMV 10 30 0.5080000 0.4121383 0.5296667 0.4659207
WLSMV 10 50 0.6605535 0.5031163 0.6735579 0.5826377
WLSMV 10 100 0.8243333 0.5704514 0.8400000 0.6970000
WLSMV 10 200 0.9356667 0.6433401 0.9460000 0.7650000
WLSMV 30 30 0.6883333 0.4709945 0.7013333 0.6014760
WLSMV 30 50 0.8196667 0.5678632 0.8186667 0.6866667
WLSMV 30 100 0.9110000 0.6205146 0.9143333 0.7586667
WLSMV 30 200 0.9733333 0.6479350 0.9696667 0.7790000
## Print out in tex
print(xtable(c1, digits = 3), booktabs = T, include.rownames = F)
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:24 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllrrrr}
  \toprule
Estimator & SS Level-1 & SS Level-2 & C & M1 & M2 & M12 \\ 
  \midrule
MLR & 5 & 30 & 0.575 & 0.468 & 0.573 & 0.548 \\ 
  MLR & 5 & 50 & 0.677 & 0.566 & 0.683 & 0.667 \\ 
  MLR & 5 & 100 & 0.806 & 0.610 & 0.802 & 0.811 \\ 
  MLR & 5 & 200 & 0.924 & 0.658 & 0.915 & 0.926 \\ 
  MLR & 10 & 30 & 0.685 & 0.594 & 0.685 & 0.677 \\ 
  MLR & 10 & 50 & 0.796 & 0.684 & 0.797 & 0.798 \\ 
  MLR & 10 & 100 & 0.920 & 0.798 & 0.909 & 0.916 \\ 
  MLR & 10 & 200 & 0.963 & 0.871 & 0.960 & 0.961 \\ 
  MLR & 30 & 30 & 0.838 & 0.770 & 0.841 & 0.840 \\ 
  MLR & 30 & 50 & 0.902 & 0.862 & 0.897 & 0.896 \\ 
  MLR & 30 & 100 & 0.946 & 0.934 & 0.947 & 0.947 \\ 
  MLR & 30 & 200 & 0.976 & 0.958 & 0.971 & 0.972 \\ 
  ULSMV & 5 & 30 & 0.405 & 0.361 & 0.399 & 0.371 \\ 
  ULSMV & 5 & 50 & 0.532 & 0.467 & 0.535 & 0.481 \\ 
  ULSMV & 5 & 100 & 0.692 & 0.574 & 0.705 & 0.604 \\ 
  ULSMV & 5 & 200 & 0.875 & 0.683 & 0.897 & 0.731 \\ 
  ULSMV & 10 & 30 & 0.574 & 0.495 & 0.587 & 0.511 \\ 
  ULSMV & 10 & 50 & 0.708 & 0.563 & 0.717 & 0.604 \\ 
  ULSMV & 10 & 100 & 0.873 & 0.668 & 0.887 & 0.711 \\ 
  ULSMV & 10 & 200 & 0.958 & 0.738 & 0.959 & 0.771 \\ 
  ULSMV & 30 & 30 & 0.762 & 0.577 & 0.771 & 0.628 \\ 
  ULSMV & 30 & 50 & 0.880 & 0.666 & 0.872 & 0.699 \\ 
  ULSMV & 30 & 100 & 0.945 & 0.733 & 0.941 & 0.760 \\ 
  ULSMV & 30 & 200 & 0.974 & 0.772 & 0.971 & 0.796 \\ 
  WLSMV & 5 & 30 & 0.356 & 0.314 & 0.361 & 0.335 \\ 
  WLSMV & 5 & 50 & 0.470 & 0.389 & 0.498 & 0.429 \\ 
  WLSMV & 5 & 100 & 0.665 & 0.508 & 0.681 & 0.574 \\ 
  WLSMV & 5 & 200 & 0.849 & 0.610 & 0.868 & 0.716 \\ 
  WLSMV & 10 & 30 & 0.508 & 0.412 & 0.530 & 0.466 \\ 
  WLSMV & 10 & 50 & 0.661 & 0.503 & 0.674 & 0.583 \\ 
  WLSMV & 10 & 100 & 0.824 & 0.570 & 0.840 & 0.697 \\ 
  WLSMV & 10 & 200 & 0.936 & 0.643 & 0.946 & 0.765 \\ 
  WLSMV & 30 & 30 & 0.688 & 0.471 & 0.701 & 0.601 \\ 
  WLSMV & 30 & 50 & 0.820 & 0.568 & 0.819 & 0.687 \\ 
  WLSMV & 30 & 100 & 0.911 & 0.621 & 0.914 & 0.759 \\ 
  WLSMV & 30 & 200 & 0.973 & 0.648 & 0.970 & 0.779 \\ 
   \bottomrule
\end{tabular}
\end{table}

Across all conditions

## first table summary table
c <- c.sim_results %>%
  group_by(Model, Estimator, ss_l1, ss_l2, icc_ov, icc_lv) %>%
  summarise(Admissible=mean(Admissible))
# Next make the columns the estimator factor
c1 <- cbind(c[ c$Model == 'C' & c$Estimator == 'MLR', c('ss_l1', 'ss_l2','icc_ov', 'icc_lv', 'Admissible')],
            c[ c$Model == 'C' & c$Estimator == 'ULSMV', 'Admissible'],
            c[ c$Model == 'C' & c$Estimator == 'WLSMV', 'Admissible'],
            c[ c$Model == 'M1' & c$Estimator == 'MLR', 'Admissible'], 
            c[ c$Model == 'M1' & c$Estimator == 'ULSMV', 'Admissible'],
            c[ c$Model == 'M1' & c$Estimator == 'WLSMV', 'Admissible'],
            c[ c$Model == 'M2' & c$Estimator == 'MLR', 'Admissible'],
            c[ c$Model == 'M2' & c$Estimator == 'ULSMV', 'Admissible'],
            c[ c$Model == 'M2' & c$Estimator == 'WLSMV', 'Admissible'],
            c[ c$Model == 'M12' & c$Estimator == 'MLR', 'Admissible'],
            c[ c$Model == 'M12' & c$Estimator == 'ULSMV', 'Admissible'],
            c[ c$Model == 'M12' & c$Estimator == 'WLSMV', 'Admissible'])
colnames(c1) <- c('SS Level-1', 'SS Level-2', 'ICC-OV', 'ICC-LV', rep(c('MLR', 'ULSMV', 'WLSMV'), 4))

## Print results in a nice looking table in HTML
kable(c1, format='html') %>%
  kable_styling(full_width = T) %>%
  add_header_above(c(' '= 4, 'Model C'=3, 'Model M1'=3, 'Model M2'=3, 'Model M12'=3))
Model C
Model M1
Model M2
Model M12
SS Level-1 SS Level-2 ICC-OV ICC-LV MLR ULSMV WLSMV MLR ULSMV WLSMV MLR ULSMV WLSMV MLR ULSMV WLSMV
5 30 0.1 0.1 0.5220000 0.0300601 0.0483871 0.3265306 0.0411255 0.0461894 0.4960000 0.0460922 0.0583501 0.5100000 0.0409836 0.0669546
5 30 0.1 0.5 0.3720000 0.0360000 0.0240000 0.2660000 0.0122449 0.0082645 0.3820000 0.0511727 0.0440882 0.3380000 0.0233546 0.0389344
5 30 0.3 0.1 0.4680000 0.3567134 0.2500000 0.4012346 0.3766816 0.2707838 0.4380000 0.3682093 0.2369478 0.4100000 0.3634454 0.2494670
5 30 0.3 0.5 0.7920000 0.7300000 0.6740000 0.6285141 0.5422680 0.4708333 0.8220000 0.7087794 0.6940000 0.7640000 0.6212766 0.5884774
5 30 0.5 0.1 0.3600000 0.3354037 0.2244489 0.3995816 0.3741339 0.2933025 0.3540000 0.3409091 0.2104208 0.3446894 0.3234672 0.2016985
5 30 0.5 0.5 0.9380000 0.9528689 0.9136546 0.7834008 0.8230277 0.7847826 0.9458918 0.9212254 0.9178357 0.9180000 0.8830022 0.8532495
5 50 0.1 0.1 0.5600000 0.1380000 0.1460000 0.3024194 0.1158798 0.1412556 0.5620000 0.1540000 0.1700000 0.5520000 0.1497976 0.1618257
5 50 0.1 0.5 0.5000000 0.0920000 0.0520000 0.3206413 0.0220441 0.0060241 0.5500000 0.1446029 0.0940000 0.4940000 0.0657084 0.0724346
5 50 0.3 0.1 0.5480000 0.5420000 0.4040000 0.5082305 0.5327511 0.4225664 0.5380000 0.5500000 0.4240000 0.5480000 0.4979757 0.4106776
5 50 0.3 0.5 0.9720000 0.9380000 0.8680000 0.8180000 0.6606426 0.4949495 0.9780000 0.9192547 0.9100000 0.9300000 0.7510373 0.6489796
5 50 0.5 0.1 0.4880000 0.4829659 0.3580000 0.5240084 0.5371179 0.4387528 0.4760000 0.4860000 0.3920000 0.4920000 0.4969325 0.3668033
5 50 0.5 0.5 0.9960000 0.9980000 0.9920000 0.9156627 0.9251012 0.8264463 0.9960000 0.9851695 0.9960000 0.9860000 0.9469214 0.9105691
5 100 0.1 0.1 0.7520000 0.4940000 0.5560000 0.2708758 0.3933747 0.4213836 0.7640000 0.5140000 0.5500000 0.7520000 0.4529058 0.4618474
5 100 0.1 0.5 0.7260000 0.3140000 0.2380000 0.2740000 0.0260000 0.0100000 0.7720000 0.4268537 0.3280000 0.7760000 0.0662651 0.1080000
5 100 0.3 0.1 0.7600000 0.7580000 0.6820000 0.6111111 0.7091295 0.6575053 0.7020000 0.7360000 0.6820000 0.7460000 0.7300000 0.6660000
5 100 0.3 0.5 0.9960000 0.9900000 0.9820000 0.9060000 0.7080000 0.4620000 1.0000000 0.9878543 0.9960000 0.9880000 0.7955466 0.7080000
5 100 0.5 0.1 0.6000000 0.5960000 0.5320000 0.5987261 0.6226013 0.5751073 0.5760000 0.5820000 0.5320000 0.6080000 0.5991984 0.5320000
5 100 0.5 0.5 1.0000000 1.0000000 0.9980000 0.9919679 0.9880000 0.9334677 1.0000000 0.9958763 1.0000000 0.9980000 0.9958246 0.9678068
5 200 0.1 0.1 0.9520000 0.8900000 0.9000000 0.2429719 0.6835700 0.7195122 0.9260000 0.9200000 0.9200000 0.9360000 0.8200000 0.8360000
5 200 0.1 0.5 0.9560000 0.7280000 0.6140000 0.2500000 0.0020000 0.0000000 0.9740000 0.8200000 0.7160000 0.9820000 0.0680000 0.1380000
5 200 0.3 0.1 0.8900000 0.8800000 0.8620000 0.7137014 0.8708333 0.8553459 0.8600000 0.8880000 0.8500000 0.8860000 0.8800000 0.8400000
5 200 0.3 0.5 1.0000000 1.0000000 1.0000000 0.9900000 0.8220000 0.4440000 1.0000000 0.9980000 1.0000000 1.0000000 0.8640000 0.7780000
5 200 0.5 0.1 0.7440000 0.7540000 0.7160000 0.7579618 0.7276507 0.6976744 0.7320000 0.7560000 0.7200000 0.7540000 0.7560000 0.7060000
5 200 0.5 0.5 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 0.9620000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 0.9960000
10 30 0.1 0.1 0.6080000 0.3520000 0.3640000 0.3850806 0.3248945 0.3130435 0.5800000 0.3720000 0.3780000 0.6020000 0.3515152 0.3706721
10 30 0.1 0.5 0.4940000 0.1340000 0.0800000 0.3640000 0.0180361 0.0100604 0.5300000 0.2061224 0.1180000 0.5280000 0.0618557 0.0643863
10 30 0.3 0.1 0.5840000 0.5740000 0.4180000 0.5564682 0.5701559 0.4355556 0.5740000 0.5840000 0.4100000 0.5911824 0.5595960 0.3914807
10 30 0.3 0.5 0.9880000 0.9520000 0.8540000 0.8780000 0.6485944 0.4939759 0.9860000 0.9531915 0.9080000 0.9460000 0.7415966 0.6895161
10 30 0.5 0.1 0.4460000 0.4488978 0.3580000 0.4742489 0.5074627 0.4045455 0.4560000 0.4747475 0.3900000 0.4320000 0.4346939 0.3838174
10 30 0.5 0.5 0.9880000 0.9819277 0.9740000 0.8951613 0.9044715 0.8159509 0.9820000 0.9682203 0.9740000 0.9639279 0.9402985 0.8979592
10 50 0.1 0.1 0.8320000 0.6680000 0.7260000 0.4525253 0.4937238 0.5809129 0.8020000 0.6960000 0.7260000 0.8280000 0.6272545 0.6513026
10 50 0.1 0.5 0.7620000 0.3867735 0.2184369 0.5140000 0.0200401 0.0060120 0.8060000 0.4717742 0.2725451 0.7860000 0.0845070 0.1202405
10 50 0.3 0.1 0.6980000 0.6980000 0.6180000 0.6645702 0.6965812 0.6223176 0.6940000 0.6880000 0.6140000 0.7000000 0.7020000 0.6220000
10 50 0.3 0.5 1.0000000 0.9940000 0.9760000 0.9400000 0.6580000 0.4380000 1.0000000 0.9775967 0.9900000 0.9880000 0.7687627 0.7120000
10 50 0.5 0.1 0.4820000 0.4980000 0.4240000 0.5507559 0.5515021 0.4886878 0.4800000 0.4940000 0.4380000 0.4860000 0.4820000 0.4348697
10 50 0.5 0.5 1.0000000 1.0000000 1.0000000 0.9680000 0.9636364 0.8917836 1.0000000 0.9895397 1.0000000 0.9980000 0.9747899 0.9558233
10 100 0.1 0.1 0.9700000 0.9320000 0.9460000 0.5564516 0.7367347 0.7520325 0.9660000 0.9540000 0.9660000 0.9720000 0.8440000 0.8880000
10 100 0.1 0.5 0.9880000 0.7540000 0.5180000 0.7620000 0.0020000 0.0000000 0.9900000 0.8336673 0.6140000 0.9920000 0.0521042 0.1340000
10 100 0.3 0.1 0.8900000 0.8840000 0.8460000 0.7904564 0.8371608 0.8012685 0.8580000 0.8860000 0.8460000 0.8800000 0.8880000 0.8360000
10 100 0.3 0.5 1.0000000 1.0000000 0.9980000 0.9900000 0.7700000 0.3480000 1.0000000 0.9959920 1.0000000 1.0000000 0.8396794 0.7420000
10 100 0.5 0.1 0.6720000 0.6680000 0.6380000 0.6796537 0.6784969 0.6274510 0.6420000 0.6540000 0.6140000 0.6540000 0.6580000 0.6100000
10 100 0.5 0.5 1.0000000 1.0000000 1.0000000 0.9980000 0.9940000 0.9140000 1.0000000 0.9979550 1.0000000 1.0000000 0.9938272 0.9720000
10 200 0.1 0.1 1.0000000 0.9980000 1.0000000 0.6391129 0.8340000 0.8775100 1.0000000 0.9980000 1.0000000 0.9980000 0.9380000 0.9620000
10 200 0.1 0.5 1.0000000 0.9780000 0.8560000 0.8960000 0.0000000 0.0000000 1.0000000 0.9820000 0.9220000 1.0000000 0.0160000 0.0820000
10 200 0.3 0.1 0.9839679 0.9800000 0.9800000 0.8951613 0.9467213 0.9387755 0.9720000 0.9760000 0.9740000 0.9800000 0.9760000 0.9700000
10 200 0.3 0.5 1.0000000 1.0000000 1.0000000 1.0000000 0.8580000 0.2800000 1.0000000 1.0000000 1.0000000 1.0000000 0.9040000 0.8020000
10 200 0.5 0.1 0.7960000 0.7900000 0.7780000 0.7872340 0.7962185 0.7872340 0.7860000 0.7980000 0.7800000 0.7860000 0.7940000 0.7740000
10 200 0.5 0.5 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 0.9920000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000
30 30 0.1 0.1 0.9500000 0.9020000 0.8900000 0.7642276 0.6965377 0.6904277 0.9360000 0.9220000 0.9140000 0.9440000 0.7800000 0.8420000
30 30 0.1 0.5 0.9380000 0.5180000 0.2340000 0.8520000 0.0080000 0.0040000 0.9520000 0.6052632 0.2620000 0.9380000 0.0846774 0.1380000
30 30 0.3 0.1 0.6880000 0.6900000 0.6360000 0.6464435 0.6723404 0.5802998 0.6740000 0.6760000 0.6380000 0.6940000 0.6860000 0.6392786
30 30 0.3 0.5 1.0000000 0.9900000 0.9500000 0.9340000 0.6660000 0.4004024 1.0000000 0.9667360 0.9700000 0.9839034 0.7871901 0.6861167
30 30 0.5 0.1 0.4600000 0.4820000 0.4320000 0.4832215 0.5128755 0.4456763 0.4840000 0.4840000 0.4340000 0.4980000 0.4980000 0.4297352
30 30 0.5 0.5 0.9940000 0.9919840 0.9880000 0.9054326 0.9151515 0.7183673 0.9980000 0.9892934 0.9900000 0.9820000 0.9610390 0.8744939
30 50 0.1 0.1 0.9960000 0.9880000 0.9900000 0.8545455 0.7923387 0.8346774 0.9960000 0.9940000 0.9940000 0.9920000 0.9060000 0.9500000
30 50 0.1 0.5 0.9940000 0.8440000 0.5520000 0.9760000 0.0020000 0.0000000 1.0000000 0.8568548 0.5480000 1.0000000 0.0564516 0.1620000
30 50 0.3 0.1 0.8300000 0.8480000 0.8160000 0.7639752 0.8049793 0.7843552 0.8260000 0.8280000 0.8200000 0.8360000 0.8380000 0.8060000
30 50 0.3 0.5 1.0000000 1.0000000 1.0000000 0.9840000 0.7940000 0.3700000 1.0000000 0.9919028 1.0000000 0.9959839 0.8411405 0.7400000
30 50 0.5 0.1 0.5920000 0.5980000 0.5600000 0.5859031 0.6329114 0.5929978 0.5620000 0.5660000 0.5500000 0.5540000 0.5660000 0.5300000
30 50 0.5 0.5 1.0000000 1.0000000 1.0000000 0.9799197 0.9760000 0.8416834 1.0000000 0.9979424 1.0000000 1.0000000 0.9937630 0.9320000
30 100 0.1 0.1 1.0000000 1.0000000 1.0000000 0.9577465 0.8780000 0.8997996 1.0000000 1.0000000 1.0000000 1.0000000 0.9700000 0.9900000
30 100 0.1 0.5 1.0000000 0.9700000 0.8120000 0.9980000 0.0000000 0.0000000 1.0000000 0.9659319 0.8380000 1.0000000 0.0100000 0.1100000
30 100 0.3 0.1 0.9620000 0.9600000 0.9620000 0.9026369 0.9329268 0.9158111 0.9620000 0.9660000 0.9560000 0.9700000 0.9700000 0.9640000
30 100 0.3 0.5 1.0000000 1.0000000 1.0000000 1.0000000 0.8340000 0.2580000 1.0000000 1.0000000 1.0000000 1.0000000 0.9012097 0.8120000
30 100 0.5 0.1 0.7160000 0.7380000 0.6920000 0.7327586 0.7568134 0.7179487 0.7180000 0.7180000 0.6920000 0.7140000 0.7160000 0.6860000
30 100 0.5 0.5 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 0.9460000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 0.9900000
30 200 0.1 0.1 1.0000000 1.0000000 1.0000000 0.9900000 0.9440000 0.9620000 1.0000000 1.0000000 1.0000000 1.0000000 0.9980000 0.9980000
30 200 0.1 0.5 1.0000000 1.0000000 0.9820000 1.0000000 0.0000000 0.0000000 1.0000000 1.0000000 0.9960000 1.0000000 0.0000000 0.0360000
30 200 0.3 0.1 0.9980000 1.0000000 0.9980000 0.9476861 0.9756592 0.9837067 0.9920000 0.9920000 0.9940000 0.9940000 0.9920000 0.9960000
30 200 0.3 0.5 1.0000000 1.0000000 1.0000000 1.0000000 0.9160000 0.1660000 1.0000000 1.0000000 1.0000000 1.0000000 0.9540000 0.8260000
30 200 0.5 0.1 0.8580000 0.8460000 0.8600000 0.8004292 0.8004115 0.8012959 0.8320000 0.8320000 0.8280000 0.8360000 0.8320000 0.8180000
30 200 0.5 0.5 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 0.9920000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000
## Print out in tex
print(xtable(c1, digits = 3), booktabs = T, include.rownames = F)
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:24 2019
\begin{table}[ht]
\centering
\begin{tabular}{llllrrrrrrrrrrrr}
  \toprule
SS Level-1 & SS Level-2 & ICC-OV & ICC-LV & MLR & ULSMV & WLSMV & MLR & ULSMV & WLSMV & MLR & ULSMV & WLSMV & MLR & ULSMV & WLSMV \\ 
  \midrule
5 & 30 & 0.1 & 0.1 & 0.522 & 0.030 & 0.048 & 0.327 & 0.041 & 0.046 & 0.496 & 0.046 & 0.058 & 0.510 & 0.041 & 0.067 \\ 
  5 & 30 & 0.1 & 0.5 & 0.372 & 0.036 & 0.024 & 0.266 & 0.012 & 0.008 & 0.382 & 0.051 & 0.044 & 0.338 & 0.023 & 0.039 \\ 
  5 & 30 & 0.3 & 0.1 & 0.468 & 0.357 & 0.250 & 0.401 & 0.377 & 0.271 & 0.438 & 0.368 & 0.237 & 0.410 & 0.363 & 0.249 \\ 
  5 & 30 & 0.3 & 0.5 & 0.792 & 0.730 & 0.674 & 0.629 & 0.542 & 0.471 & 0.822 & 0.709 & 0.694 & 0.764 & 0.621 & 0.588 \\ 
  5 & 30 & 0.5 & 0.1 & 0.360 & 0.335 & 0.224 & 0.400 & 0.374 & 0.293 & 0.354 & 0.341 & 0.210 & 0.345 & 0.323 & 0.202 \\ 
  5 & 30 & 0.5 & 0.5 & 0.938 & 0.953 & 0.914 & 0.783 & 0.823 & 0.785 & 0.946 & 0.921 & 0.918 & 0.918 & 0.883 & 0.853 \\ 
  5 & 50 & 0.1 & 0.1 & 0.560 & 0.138 & 0.146 & 0.302 & 0.116 & 0.141 & 0.562 & 0.154 & 0.170 & 0.552 & 0.150 & 0.162 \\ 
  5 & 50 & 0.1 & 0.5 & 0.500 & 0.092 & 0.052 & 0.321 & 0.022 & 0.006 & 0.550 & 0.145 & 0.094 & 0.494 & 0.066 & 0.072 \\ 
  5 & 50 & 0.3 & 0.1 & 0.548 & 0.542 & 0.404 & 0.508 & 0.533 & 0.423 & 0.538 & 0.550 & 0.424 & 0.548 & 0.498 & 0.411 \\ 
  5 & 50 & 0.3 & 0.5 & 0.972 & 0.938 & 0.868 & 0.818 & 0.661 & 0.495 & 0.978 & 0.919 & 0.910 & 0.930 & 0.751 & 0.649 \\ 
  5 & 50 & 0.5 & 0.1 & 0.488 & 0.483 & 0.358 & 0.524 & 0.537 & 0.439 & 0.476 & 0.486 & 0.392 & 0.492 & 0.497 & 0.367 \\ 
  5 & 50 & 0.5 & 0.5 & 0.996 & 0.998 & 0.992 & 0.916 & 0.925 & 0.826 & 0.996 & 0.985 & 0.996 & 0.986 & 0.947 & 0.911 \\ 
  5 & 100 & 0.1 & 0.1 & 0.752 & 0.494 & 0.556 & 0.271 & 0.393 & 0.421 & 0.764 & 0.514 & 0.550 & 0.752 & 0.453 & 0.462 \\ 
  5 & 100 & 0.1 & 0.5 & 0.726 & 0.314 & 0.238 & 0.274 & 0.026 & 0.010 & 0.772 & 0.427 & 0.328 & 0.776 & 0.066 & 0.108 \\ 
  5 & 100 & 0.3 & 0.1 & 0.760 & 0.758 & 0.682 & 0.611 & 0.709 & 0.658 & 0.702 & 0.736 & 0.682 & 0.746 & 0.730 & 0.666 \\ 
  5 & 100 & 0.3 & 0.5 & 0.996 & 0.990 & 0.982 & 0.906 & 0.708 & 0.462 & 1.000 & 0.988 & 0.996 & 0.988 & 0.796 & 0.708 \\ 
  5 & 100 & 0.5 & 0.1 & 0.600 & 0.596 & 0.532 & 0.599 & 0.623 & 0.575 & 0.576 & 0.582 & 0.532 & 0.608 & 0.599 & 0.532 \\ 
  5 & 100 & 0.5 & 0.5 & 1.000 & 1.000 & 0.998 & 0.992 & 0.988 & 0.933 & 1.000 & 0.996 & 1.000 & 0.998 & 0.996 & 0.968 \\ 
  5 & 200 & 0.1 & 0.1 & 0.952 & 0.890 & 0.900 & 0.243 & 0.684 & 0.720 & 0.926 & 0.920 & 0.920 & 0.936 & 0.820 & 0.836 \\ 
  5 & 200 & 0.1 & 0.5 & 0.956 & 0.728 & 0.614 & 0.250 & 0.002 & 0.000 & 0.974 & 0.820 & 0.716 & 0.982 & 0.068 & 0.138 \\ 
  5 & 200 & 0.3 & 0.1 & 0.890 & 0.880 & 0.862 & 0.714 & 0.871 & 0.855 & 0.860 & 0.888 & 0.850 & 0.886 & 0.880 & 0.840 \\ 
  5 & 200 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 0.990 & 0.822 & 0.444 & 1.000 & 0.998 & 1.000 & 1.000 & 0.864 & 0.778 \\ 
  5 & 200 & 0.5 & 0.1 & 0.744 & 0.754 & 0.716 & 0.758 & 0.728 & 0.698 & 0.732 & 0.756 & 0.720 & 0.754 & 0.756 & 0.706 \\ 
  5 & 200 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.962 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.996 \\ 
  10 & 30 & 0.1 & 0.1 & 0.608 & 0.352 & 0.364 & 0.385 & 0.325 & 0.313 & 0.580 & 0.372 & 0.378 & 0.602 & 0.352 & 0.371 \\ 
  10 & 30 & 0.1 & 0.5 & 0.494 & 0.134 & 0.080 & 0.364 & 0.018 & 0.010 & 0.530 & 0.206 & 0.118 & 0.528 & 0.062 & 0.064 \\ 
  10 & 30 & 0.3 & 0.1 & 0.584 & 0.574 & 0.418 & 0.556 & 0.570 & 0.436 & 0.574 & 0.584 & 0.410 & 0.591 & 0.560 & 0.391 \\ 
  10 & 30 & 0.3 & 0.5 & 0.988 & 0.952 & 0.854 & 0.878 & 0.649 & 0.494 & 0.986 & 0.953 & 0.908 & 0.946 & 0.742 & 0.690 \\ 
  10 & 30 & 0.5 & 0.1 & 0.446 & 0.449 & 0.358 & 0.474 & 0.507 & 0.405 & 0.456 & 0.475 & 0.390 & 0.432 & 0.435 & 0.384 \\ 
  10 & 30 & 0.5 & 0.5 & 0.988 & 0.982 & 0.974 & 0.895 & 0.904 & 0.816 & 0.982 & 0.968 & 0.974 & 0.964 & 0.940 & 0.898 \\ 
  10 & 50 & 0.1 & 0.1 & 0.832 & 0.668 & 0.726 & 0.453 & 0.494 & 0.581 & 0.802 & 0.696 & 0.726 & 0.828 & 0.627 & 0.651 \\ 
  10 & 50 & 0.1 & 0.5 & 0.762 & 0.387 & 0.218 & 0.514 & 0.020 & 0.006 & 0.806 & 0.472 & 0.273 & 0.786 & 0.085 & 0.120 \\ 
  10 & 50 & 0.3 & 0.1 & 0.698 & 0.698 & 0.618 & 0.665 & 0.697 & 0.622 & 0.694 & 0.688 & 0.614 & 0.700 & 0.702 & 0.622 \\ 
  10 & 50 & 0.3 & 0.5 & 1.000 & 0.994 & 0.976 & 0.940 & 0.658 & 0.438 & 1.000 & 0.978 & 0.990 & 0.988 & 0.769 & 0.712 \\ 
  10 & 50 & 0.5 & 0.1 & 0.482 & 0.498 & 0.424 & 0.551 & 0.552 & 0.489 & 0.480 & 0.494 & 0.438 & 0.486 & 0.482 & 0.435 \\ 
  10 & 50 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 0.968 & 0.964 & 0.892 & 1.000 & 0.990 & 1.000 & 0.998 & 0.975 & 0.956 \\ 
  10 & 100 & 0.1 & 0.1 & 0.970 & 0.932 & 0.946 & 0.556 & 0.737 & 0.752 & 0.966 & 0.954 & 0.966 & 0.972 & 0.844 & 0.888 \\ 
  10 & 100 & 0.1 & 0.5 & 0.988 & 0.754 & 0.518 & 0.762 & 0.002 & 0.000 & 0.990 & 0.834 & 0.614 & 0.992 & 0.052 & 0.134 \\ 
  10 & 100 & 0.3 & 0.1 & 0.890 & 0.884 & 0.846 & 0.790 & 0.837 & 0.801 & 0.858 & 0.886 & 0.846 & 0.880 & 0.888 & 0.836 \\ 
  10 & 100 & 0.3 & 0.5 & 1.000 & 1.000 & 0.998 & 0.990 & 0.770 & 0.348 & 1.000 & 0.996 & 1.000 & 1.000 & 0.840 & 0.742 \\ 
  10 & 100 & 0.5 & 0.1 & 0.672 & 0.668 & 0.638 & 0.680 & 0.678 & 0.627 & 0.642 & 0.654 & 0.614 & 0.654 & 0.658 & 0.610 \\ 
  10 & 100 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 0.998 & 0.994 & 0.914 & 1.000 & 0.998 & 1.000 & 1.000 & 0.994 & 0.972 \\ 
  10 & 200 & 0.1 & 0.1 & 1.000 & 0.998 & 1.000 & 0.639 & 0.834 & 0.878 & 1.000 & 0.998 & 1.000 & 0.998 & 0.938 & 0.962 \\ 
  10 & 200 & 0.1 & 0.5 & 1.000 & 0.978 & 0.856 & 0.896 & 0.000 & 0.000 & 1.000 & 0.982 & 0.922 & 1.000 & 0.016 & 0.082 \\ 
  10 & 200 & 0.3 & 0.1 & 0.984 & 0.980 & 0.980 & 0.895 & 0.947 & 0.939 & 0.972 & 0.976 & 0.974 & 0.980 & 0.976 & 0.970 \\ 
  10 & 200 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.858 & 0.280 & 1.000 & 1.000 & 1.000 & 1.000 & 0.904 & 0.802 \\ 
  10 & 200 & 0.5 & 0.1 & 0.796 & 0.790 & 0.778 & 0.787 & 0.796 & 0.787 & 0.786 & 0.798 & 0.780 & 0.786 & 0.794 & 0.774 \\ 
  10 & 200 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.992 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
  30 & 30 & 0.1 & 0.1 & 0.950 & 0.902 & 0.890 & 0.764 & 0.697 & 0.690 & 0.936 & 0.922 & 0.914 & 0.944 & 0.780 & 0.842 \\ 
  30 & 30 & 0.1 & 0.5 & 0.938 & 0.518 & 0.234 & 0.852 & 0.008 & 0.004 & 0.952 & 0.605 & 0.262 & 0.938 & 0.085 & 0.138 \\ 
  30 & 30 & 0.3 & 0.1 & 0.688 & 0.690 & 0.636 & 0.646 & 0.672 & 0.580 & 0.674 & 0.676 & 0.638 & 0.694 & 0.686 & 0.639 \\ 
  30 & 30 & 0.3 & 0.5 & 1.000 & 0.990 & 0.950 & 0.934 & 0.666 & 0.400 & 1.000 & 0.967 & 0.970 & 0.984 & 0.787 & 0.686 \\ 
  30 & 30 & 0.5 & 0.1 & 0.460 & 0.482 & 0.432 & 0.483 & 0.513 & 0.446 & 0.484 & 0.484 & 0.434 & 0.498 & 0.498 & 0.430 \\ 
  30 & 30 & 0.5 & 0.5 & 0.994 & 0.992 & 0.988 & 0.905 & 0.915 & 0.718 & 0.998 & 0.989 & 0.990 & 0.982 & 0.961 & 0.874 \\ 
  30 & 50 & 0.1 & 0.1 & 0.996 & 0.988 & 0.990 & 0.855 & 0.792 & 0.835 & 0.996 & 0.994 & 0.994 & 0.992 & 0.906 & 0.950 \\ 
  30 & 50 & 0.1 & 0.5 & 0.994 & 0.844 & 0.552 & 0.976 & 0.002 & 0.000 & 1.000 & 0.857 & 0.548 & 1.000 & 0.056 & 0.162 \\ 
  30 & 50 & 0.3 & 0.1 & 0.830 & 0.848 & 0.816 & 0.764 & 0.805 & 0.784 & 0.826 & 0.828 & 0.820 & 0.836 & 0.838 & 0.806 \\ 
  30 & 50 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 0.984 & 0.794 & 0.370 & 1.000 & 0.992 & 1.000 & 0.996 & 0.841 & 0.740 \\ 
  30 & 50 & 0.5 & 0.1 & 0.592 & 0.598 & 0.560 & 0.586 & 0.633 & 0.593 & 0.562 & 0.566 & 0.550 & 0.554 & 0.566 & 0.530 \\ 
  30 & 50 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 0.980 & 0.976 & 0.842 & 1.000 & 0.998 & 1.000 & 1.000 & 0.994 & 0.932 \\ 
  30 & 100 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.958 & 0.878 & 0.900 & 1.000 & 1.000 & 1.000 & 1.000 & 0.970 & 0.990 \\ 
  30 & 100 & 0.1 & 0.5 & 1.000 & 0.970 & 0.812 & 0.998 & 0.000 & 0.000 & 1.000 & 0.966 & 0.838 & 1.000 & 0.010 & 0.110 \\ 
  30 & 100 & 0.3 & 0.1 & 0.962 & 0.960 & 0.962 & 0.903 & 0.933 & 0.916 & 0.962 & 0.966 & 0.956 & 0.970 & 0.970 & 0.964 \\ 
  30 & 100 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.834 & 0.258 & 1.000 & 1.000 & 1.000 & 1.000 & 0.901 & 0.812 \\ 
  30 & 100 & 0.5 & 0.1 & 0.716 & 0.738 & 0.692 & 0.733 & 0.757 & 0.718 & 0.718 & 0.718 & 0.692 & 0.714 & 0.716 & 0.686 \\ 
  30 & 100 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.946 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.990 \\ 
  30 & 200 & 0.1 & 0.1 & 1.000 & 1.000 & 1.000 & 0.990 & 0.944 & 0.962 & 1.000 & 1.000 & 1.000 & 1.000 & 0.998 & 0.998 \\ 
  30 & 200 & 0.1 & 0.5 & 1.000 & 1.000 & 0.982 & 1.000 & 0.000 & 0.000 & 1.000 & 1.000 & 0.996 & 1.000 & 0.000 & 0.036 \\ 
  30 & 200 & 0.3 & 0.1 & 0.998 & 1.000 & 0.998 & 0.948 & 0.976 & 0.984 & 0.992 & 0.992 & 0.994 & 0.994 & 0.992 & 0.996 \\ 
  30 & 200 & 0.3 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 0.916 & 0.166 & 1.000 & 1.000 & 1.000 & 1.000 & 0.954 & 0.826 \\ 
  30 & 200 & 0.5 & 0.1 & 0.858 & 0.846 & 0.860 & 0.800 & 0.800 & 0.801 & 0.832 & 0.832 & 0.828 & 0.836 & 0.832 & 0.818 \\ 
  30 & 200 & 0.5 & 0.5 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 0.992 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 & 1.000 \\ 
   \bottomrule
\end{tabular}
\end{table}

Descriptive Statistics of Fit Indices

Now for the long process of making tables for the MANY conditions for the descriptive statistics. For this, we need to do this is steps so that all the information gets outputted in the correct manor for table. For each statistic under each condition, model, and estimator, the code below create a table that contains the average value and the standard deviation. Again, just like the descriptives above, a summary table was made to start.

These tables are made based only on the 1) converged models and 2) the admissible solutions.

The fit indices included are:

  1. Chi-square p-value summary, i.e. proportion of tims the p-value was greater than 0.05. No SD is reported here.
  2. CFI with mean and sd
  3. TLI with mean and sd
  4. RMSEA with mean and sd
  5. SRMRW with mean and sd
  6. SRMRB with mean and sd
mydata <- filter(sim_results, Converge == 1 & Admissible == 1)

## first table summary table
a <- mydata %>%
  group_by(Model, Estimator) %>%
  summarise(
    chi2=mean(Chi2_pvalue_decision, na.rm = T),
    CFI.m =mean(CFI, na.rm = T), CFI.sd =sd(CFI, na.rm = T),
    TLI.m =mean(TLI, na.rm = T), TLI.sd =sd(TLI, na.rm = T),
    RMSEA.m =mean(RMSEA, na.rm = T), RMSEA.sd =sd(RMSEA, na.rm = T),
    SRMRW.m =mean(SRMRW, na.rm = T), SRMRW.sd =sd(SRMRW, na.rm = T),
    SRMRB.m =mean(SRMRB, na.rm = T), SRMRB.sd =sd(SRMRB, na.rm = T)
  )
## Print results in a nice looking table in HTML
kable(a, format='html') %>%
    kable_styling(full_width = T)
Model Estimator chi2 CFI.m CFI.sd TLI.m TLI.sd RMSEA.m RMSEA.sd SRMRW.m SRMRW.sd SRMRB.m SRMRB.sd
C MLR 0.8202745 0.9812052 0.0371156 0.9774462 0.0445387 0.0116853 0.0137071 0.0267436 0.0149748 0.1127033 0.0560528
C ULSMV 0.9768364 0.9893737 0.0304160 0.9872484 0.0364992 0.0043197 0.0069715 0.0374443 0.0219530 0.0824565 0.0464499
C WLSMV 0.9745022 0.9939143 0.0151637 0.9926972 0.0181964 0.0049618 0.0074547 0.0308598 0.0173622 0.0879603 0.0477328
M1 MLR 0.0598615 0.9095858 0.0452227 0.8915221 0.0539201 0.0359143 0.0096761 0.0493582 0.0110398 0.1123173 0.0500658
M1 ULSMV 0.4775854 0.9399431 0.0501061 0.9279318 0.0601273 0.0182307 0.0129284 0.0640931 0.0165727 0.0869087 0.0509335
M1 WLSMV 0.2267400 0.9366788 0.0326178 0.9240146 0.0391414 0.0275762 0.0097161 0.0594152 0.0126836 0.0939776 0.0759974
M2 MLR 0.5229346 0.9695725 0.0409948 0.9634997 0.0489183 0.0182297 0.0146701 0.0271783 0.0155180 0.1367468 0.0505995
M2 ULSMV 0.7160134 0.9542678 0.0645749 0.9451213 0.0774899 0.0114736 0.0114129 0.0410089 0.0218186 0.0968839 0.0424409
M2 WLSMV 0.7513266 0.9846025 0.0222259 0.9815230 0.0266711 0.0103058 0.0098072 0.0316043 0.0174071 0.1043579 0.0412210
M12 MLR 0.0441231 0.8985820 0.0458621 0.8799245 0.0538692 0.0386203 0.0105879 0.0490658 0.0112168 0.1308869 0.0509402
M12 ULSMV 0.4236863 0.9288116 0.0572006 0.9156980 0.0677375 0.0199017 0.0129339 0.0632456 0.0166762 0.0948095 0.0451347
M12 WLSMV 0.2105645 0.9331558 0.0339604 0.9208424 0.0402163 0.0281158 0.0096108 0.0590211 0.0124923 0.0994165 0.0444520
## make a copy of a to print into
a1 <- as_tibble(as.data.frame(matrix(NA, ncol=8,nrow=nrow(a))))
colnames(a1) <- c('Model', 'Estimator', "chi2", "CFI",'TLI', 'RMSEA', 'SRMRW', 'SRMRB')
i <- 1
for(i in 1:nrow(a)){
  a1[i,3:8] <- unlist(c(
    round(a[i,3],3),
  paste0(round(a[i,4],3), ' (', round(a[i,5],2), ')'),
  paste0(round(a[i,6],3), ' (', round(a[i,7],2), ')'),
  paste0(round(a[i,8],3), ' (', round(a[i,9],2), ')'),
  paste0(round(a[i,10],3), ' (', round(a[i,11],2), ')'),
  paste0(round(a[i,12],3), ' (', round(a[i,12],2), ')')
  ))
}
a1[,1:2] <- a[,1:2]## add factors back
## Print out in tex
print(xtable(a1, digits = 3), booktabs = T, include.rownames = F)
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:24 2019
\begin{table}[ht]
\centering
\begin{tabular}{llllllll}
  \toprule
Model & Estimator & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
C & MLR & 0.82 & 0.981 (0.04) & 0.977 (0.04) & 0.012 (0.01) & 0.027 (0.01) & 0.113 (0.11) \\ 
  C & ULSMV & 0.977 & 0.989 (0.03) & 0.987 (0.04) & 0.004 (0.01) & 0.037 (0.02) & 0.082 (0.08) \\ 
  C & WLSMV & 0.975 & 0.994 (0.02) & 0.993 (0.02) & 0.005 (0.01) & 0.031 (0.02) & 0.088 (0.09) \\ 
  M1 & MLR & 0.06 & 0.91 (0.05) & 0.892 (0.05) & 0.036 (0.01) & 0.049 (0.01) & 0.112 (0.11) \\ 
  M1 & ULSMV & 0.478 & 0.94 (0.05) & 0.928 (0.06) & 0.018 (0.01) & 0.064 (0.02) & 0.087 (0.09) \\ 
  M1 & WLSMV & 0.227 & 0.937 (0.03) & 0.924 (0.04) & 0.028 (0.01) & 0.059 (0.01) & 0.094 (0.09) \\ 
  M2 & MLR & 0.523 & 0.97 (0.04) & 0.963 (0.05) & 0.018 (0.01) & 0.027 (0.02) & 0.137 (0.14) \\ 
  M2 & ULSMV & 0.716 & 0.954 (0.06) & 0.945 (0.08) & 0.011 (0.01) & 0.041 (0.02) & 0.097 (0.1) \\ 
  M2 & WLSMV & 0.751 & 0.985 (0.02) & 0.982 (0.03) & 0.01 (0.01) & 0.032 (0.02) & 0.104 (0.1) \\ 
  M12 & MLR & 0.044 & 0.899 (0.05) & 0.88 (0.05) & 0.039 (0.01) & 0.049 (0.01) & 0.131 (0.13) \\ 
  M12 & ULSMV & 0.424 & 0.929 (0.06) & 0.916 (0.07) & 0.02 (0.01) & 0.063 (0.02) & 0.095 (0.09) \\ 
  M12 & WLSMV & 0.211 & 0.933 (0.03) & 0.921 (0.04) & 0.028 (0.01) & 0.059 (0.01) & 0.099 (0.1) \\ 
   \bottomrule
\end{tabular}
\end{table}

TONS of additional tables of the fit statistics across conditions

## Now, create MANY subset tables to breakdown these relationships
## loop around these iterators
for(M in mods){
  for(E in ests){
    ### subset tothe model (M) and estimator (E)
    #M <- 'C'
    #E <- 'MLR'
    cat('\n\n ===============================\n')
    cat('\nModel:\t', M)
    cat('\nEstimator:\t', E, '\n')
    sub_dat <- mydata[ mydata$Model == M & mydata$Estimator == E,]

    a <- sub_dat %>%
        group_by(ss_l1, ss_l2, icc_ov, icc_lv) %>%
        summarise(
          N = n(),
          chi2=mean(Chi2_pvalue_decision, na.rm = T),
          CFI.m =mean(CFI, na.rm = T), CFI.sd =sd(CFI, na.rm = T),
          TLI.m =mean(TLI, na.rm = T), TLI.sd =sd(TLI, na.rm = T),
          RMSEA.m =mean(RMSEA, na.rm = T), RMSEA.sd =sd(RMSEA, na.rm = T),
          SRMRW.m =mean(SRMRW, na.rm = T), SRMRW.sd =sd(SRMRW, na.rm = T),
          SRMRB.m =mean(SRMRB, na.rm = T), SRMRB.sd =sd(SRMRB, na.rm = T)
        )
    #print(xtable(a, digits = 3), booktabs = T, include.rownames = F)
    ## Now, create subsets of this results matrix for outputting into small(ish) tables
    ## Subset by ICC conditions
    ICCO <- unique(a$icc_ov)
    ICCL <- unique(a$icc_lv)
    icco <- ICCO[1]
    iccl <- ICCL[1]
    for(icco in ICCO){
      for(iccl in ICCL){
        ### subset tothe model (M) and estimator (E)
        #M <- 'C'
        #E <- 'MLR'
        cat('\n===============================\n')
        cat('\nModel:\t', M)
        cat('\nEstimator:\t', E)
        cat('\nICC Obs. Var.:\t', icco)
        cat('\nICC Lat. Var.:\t', iccl,'\n')
        a_s <- filter(a, icc_ov == icco, icc_lv == iccl)
        ## make a copy of a to print into
        a1 <- as_tibble(as.data.frame(matrix(NA, ncol=9,nrow=nrow(a_s))))
        colnames(a1) <- c('N2', 'N1', 'Num_Rep', "chi2", "CFI",'TLI', 'RMSEA', 'SRMRW', 'SRMRB')
        i <- 1
        for(i in 1:nrow(a_s)){
          a1[i,4:9] <- unlist(c(
            round(a_s[i,6],2),
          paste0(round(a_s[i,7],2), '(', round(a_s[i,8],2), ')'),
          paste0(round(a_s[i,9],2), '(', round(a_s[i,10],2), ')'),
          paste0(round(a_s[i,11],2), '(', round(a_s[i,12],2), ')'),
          paste0(round(a_s[i,13],2), '(', round(a_s[i,14],2), ')'),
          paste0(round(a_s[i,15],2), '(', round(a_s[i,16],2), ')')
          ))
        }
        a1[,1:2] <- a_s[,c(2,1)]## add factors back with diff. order
        ## Print out in tex
        print(xtable(a1,
                     caption = paste0('Summary of Fit Statistics Across Conditions: Model ',
                                      M,', Estimator ',E,', ICC_O ',icco,' and ICC_L ', iccl)), 
              booktabs = T, include.rownames = F)
      }
    }## End subset table printing
  }
} ## End loops..


 ===============================

Model:   C
Estimator:   MLR 

===============================

Model:   C
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:24 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.35 & 0.88(0.09) & 0.85(0.11) & 0.05(0.02) & 0.06(0.01) & 0.32(0.05) \\ 
  50 & 5 &  & 0.53 & 0.94(0.04) & 0.93(0.05) & 0.03(0.02) & 0.05(0.01) & 0.27(0.04) \\ 
  100 & 5 &  & 0.7 & 0.98(0.02) & 0.97(0.02) & 0.02(0.01) & 0.03(0) & 0.22(0.03) \\ 
  200 & 5 &  & 0.9 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.17(0.02) \\ 
  30 & 10 &  & 0.44 & 0.94(0.04) & 0.93(0.04) & 0.03(0.01) & 0.04(0.01) & 0.25(0.04) \\ 
  50 & 10 &  & 0.68 & 0.97(0.02) & 0.97(0.03) & 0.02(0.01) & 0.03(0) & 0.21(0.03) \\ 
  100 & 10 &  & 0.88 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.15(0.02) \\ 
  200 & 10 &  & 0.91 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.11(0.02) \\ 
  30 & 30 &  & 0.61 & 0.98(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.19(0.03) \\ 
  50 & 30 &  & 0.84 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.14(0.02) \\ 
  100 & 30 &  & 0.91 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.1(0.01) \\ 
  200 & 30 &  & 0.94 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.07(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator MLR, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:24 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.44 & 0.93(0.04) & 0.92(0.05) & 0.04(0.02) & 0.07(0.01) & 0.16(0.04) \\ 
  50 & 5 &  & 0.69 & 0.97(0.03) & 0.97(0.03) & 0.03(0.02) & 0.05(0.01) & 0.12(0.02) \\ 
  100 & 5 &  & 0.84 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0) & 0.09(0.02) \\ 
  200 & 5 &  & 0.9 & 1(0) & 1(0.01) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 0.49 & 0.96(0.03) & 0.95(0.03) & 0.03(0.01) & 0.04(0.01) & 0.12(0.03) \\ 
  50 & 10 &  & 0.71 & 0.98(0.02) & 0.98(0.02) & 0.02(0.01) & 0.03(0) & 0.1(0.02) \\ 
  100 & 10 &  & 0.89 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.07(0.01) \\ 
  200 & 10 &  & 0.92 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  30 & 30 &  & 0.62 & 0.99(0.01) & 0.98(0.01) & 0.01(0.01) & 0.02(0) & 0.1(0.02) \\ 
  50 & 30 &  & 0.85 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.07(0.01) \\ 
  100 & 30 &  & 0.9 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
  200 & 30 &  & 0.93 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.04(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator MLR, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   C
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.5 & 0.88(0.09) & 0.85(0.11) & 0.04(0.02) & 0.06(0.01) & 0.23(0.03) \\ 
  50 & 5 &  & 0.75 & 0.95(0.05) & 0.94(0.06) & 0.02(0.02) & 0.05(0.01) & 0.19(0.02) \\ 
  100 & 5 &  & 0.91 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.03(0) & 0.14(0.02) \\ 
  200 & 5 &  & 0.9 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.09(0.01) \\ 
  30 & 10 &  & 0.63 & 0.95(0.04) & 0.93(0.05) & 0.02(0.01) & 0.04(0.01) & 0.2(0.02) \\ 
  50 & 10 &  & 0.8 & 0.98(0.02) & 0.97(0.03) & 0.01(0.01) & 0.03(0) & 0.15(0.02) \\ 
  100 & 10 &  & 0.88 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.11(0.01) \\ 
  200 & 10 &  & 0.93 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  30 & 30 &  & 0.7 & 0.98(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0.82 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.13(0.01) \\ 
  100 & 30 &  & 0.92 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0.92 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator MLR, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.49 & 0.91(0.06) & 0.89(0.08) & 0.04(0.02) & 0.07(0.01) & 0.17(0.03) \\ 
  50 & 5 &  & 0.73 & 0.96(0.04) & 0.95(0.04) & 0.02(0.02) & 0.05(0.01) & 0.13(0.02) \\ 
  100 & 5 &  & 0.91 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0) & 0.09(0.01) \\ 
  200 & 5 &  & 0.93 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 0.65 & 0.96(0.04) & 0.95(0.04) & 0.02(0.01) & 0.04(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.82 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.03(0) & 0.11(0.02) \\ 
  100 & 10 &  & 0.95 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0.93 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  30 & 30 &  & 0.71 & 0.99(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.13(0.02) \\ 
  50 & 30 &  & 0.84 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0.92 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.95 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator MLR, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   C
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.59 & 0.87(0.1) & 0.84(0.12) & 0.04(0.02) & 0.06(0.01) & 0.19(0.02) \\ 
  50 & 5 &  & 0.83 & 0.95(0.05) & 0.94(0.05) & 0.02(0.01) & 0.05(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.92 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.03(0) & 0.1(0.01) \\ 
  200 & 5 &  & 0.93 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.07(0.01) \\ 
  30 & 10 &  & 0.71 & 0.95(0.05) & 0.94(0.06) & 0.02(0.01) & 0.04(0.01) & 0.17(0.02) \\ 
  50 & 10 &  & 0.85 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.03(0) & 0.13(0.01) \\ 
  100 & 10 &  & 0.93 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.09(0.01) \\ 
  200 & 10 &  & 0.93 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0.7 & 0.98(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0.89 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.12(0.01) \\ 
  100 & 30 &  & 0.93 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0.94 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator MLR, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.6 & 0.89(0.08) & 0.87(0.1) & 0.04(0.02) & 0.06(0.01) & 0.17(0.03) \\ 
  50 & 5 &  & 0.82 & 0.96(0.04) & 0.95(0.05) & 0.02(0.02) & 0.05(0.01) & 0.13(0.02) \\ 
  100 & 5 &  & 0.88 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.04(0) & 0.09(0.01) \\ 
  200 & 5 &  & 0.94 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.06(0.01) \\ 
  30 & 10 &  & 0.71 & 0.95(0.04) & 0.95(0.05) & 0.02(0.01) & 0.04(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.83 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.03(0) & 0.12(0.02) \\ 
  100 & 10 &  & 0.92 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0.92 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0.73 & 0.98(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.14(0.02) \\ 
  50 & 30 &  & 0.87 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.11(0.01) \\ 
  100 & 30 &  & 0.91 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0.93 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator MLR, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   C
Estimator:   ULSMV 

===============================

Model:   C
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0(0.01) & 0.07(0.01) & 0.35(0.06) \\ 
  50 & 5 &  & 0.99 & 0.99(0.02) & 0.99(0.03) & 0.01(0.01) & 0.06(0.01) & 0.32(0.13) \\ 
  100 & 5 &  & 0.95 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0) & 0.22(0.05) \\ 
  200 & 5 &  & 0.95 & 1(0.01) & 1(0.01) & 0(0.01) & 0.03(0) & 0.15(0.03) \\ 
  30 & 10 &  & 0.99 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.25(0.06) \\ 
  50 & 10 &  & 0.99 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0) & 0.19(0.04) \\ 
  100 & 10 &  & 0.97 & 1(0) & 1(0.01) & 0.01(0.01) & 0.03(0) & 0.13(0.02) \\ 
  200 & 10 &  & 0.95 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.09(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0.01) & 0.01(0.01) & 0.03(0) & 0.15(0.02) \\ 
  50 & 30 &  & 0.99 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.11(0.01) \\ 
  100 & 30 &  & 0.97 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0.97 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.99(0.02) & 0.98(0.03) & 0.01(0.01) & 0.09(0.01) & 0.13(0.03) \\ 
  50 & 5 &  & 1 & 0.99(0.02) & 0.98(0.03) & 0.01(0.01) & 0.07(0.01) & 0.1(0.02) \\ 
  100 & 5 &  & 0.99 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.07(0.02) \\ 
  200 & 5 &  & 0.96 & 0.99(0.01) & 0.99(0.01) & 0(0.01) & 0.03(0) & 0.05(0.01) \\ 
  30 & 10 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0(0.01) & 0.06(0.01) & 0.09(0.02) \\ 
  50 & 10 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0(0.01) & 0.04(0.01) & 0.07(0.02) \\ 
  100 & 10 &  & 0.98 & 0.99(0.01) & 0.99(0.01) & 0(0.01) & 0.03(0) & 0.05(0.01) \\ 
  200 & 10 &  & 0.96 & 1(0.01) & 1(0.01) & 0(0) & 0.02(0) & 0.03(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.07(0.02) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0.01) & 0(0) & 0.03(0) & 0.05(0.01) \\ 
  100 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.02(0) & 0.04(0.01) \\ 
  200 & 30 &  & 0.98 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.02(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   C
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.99 & 0.96(0.05) & 0.96(0.06) & 0.01(0.01) & 0.08(0.01) & 0.21(0.04) \\ 
  50 & 5 &  & 0.97 & 0.97(0.03) & 0.97(0.04) & 0.01(0.01) & 0.06(0.01) & 0.16(0.03) \\ 
  100 & 5 &  & 0.98 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.11(0.01) \\ 
  200 & 5 &  & 0.95 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.07(0.01) \\ 
  30 & 10 &  & 0.99 & 0.98(0.03) & 0.97(0.04) & 0.01(0.01) & 0.05(0.01) & 0.16(0.02) \\ 
  50 & 10 &  & 0.98 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.04(0) & 0.12(0.01) \\ 
  100 & 10 &  & 0.95 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0.95 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.06(0.01) \\ 
  30 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.03(0) & 0.13(0.01) \\ 
  50 & 30 &  & 0.99 & 1(0.01) & 1(0.01) & 0(0) & 0.02(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0.97 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.94 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.99 & 0.96(0.06) & 0.95(0.07) & 0.01(0.01) & 0.09(0.01) & 0.13(0.03) \\ 
  50 & 5 &  & 0.97 & 0.97(0.04) & 0.97(0.05) & 0.01(0.01) & 0.07(0.01) & 0.1(0.02) \\ 
  100 & 5 &  & 0.97 & 0.99(0.02) & 0.98(0.02) & 0.01(0.01) & 0.05(0.01) & 0.07(0.01) \\ 
  200 & 5 &  & 0.94 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0) & 0.05(0.01) \\ 
  30 & 10 &  & 0.99 & 0.98(0.04) & 0.98(0.05) & 0(0.01) & 0.06(0.01) & 0.1(0.02) \\ 
  50 & 10 &  & 0.97 & 0.98(0.03) & 0.98(0.03) & 0.01(0.01) & 0.05(0.01) & 0.08(0.01) \\ 
  100 & 10 &  & 0.97 & 0.99(0.01) & 0.99(0.02) & 0(0.01) & 0.04(0) & 0.05(0.01) \\ 
  200 & 10 &  & 0.95 & 1(0.01) & 0.99(0.01) & 0(0) & 0.02(0) & 0.04(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.04(0.01) & 0.09(0.02) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0.01) & 0.07(0.01) \\ 
  100 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  200 & 30 &  & 0.99 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.03(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   C
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.97 & 0.91(0.13) & 0.89(0.15) & 0.01(0.01) & 0.09(0.02) & 0.15(0.02) \\ 
  50 & 5 &  & 0.96 & 0.95(0.07) & 0.94(0.08) & 0.01(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 5 &  & 0.98 & 0.97(0.03) & 0.97(0.04) & 0.01(0.01) & 0.04(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.95 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 1 & 0.97(0.06) & 0.97(0.07) & 0(0.01) & 0.06(0.01) & 0.13(0.02) \\ 
  50 & 10 &  & 0.99 & 0.97(0.04) & 0.96(0.05) & 0.01(0.01) & 0.04(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.95 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.03(0) & 0.07(0.01) \\ 
  200 & 10 &  & 0.93 & 0.99(0.01) & 0.99(0.01) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0.01) & 0.12(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.09(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.99 & 1(0.01) & 1(0.01) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.94(0.1) & 0.92(0.11) & 0.01(0.01) & 0.11(0.02) & 0.12(0.02) \\ 
  50 & 5 &  & 0.99 & 0.96(0.06) & 0.95(0.07) & 0.01(0.01) & 0.08(0.01) & 0.09(0.01) \\ 
  100 & 5 &  & 0.97 & 0.98(0.03) & 0.97(0.04) & 0.01(0.01) & 0.06(0.01) & 0.06(0.01) \\ 
  200 & 5 &  & 0.95 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.04(0.01) \\ 
  30 & 10 &  & 1 & 0.99(0.04) & 0.99(0.05) & 0(0) & 0.08(0.01) & 0.1(0.02) \\ 
  50 & 10 &  & 0.99 & 0.98(0.04) & 0.98(0.05) & 0(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  100 & 10 &  & 0.97 & 0.98(0.03) & 0.98(0.03) & 0(0.01) & 0.04(0.01) & 0.06(0.01) \\ 
  200 & 10 &  & 0.94 & 0.99(0.01) & 0.99(0.02) & 0(0) & 0.03(0) & 0.04(0) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.06(0.01) & 0.09(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.05(0.01) & 0.07(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0.01) & 0.05(0.01) \\ 
  200 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.04(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   C
Estimator:   WLSMV 

===============================

Model:   C
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.99(0.02) & 0.99(0.03) & 0.01(0.01) & 0.07(0.01) & 0.34(0.05) \\ 
  50 & 5 &  & 1 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.06(0.01) & 0.29(0.05) \\ 
  100 & 5 &  & 0.95 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.22(0.05) \\ 
  200 & 5 &  & 0.95 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.14(0.03) \\ 
  30 & 10 &  & 0.99 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.26(0.18) \\ 
  50 & 10 &  & 0.96 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0) & 0.19(0.04) \\ 
  100 & 10 &  & 0.97 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.12(0.02) \\ 
  200 & 10 &  & 0.95 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.08(0.01) \\ 
  30 & 30 &  & 0.99 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.15(0.02) \\ 
  50 & 30 &  & 0.99 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.11(0.01) \\ 
  100 & 30 &  & 0.96 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0.97 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.99(0.02) & 0.98(0.03) & 0.01(0.01) & 0.07(0.01) & 0.16(0.04) \\ 
  50 & 5 &  & 1 & 0.99(0.02) & 0.98(0.02) & 0.01(0.01) & 0.06(0.01) & 0.12(0.02) \\ 
  100 & 5 &  & 0.96 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.08(0.02) \\ 
  200 & 5 &  & 0.96 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.12(0.03) \\ 
  50 & 10 &  & 0.99 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0) & 0.08(0.02) \\ 
  100 & 10 &  & 0.97 & 1(0.01) & 1(0.01) & 0(0.01) & 0.03(0) & 0.06(0.01) \\ 
  200 & 10 &  & 0.95 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.04(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0.01) & 0(0) & 0.03(0) & 0.08(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.06(0.01) \\ 
  100 & 30 &  & 0.98 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.04(0.01) \\ 
  200 & 30 &  & 0.97 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.03(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   C
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.98 & 0.97(0.04) & 0.96(0.05) & 0.01(0.01) & 0.07(0.01) & 0.21(0.06) \\ 
  50 & 5 &  & 0.96 & 0.98(0.03) & 0.97(0.03) & 0.01(0.01) & 0.06(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.97 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.11(0.01) \\ 
  200 & 5 &  & 0.94 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.07(0.01) \\ 
  30 & 10 &  & 0.97 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.05(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.98 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0) & 0.12(0.01) \\ 
  100 & 10 &  & 0.95 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0.95 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.06(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.13(0.01) \\ 
  50 & 30 &  & 0.99 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0.98 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.96 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.97 & 0.97(0.05) & 0.96(0.05) & 0.02(0.01) & 0.08(0.01) & 0.15(0.02) \\ 
  50 & 5 &  & 0.96 & 0.98(0.03) & 0.98(0.03) & 0.01(0.01) & 0.06(0.01) & 0.11(0.02) \\ 
  100 & 5 &  & 0.97 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.95 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.05(0.01) \\ 
  30 & 10 &  & 0.99 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.12(0.02) \\ 
  50 & 10 &  & 0.97 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.09(0.01) \\ 
  100 & 10 &  & 0.97 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  200 & 10 &  & 0.96 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.04(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.1(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.08(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  200 & 30 &  & 0.99 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.04(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   C
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.96 & 0.95(0.05) & 0.94(0.06) & 0.02(0.01) & 0.08(0.01) & 0.16(0.02) \\ 
  50 & 5 &  & 0.97 & 0.98(0.03) & 0.97(0.03) & 0.01(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 5 &  & 0.99 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.95 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 0.99 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.13(0.02) \\ 
  50 & 10 &  & 0.99 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.97 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.07(0.01) \\ 
  200 & 10 &  & 0.96 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.12(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.09(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   C
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.99 & 0.97(0.04) & 0.96(0.05) & 0.01(0.01) & 0.08(0.01) & 0.14(0.02) \\ 
  50 & 5 &  & 0.98 & 0.98(0.03) & 0.97(0.03) & 0.01(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  100 & 5 &  & 0.95 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.07(0.01) \\ 
  200 & 5 &  & 0.95 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.05(0.01) \\ 
  30 & 10 &  & 1 & 0.99(0.01) & 0.99(0.02) & 0(0.01) & 0.05(0.01) & 0.12(0.02) \\ 
  50 & 10 &  & 0.99 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0.01) & 0.09(0.01) \\ 
  100 & 10 &  & 0.96 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  200 & 10 &  & 0.95 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.11(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.08(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.06(0.01) \\ 
  200 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.04(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model C, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M1
Estimator:   MLR 

===============================

Model:   M1
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.11 & 0.78(0.14) & 0.74(0.16) & 0.07(0.02) & 0.08(0.03) & 0.32(0.06) \\ 
  50 & 5 &  & 0.15 & 0.88(0.07) & 0.85(0.08) & 0.05(0.01) & 0.06(0.01) & 0.29(0.05) \\ 
  100 & 5 &  & 0.05 & 0.91(0.03) & 0.89(0.04) & 0.04(0.01) & 0.05(0.01) & 0.24(0.04) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.19(0.03) \\ 
  30 & 10 &  & 0.04 & 0.86(0.08) & 0.83(0.09) & 0.05(0.02) & 0.06(0.01) & 0.25(0.04) \\ 
  50 & 10 &  & 0.01 & 0.9(0.03) & 0.88(0.04) & 0.04(0.01) & 0.05(0.01) & 0.21(0.03) \\ 
  100 & 10 &  & 0 & 0.92(0.02) & 0.9(0.03) & 0.03(0.01) & 0.05(0) & 0.16(0.02) \\ 
  200 & 10 &  & 0 & 0.92(0.01) & 0.91(0.02) & 0.03(0) & 0.04(0) & 0.12(0.02) \\ 
  30 & 30 &  & 0 & 0.9(0.03) & 0.88(0.04) & 0.04(0.01) & 0.05(0.01) & 0.18(0.03) \\ 
  50 & 30 &  & 0 & 0.91(0.04) & 0.89(0.05) & 0.04(0.01) & 0.04(0) & 0.14(0.02) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.1(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator MLR, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.12 & 0.88(0.06) & 0.85(0.07) & 0.06(0.02) & 0.08(0.01) & 0.16(0.03) \\ 
  50 & 5 &  & 0.15 & 0.92(0.04) & 0.91(0.04) & 0.05(0.01) & 0.07(0.01) & 0.13(0.03) \\ 
  100 & 5 &  & 0.02 & 0.95(0.02) & 0.93(0.02) & 0.04(0.01) & 0.06(0.01) & 0.1(0.02) \\ 
  200 & 5 &  & 0 & 0.95(0.01) & 0.94(0.02) & 0.03(0.01) & 0.05(0.01) & 0.08(0.01) \\ 
  30 & 10 &  & 0.05 & 0.9(0.04) & 0.88(0.05) & 0.05(0.01) & 0.06(0.01) & 0.13(0.03) \\ 
  50 & 10 &  & 0.01 & 0.92(0.02) & 0.91(0.03) & 0.04(0.01) & 0.06(0.01) & 0.1(0.02) \\ 
  100 & 10 &  & 0 & 0.94(0.01) & 0.92(0.02) & 0.04(0) & 0.05(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.04(0) & 0.05(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0 & 0.91(0.02) & 0.89(0.02) & 0.04(0.01) & 0.05(0.01) & 0.11(0.02) \\ 
  50 & 30 &  & 0 & 0.92(0.01) & 0.91(0.02) & 0.04(0) & 0.05(0) & 0.09(0.02) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.91(0.01) & 0.04(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.91(0.01) & 0.04(0) & 0.04(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator MLR, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M1
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.27 & 0.8(0.12) & 0.76(0.14) & 0.05(0.02) & 0.07(0.02) & 0.23(0.03) \\ 
  50 & 5 &  & 0.36 & 0.89(0.06) & 0.87(0.08) & 0.04(0.01) & 0.06(0.01) & 0.19(0.02) \\ 
  100 & 5 &  & 0.19 & 0.92(0.04) & 0.9(0.05) & 0.03(0.01) & 0.05(0.01) & 0.14(0.02) \\ 
  200 & 5 &  & 0.01 & 0.92(0.02) & 0.9(0.03) & 0.03(0.01) & 0.05(0.01) & 0.1(0.01) \\ 
  30 & 10 &  & 0.14 & 0.87(0.06) & 0.84(0.08) & 0.04(0.01) & 0.06(0.01) & 0.19(0.03) \\ 
  50 & 10 &  & 0.07 & 0.9(0.04) & 0.88(0.05) & 0.04(0.01) & 0.05(0.01) & 0.15(0.02) \\ 
  100 & 10 &  & 0.01 & 0.91(0.03) & 0.89(0.03) & 0.03(0.01) & 0.05(0.01) & 0.1(0.01) \\ 
  200 & 10 &  & 0 & 0.92(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.07(0.01) \\ 
  30 & 30 &  & 0 & 0.9(0.03) & 0.88(0.03) & 0.04(0.01) & 0.05(0.01) & 0.16(0.02) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.89(0.02) & 0.03(0) & 0.04(0) & 0.12(0.01) \\ 
  100 & 30 &  & 0 & 0.91(0.01) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator MLR, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.26 & 0.85(0.08) & 0.83(0.09) & 0.05(0.02) & 0.08(0.01) & 0.17(0.03) \\ 
  50 & 5 &  & 0.31 & 0.91(0.05) & 0.89(0.06) & 0.04(0.01) & 0.07(0.01) & 0.14(0.02) \\ 
  100 & 5 &  & 0.1 & 0.93(0.03) & 0.92(0.03) & 0.03(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  200 & 5 &  & 0.01 & 0.94(0.02) & 0.93(0.02) & 0.03(0) & 0.05(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.12 & 0.89(0.04) & 0.87(0.05) & 0.04(0.01) & 0.06(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.04 & 0.92(0.03) & 0.9(0.04) & 0.04(0.01) & 0.05(0.01) & 0.12(0.02) \\ 
  100 & 10 &  & 0 & 0.93(0.02) & 0.91(0.02) & 0.03(0) & 0.05(0.01) & 0.09(0.01) \\ 
  200 & 10 &  & 0 & 0.93(0.01) & 0.91(0.01) & 0.03(0) & 0.04(0) & 0.07(0.01) \\ 
  30 & 30 &  & 0 & 0.91(0.02) & 0.89(0.03) & 0.04(0.01) & 0.05(0) & 0.13(0.02) \\ 
  50 & 30 &  & 0 & 0.92(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.11(0.02) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.91(0.01) & 0.03(0) & 0.04(0) & 0.07(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator MLR, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M1
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.34 & 0.8(0.1) & 0.76(0.13) & 0.05(0.02) & 0.07(0.01) & 0.19(0.02) \\ 
  50 & 5 &  & 0.42 & 0.89(0.07) & 0.87(0.08) & 0.03(0.01) & 0.06(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.23 & 0.91(0.04) & 0.89(0.05) & 0.03(0.01) & 0.05(0.01) & 0.1(0.01) \\ 
  200 & 5 &  & 0.01 & 0.91(0.03) & 0.9(0.03) & 0.03(0.01) & 0.05(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.22 & 0.88(0.06) & 0.85(0.08) & 0.04(0.01) & 0.06(0.01) & 0.17(0.02) \\ 
  50 & 10 &  & 0.09 & 0.9(0.04) & 0.88(0.05) & 0.03(0.01) & 0.05(0.01) & 0.13(0.01) \\ 
  100 & 10 &  & 0 & 0.91(0.03) & 0.9(0.03) & 0.03(0.01) & 0.04(0) & 0.09(0.01) \\ 
  200 & 10 &  & 0 & 0.92(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0 & 0.9(0.03) & 0.88(0.03) & 0.04(0) & 0.05(0.01) & 0.15(0.02) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.12(0.01) \\ 
  100 & 30 &  & 0 & 0.91(0.03) & 0.9(0.03) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator MLR, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.37 & 0.84(0.09) & 0.8(0.11) & 0.05(0.02) & 0.07(0.01) & 0.17(0.02) \\ 
  50 & 5 &  & 0.4 & 0.9(0.06) & 0.88(0.07) & 0.04(0.01) & 0.06(0.01) & 0.13(0.02) \\ 
  100 & 5 &  & 0.15 & 0.92(0.03) & 0.9(0.04) & 0.03(0.01) & 0.05(0.01) & 0.09(0.01) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.91(0.03) & 0.03(0) & 0.05(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.2 & 0.88(0.07) & 0.86(0.08) & 0.04(0.01) & 0.06(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.09 & 0.91(0.04) & 0.89(0.05) & 0.03(0.01) & 0.05(0.01) & 0.12(0.02) \\ 
  100 & 10 &  & 0 & 0.92(0.02) & 0.9(0.03) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.92(0.02) & 0.91(0.02) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0 & 0.91(0.03) & 0.89(0.03) & 0.03(0.01) & 0.04(0) & 0.14(0.02) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.11(0.01) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator MLR, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M1
Estimator:   ULSMV 

===============================

Model:   M1
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.96(0.05) & 0.95(0.06) & 0.02(0.02) & 0.09(0.01) & 0.52(0.68) \\ 
  50 & 5 &  & 0.65 & 0.93(0.05) & 0.91(0.06) & 0.03(0.01) & 0.07(0.01) & 0.32(0.14) \\ 
  100 & 5 &  & 0.09 & 0.92(0.03) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.22(0.05) \\ 
  200 & 5 &  & 0 & 0.92(0.02) & 0.91(0.03) & 0.04(0.01) & 0.05(0.01) & 0.14(0.03) \\ 
  30 & 10 &  & 0.44 & 0.93(0.04) & 0.92(0.04) & 0.03(0.01) & 0.07(0.01) & 0.26(0.12) \\ 
  50 & 10 &  & 0.05 & 0.92(0.03) & 0.91(0.04) & 0.04(0.01) & 0.06(0.01) & 0.19(0.04) \\ 
  100 & 10 &  & 0 & 0.92(0.02) & 0.91(0.03) & 0.04(0.01) & 0.05(0.01) & 0.13(0.02) \\ 
  200 & 10 &  & 0 & 0.92(0.01) & 0.91(0.02) & 0.04(0) & 0.05(0) & 0.09(0.01) \\ 
  30 & 30 &  & 0.01 & 0.93(0.02) & 0.92(0.02) & 0.03(0.01) & 0.05(0.01) & 0.15(0.02) \\ 
  50 & 30 &  & 0 & 0.93(0.02) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.11(0.01) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.91(0.01) & 0.04(0) & 0.05(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.91(0.01) & 0.04(0) & 0.05(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.97(0.05) & 0.96(0.06) & 0.01(0.01) & 0.09(0.02) & 0.13(0.04) \\ 
  50 & 5 &  & 0.55 & 0.91(0.06) & 0.89(0.07) & 0.03(0.01) & 0.09(0.01) & 0.1(0.03) \\ 
  100 & 5 &  & 0.31 & 0.92(0.04) & 0.9(0.05) & 0.03(0.01) & 0.07(0.01) & 0.07(0.01) \\ 
  200 & 5 &  & 0 & 0.95(NA) & 0.94(NA) & 0.02(NA) & 0.06(NA) & 0.04(NA) \\ 
  30 & 10 &  & 0.78 & 0.91(0.08) & 0.89(0.1) & 0.02(0.01) & 0.08(0.01) & 0.09(0.02) \\ 
  50 & 10 &  & 0.2 & 0.88(0.05) & 0.85(0.06) & 0.03(0.01) & 0.07(0.01) & 0.07(0.02) \\ 
  100 & 10 &  & 0 & 0.9(NA) & 0.88(NA) & 0.03(NA) & 0.05(NA) & 0.06(NA) \\ 
  30 & 30 &  & 0.5 & 0.92(0.05) & 0.91(0.05) & 0.02(0.01) & 0.06(0) & 0.08(0.03) \\ 
  50 & 30 &  & 0 & 0.82(NA) & 0.78(NA) & 0.02(NA) & 0.06(NA) & 0.06(NA) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M1
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.93 & 0.91(0.08) & 0.9(0.09) & 0.02(0.01) & 0.09(0.01) & 0.21(0.04) \\ 
  50 & 5 &  & 0.76 & 0.93(0.05) & 0.91(0.06) & 0.02(0.01) & 0.07(0.01) & 0.15(0.03) \\ 
  100 & 5 &  & 0.3 & 0.93(0.04) & 0.92(0.04) & 0.03(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  200 & 5 &  & 0.02 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.82 & 0.92(0.05) & 0.91(0.06) & 0.02(0.01) & 0.07(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.38 & 0.93(0.03) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 10 &  & 0.02 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.93(0.02) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0.93 & 0.97(0.03) & 0.96(0.03) & 0.01(0.01) & 0.06(0.01) & 0.13(0.01) \\ 
  50 & 30 &  & 0.3 & 0.95(0.02) & 0.94(0.02) & 0.02(0) & 0.05(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.02(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.02(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.97 & 0.91(0.09) & 0.9(0.11) & 0.02(0.01) & 0.1(0.01) & 0.13(0.03) \\ 
  50 & 5 &  & 0.79 & 0.91(0.07) & 0.89(0.08) & 0.02(0.01) & 0.09(0.01) & 0.1(0.02) \\ 
  100 & 5 &  & 0.4 & 0.92(0.04) & 0.9(0.05) & 0.03(0.01) & 0.07(0.01) & 0.07(0.01) \\ 
  200 & 5 &  & 0.01 & 0.92(0.03) & 0.9(0.03) & 0.03(0) & 0.06(0.01) & 0.05(0.01) \\ 
  30 & 10 &  & 0.95 & 0.93(0.07) & 0.91(0.09) & 0.02(0.01) & 0.08(0.01) & 0.11(0.02) \\ 
  50 & 10 &  & 0.67 & 0.91(0.06) & 0.89(0.07) & 0.02(0.01) & 0.07(0.01) & 0.08(0.01) \\ 
  100 & 10 &  & 0.08 & 0.91(0.04) & 0.89(0.04) & 0.02(0) & 0.06(0.01) & 0.06(0.01) \\ 
  200 & 10 &  & 0 & 0.9(0.02) & 0.88(0.03) & 0.02(0) & 0.06(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.07(0.01) & 0.09(0.01) \\ 
  50 & 30 &  & 0.98 & 0.98(0.03) & 0.98(0.03) & 0(0) & 0.06(0.01) & 0.07(0.01) \\ 
  100 & 30 &  & 0.11 & 0.93(0.03) & 0.92(0.03) & 0.01(0) & 0.06(0) & 0.05(0.01) \\ 
  200 & 30 &  & 0 & 0.9(0.02) & 0.88(0.02) & 0.02(0) & 0.05(0) & 0.04(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M1
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.97 & 0.88(0.13) & 0.85(0.16) & 0.02(0.01) & 0.1(0.02) & 0.15(0.02) \\ 
  50 & 5 &  & 0.94 & 0.91(0.08) & 0.89(0.1) & 0.02(0.01) & 0.08(0.01) & 0.11(0.01) \\ 
  100 & 5 &  & 0.77 & 0.93(0.05) & 0.92(0.06) & 0.02(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.34 & 0.94(0.03) & 0.93(0.03) & 0.02(0) & 0.06(0.01) & 0.06(0.01) \\ 
  30 & 10 &  & 0.99 & 0.95(0.07) & 0.94(0.09) & 0.01(0.01) & 0.07(0.01) & 0.13(0.01) \\ 
  50 & 10 &  & 0.93 & 0.94(0.06) & 0.92(0.07) & 0.01(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.66 & 0.94(0.04) & 0.93(0.04) & 0.01(0.01) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0.12 & 0.94(0.02) & 0.93(0.02) & 0.02(0) & 0.05(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.06(0.01) & 0.12(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0.01) & 0(0) & 0.05(0) & 0.09(0.01) \\ 
  100 & 30 &  & 0.99 & 0.98(0.02) & 0.98(0.02) & 0(0) & 0.05(0) & 0.06(0.01) \\ 
  200 & 30 &  & 0.23 & 0.96(0.01) & 0.95(0.02) & 0.01(0) & 0.05(0) & 0.05(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:25 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.99 & 0.91(0.11) & 0.89(0.13) & 0.01(0.01) & 0.12(0.02) & 0.12(0.02) \\ 
  50 & 5 &  & 0.95 & 0.92(0.08) & 0.9(0.1) & 0.02(0.01) & 0.09(0.01) & 0.09(0.01) \\ 
  100 & 5 &  & 0.73 & 0.93(0.05) & 0.91(0.06) & 0.02(0.01) & 0.08(0.01) & 0.06(0.01) \\ 
  200 & 5 &  & 0.27 & 0.93(0.03) & 0.92(0.03) & 0.02(0) & 0.07(0.01) & 0.05(0.01) \\ 
  30 & 10 &  & 1 & 0.98(0.06) & 0.97(0.07) & 0(0.01) & 0.09(0.01) & 0.1(0.02) \\ 
  50 & 10 &  & 0.97 & 0.95(0.06) & 0.94(0.07) & 0.01(0.01) & 0.08(0.01) & 0.08(0.01) \\ 
  100 & 10 &  & 0.68 & 0.94(0.04) & 0.92(0.05) & 0.01(0.01) & 0.07(0.01) & 0.06(0.01) \\ 
  200 & 10 &  & 0.12 & 0.93(0.03) & 0.92(0.03) & 0.02(0) & 0.06(0.01) & 0.04(0) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.08(0.01) & 0.09(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.07(0.01) & 0.07(0.01) \\ 
  100 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.06(0.01) & 0.05(0.01) \\ 
  200 & 30 &  & 0.68 & 0.97(0.02) & 0.96(0.02) & 0.01(0) & 0.06(0) & 0.04(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M1
Estimator:   WLSMV 

===============================

Model:   M1
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.9 & 0.94(0.06) & 0.93(0.07) & 0.02(0.02) & 0.09(0.01) & 0.33(0.04) \\ 
  50 & 5 &  & 0.68 & 0.93(0.05) & 0.91(0.06) & 0.03(0.01) & 0.07(0.01) & 0.28(0.05) \\ 
  100 & 5 &  & 0.2 & 0.93(0.04) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.21(0.04) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.91(0.03) & 0.03(0.01) & 0.05(0.01) & 0.14(0.02) \\ 
  30 & 10 &  & 0.51 & 0.93(0.04) & 0.92(0.05) & 0.03(0.01) & 0.07(0.01) & 0.3(0.69) \\ 
  50 & 10 &  & 0.15 & 0.93(0.03) & 0.91(0.03) & 0.03(0.01) & 0.06(0.01) & 0.19(0.04) \\ 
  100 & 10 &  & 0 & 0.93(0.02) & 0.91(0.02) & 0.03(0) & 0.05(0.01) & 0.12(0.02) \\ 
  200 & 10 &  & 0 & 0.93(0.01) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.09(0.01) \\ 
  30 & 30 &  & 0.01 & 0.93(0.02) & 0.92(0.02) & 0.03(0) & 0.05(0.01) & 0.15(0.02) \\ 
  50 & 30 &  & 0 & 0.93(0.02) & 0.92(0.02) & 0.03(0) & 0.05(0) & 0.11(0.01) \\ 
  100 & 30 &  & 0 & 0.93(0.01) & 0.91(0.01) & 0.03(0) & 0.05(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0 & 0.93(0.01) & 0.91(0.01) & 0.04(0) & 0.05(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.95(0.05) & 0.94(0.06) & 0.02(0.02) & 0.08(0.01) & 0.14(0.05) \\ 
  50 & 5 &  & 0 & 0.86(0.01) & 0.83(0.01) & 0.04(0) & 0.09(0.01) & 0.14(0.07) \\ 
  100 & 5 &  & 0.4 & 0.93(0.04) & 0.91(0.05) & 0.03(0.01) & 0.06(0.01) & 0.08(0.02) \\ 
  30 & 10 &  & 0.4 & 0.91(0.06) & 0.9(0.07) & 0.03(0.01) & 0.07(0.01) & 0.14(0.03) \\ 
  50 & 10 &  & 0 & 0.91(0.04) & 0.89(0.05) & 0.03(0.01) & 0.07(0.02) & 0.1(0.03) \\ 
  30 & 30 &  & 0.5 & 0.96(0.03) & 0.95(0.04) & 0.02(0.01) & 0.05(0.01) & 0.08(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M1
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.87 & 0.92(0.07) & 0.9(0.08) & 0.03(0.02) & 0.09(0.01) & 0.2(0.03) \\ 
  50 & 5 &  & 0.59 & 0.92(0.05) & 0.91(0.06) & 0.03(0.01) & 0.07(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.21 & 0.93(0.03) & 0.92(0.04) & 0.03(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.92(0.03) & 0.03(0.01) & 0.06(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.51 & 0.92(0.05) & 0.91(0.05) & 0.03(0.01) & 0.07(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.13 & 0.93(0.03) & 0.91(0.03) & 0.03(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 10 &  & 0.01 & 0.93(0.02) & 0.92(0.02) & 0.03(0) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.92(0.02) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0.12 & 0.95(0.02) & 0.94(0.02) & 0.02(0) & 0.06(0.01) & 0.13(0.01) \\ 
  50 & 30 &  & 0 & 0.94(0.01) & 0.93(0.02) & 0.03(0) & 0.05(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0 & 0.94(0.01) & 0.92(0.01) & 0.03(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.92(0.01) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.81 & 0.91(0.07) & 0.9(0.08) & 0.03(0.02) & 0.09(0.01) & 0.15(0.03) \\ 
  50 & 5 &  & 0.56 & 0.92(0.06) & 0.9(0.07) & 0.03(0.01) & 0.08(0.01) & 0.11(0.02) \\ 
  100 & 5 &  & 0.18 & 0.93(0.04) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.91(0.03) & 0.03(0) & 0.06(0.01) & 0.06(0.01) \\ 
  30 & 10 &  & 0.56 & 0.93(0.04) & 0.91(0.05) & 0.03(0.01) & 0.07(0.01) & 0.13(0.02) \\ 
  50 & 10 &  & 0.15 & 0.92(0.03) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.09(0.01) \\ 
  100 & 10 &  & 0 & 0.92(0.03) & 0.9(0.03) & 0.03(0.01) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0 & 0.92(0.02) & 0.9(0.02) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
  30 & 30 &  & 0.8 & 0.97(0.02) & 0.97(0.02) & 0.01(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  50 & 30 &  & 0.04 & 0.95(0.02) & 0.94(0.02) & 0.02(0) & 0.05(0.01) & 0.08(0.01) \\ 
  100 & 30 &  & 0 & 0.93(0.01) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M1
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.82 & 0.91(0.07) & 0.89(0.08) & 0.03(0.02) & 0.09(0.01) & 0.15(0.02) \\ 
  50 & 5 &  & 0.71 & 0.93(0.05) & 0.91(0.06) & 0.03(0.01) & 0.08(0.01) & 0.11(0.01) \\ 
  100 & 5 &  & 0.28 & 0.94(0.03) & 0.92(0.04) & 0.03(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.01 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.06(0.01) \\ 
  30 & 10 &  & 0.8 & 0.95(0.04) & 0.93(0.05) & 0.02(0.01) & 0.07(0.01) & 0.13(0.02) \\ 
  50 & 10 &  & 0.3 & 0.94(0.03) & 0.92(0.03) & 0.03(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0 & 0.94(0.02) & 0.92(0.02) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.92(0.02) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
  30 & 30 &  & 0.99 & 0.99(0.01) & 0.99(0.02) & 0(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  50 & 30 &  & 0.37 & 0.97(0.01) & 0.96(0.02) & 0.01(0) & 0.05(0.01) & 0.09(0.01) \\ 
  100 & 30 &  & 0 & 0.95(0.01) & 0.94(0.01) & 0.02(0) & 0.05(0) & 0.06(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.03(0) & 0.05(0) & 0.05(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M1
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.89 & 0.93(0.06) & 0.91(0.07) & 0.03(0.01) & 0.09(0.01) & 0.14(0.02) \\ 
  50 & 5 &  & 0.66 & 0.93(0.05) & 0.91(0.06) & 0.03(0.01) & 0.08(0.01) & 0.1(0.01) \\ 
  100 & 5 &  & 0.2 & 0.93(0.03) & 0.91(0.04) & 0.03(0.01) & 0.07(0.01) & 0.07(0.01) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.05(0.01) \\ 
  30 & 10 &  & 0.88 & 0.96(0.04) & 0.95(0.05) & 0.02(0.01) & 0.07(0.01) & 0.12(0.02) \\ 
  50 & 10 &  & 0.4 & 0.94(0.03) & 0.93(0.04) & 0.03(0.01) & 0.06(0.01) & 0.09(0.01) \\ 
  100 & 10 &  & 0.01 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0 & 0.93(0.02) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0.01) & 0(0) & 0.06(0.01) & 0.11(0.01) \\ 
  50 & 30 &  & 0.86 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.06(0.01) & 0.09(0.01) \\ 
  100 & 30 &  & 0 & 0.95(0.01) & 0.94(0.01) & 0.02(0) & 0.05(0) & 0.06(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M1, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M2
Estimator:   MLR 

===============================

Model:   M2
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.35 & 0.87(0.11) & 0.84(0.12) & 0.05(0.02) & 0.06(0.03) & 0.33(0.06) \\ 
  50 & 5 &  & 0.52 & 0.94(0.04) & 0.93(0.05) & 0.03(0.02) & 0.05(0.01) & 0.28(0.04) \\ 
  100 & 5 &  & 0.69 & 0.98(0.02) & 0.97(0.03) & 0.02(0.01) & 0.03(0) & 0.23(0.03) \\ 
  200 & 5 &  & 0.84 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.18(0.03) \\ 
  30 & 10 &  & 0.42 & 0.94(0.04) & 0.92(0.05) & 0.03(0.01) & 0.04(0.01) & 0.26(0.04) \\ 
  50 & 10 &  & 0.6 & 0.97(0.02) & 0.96(0.03) & 0.02(0.01) & 0.03(0) & 0.22(0.03) \\ 
  100 & 10 &  & 0.81 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.17(0.02) \\ 
  200 & 10 &  & 0.79 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.12(0.02) \\ 
  30 & 30 &  & 0.56 & 0.98(0.01) & 0.98(0.02) & 0.02(0.01) & 0.02(0) & 0.2(0.03) \\ 
  50 & 30 &  & 0.72 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.15(0.02) \\ 
  100 & 30 &  & 0.74 & 1(0) & 0.99(0) & 0.01(0) & 0.01(0) & 0.12(0.01) \\ 
  200 & 30 &  & 0.59 & 1(0) & 1(0) & 0.01(0) & 0.01(0) & 0.09(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator MLR, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.2 & 0.89(0.06) & 0.87(0.07) & 0.06(0.02) & 0.07(0.01) & 0.21(0.05) \\ 
  50 & 5 &  & 0.2 & 0.93(0.03) & 0.91(0.04) & 0.04(0.01) & 0.05(0.01) & 0.18(0.03) \\ 
  100 & 5 &  & 0.09 & 0.95(0.02) & 0.94(0.03) & 0.03(0.01) & 0.04(0) & 0.16(0.03) \\ 
  200 & 5 &  & 0 & 0.96(0.01) & 0.95(0.02) & 0.03(0.01) & 0.03(0) & 0.14(0.02) \\ 
  30 & 10 &  & 0.15 & 0.92(0.04) & 0.91(0.04) & 0.04(0.01) & 0.04(0.01) & 0.17(0.04) \\ 
  50 & 10 &  & 0.09 & 0.94(0.02) & 0.93(0.03) & 0.03(0.01) & 0.04(0) & 0.16(0.03) \\ 
  100 & 10 &  & 0 & 0.96(0.01) & 0.95(0.01) & 0.03(0) & 0.03(0) & 0.14(0.02) \\ 
  200 & 10 &  & 0 & 0.96(0.01) & 0.95(0.01) & 0.03(0) & 0.02(0) & 0.13(0.01) \\ 
  30 & 30 &  & 0.08 & 0.96(0.02) & 0.95(0.02) & 0.03(0.01) & 0.02(0) & 0.16(0.03) \\ 
  50 & 30 &  & 0.03 & 0.97(0.01) & 0.97(0.01) & 0.02(0) & 0.02(0) & 0.15(0.02) \\ 
  100 & 30 &  & 0 & 0.98(0.01) & 0.97(0.01) & 0.02(0) & 0.01(0) & 0.14(0.02) \\ 
  200 & 30 &  & 0 & 0.98(0) & 0.97(0) & 0.02(0) & 0.01(0) & 0.13(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator MLR, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M2
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.47 & 0.87(0.09) & 0.85(0.11) & 0.04(0.02) & 0.06(0.01) & 0.23(0.03) \\ 
  50 & 5 &  & 0.78 & 0.95(0.05) & 0.94(0.06) & 0.02(0.02) & 0.05(0.01) & 0.19(0.02) \\ 
  100 & 5 &  & 0.88 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.03(0) & 0.14(0.02) \\ 
  200 & 5 &  & 0.87 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.1(0.01) \\ 
  30 & 10 &  & 0.63 & 0.94(0.04) & 0.93(0.05) & 0.02(0.01) & 0.04(0.01) & 0.2(0.02) \\ 
  50 & 10 &  & 0.77 & 0.98(0.02) & 0.97(0.03) & 0.01(0.01) & 0.03(0) & 0.16(0.02) \\ 
  100 & 10 &  & 0.87 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.11(0.01) \\ 
  200 & 10 &  & 0.88 & 1(0) & 1(0.01) & 0.01(0) & 0.02(0) & 0.08(0.01) \\ 
  30 & 30 &  & 0.71 & 0.98(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0.8 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.13(0.01) \\ 
  100 & 30 &  & 0.88 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0.88 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.07(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator MLR, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.37 & 0.88(0.07) & 0.86(0.08) & 0.05(0.02) & 0.07(0.01) & 0.19(0.03) \\ 
  50 & 5 &  & 0.52 & 0.94(0.04) & 0.93(0.05) & 0.03(0.02) & 0.05(0.01) & 0.16(0.02) \\ 
  100 & 5 &  & 0.46 & 0.96(0.02) & 0.96(0.03) & 0.02(0.01) & 0.04(0) & 0.12(0.02) \\ 
  200 & 5 &  & 0.14 & 0.97(0.01) & 0.96(0.02) & 0.02(0.01) & 0.03(0) & 0.11(0.01) \\ 
  30 & 10 &  & 0.47 & 0.94(0.04) & 0.92(0.05) & 0.03(0.01) & 0.04(0.01) & 0.17(0.03) \\ 
  50 & 10 &  & 0.5 & 0.96(0.02) & 0.96(0.03) & 0.02(0.01) & 0.03(0) & 0.14(0.02) \\ 
  100 & 10 &  & 0.26 & 0.97(0.01) & 0.97(0.02) & 0.02(0.01) & 0.02(0) & 0.11(0.01) \\ 
  200 & 10 &  & 0.02 & 0.98(0.01) & 0.97(0.01) & 0.02(0) & 0.02(0) & 0.1(0.01) \\ 
  30 & 30 &  & 0.49 & 0.98(0.02) & 0.97(0.02) & 0.02(0.01) & 0.02(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0.43 & 0.98(0.01) & 0.98(0.01) & 0.01(0.01) & 0.02(0) & 0.13(0.02) \\ 
  100 & 30 &  & 0.19 & 0.99(0.01) & 0.99(0.01) & 0.01(0) & 0.01(0) & 0.11(0.01) \\ 
  200 & 30 &  & 0 & 0.99(0) & 0.99(0) & 0.01(0) & 0.01(0) & 0.1(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator MLR, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M2
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.57 & 0.87(0.1) & 0.84(0.12) & 0.04(0.02) & 0.06(0.01) & 0.19(0.02) \\ 
  50 & 5 &  & 0.83 & 0.95(0.05) & 0.94(0.05) & 0.02(0.01) & 0.05(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.92 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.03(0) & 0.11(0.01) \\ 
  200 & 5 &  & 0.92 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.07(0.01) \\ 
  30 & 10 &  & 0.75 & 0.95(0.04) & 0.94(0.05) & 0.02(0.01) & 0.04(0.01) & 0.17(0.02) \\ 
  50 & 10 &  & 0.85 & 0.98(0.02) & 0.97(0.03) & 0.01(0.01) & 0.03(0) & 0.13(0.01) \\ 
  100 & 10 &  & 0.92 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.09(0.01) \\ 
  200 & 10 &  & 0.92 & 1(0) & 1(0.01) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  30 & 30 &  & 0.69 & 0.98(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0.87 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.12(0.01) \\ 
  100 & 30 &  & 0.91 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0.94 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator MLR, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.51 & 0.88(0.09) & 0.85(0.1) & 0.04(0.02) & 0.06(0.01) & 0.18(0.03) \\ 
  50 & 5 &  & 0.73 & 0.95(0.05) & 0.94(0.06) & 0.02(0.02) & 0.05(0.01) & 0.14(0.02) \\ 
  100 & 5 &  & 0.67 & 0.97(0.03) & 0.96(0.03) & 0.02(0.01) & 0.04(0) & 0.11(0.01) \\ 
  200 & 5 &  & 0.48 & 0.98(0.01) & 0.97(0.02) & 0.02(0.01) & 0.03(0) & 0.08(0.01) \\ 
  30 & 10 &  & 0.64 & 0.94(0.04) & 0.93(0.05) & 0.02(0.01) & 0.04(0.01) & 0.16(0.02) \\ 
  50 & 10 &  & 0.71 & 0.97(0.03) & 0.96(0.03) & 0.02(0.01) & 0.03(0) & 0.13(0.02) \\ 
  100 & 10 &  & 0.64 & 0.98(0.01) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.1(0.01) \\ 
  200 & 10 &  & 0.39 & 0.99(0.01) & 0.98(0.01) & 0.01(0) & 0.02(0) & 0.08(0.01) \\ 
  30 & 30 &  & 0.62 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.02(0) & 0.15(0.02) \\ 
  50 & 30 &  & 0.7 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.02(0) & 0.12(0.02) \\ 
  100 & 30 &  & 0.56 & 0.99(0) & 0.99(0.01) & 0.01(0) & 0.01(0) & 0.1(0.01) \\ 
  200 & 30 &  & 0.32 & 0.99(0) & 0.99(0) & 0.01(0) & 0.01(0) & 0.08(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator MLR, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M2
Estimator:   ULSMV 

===============================

Model:   M2
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.07(0.01) & 0.36(0.06) \\ 
  50 & 5 &  & 0.99 & 0.99(0.02) & 0.98(0.03) & 0.01(0.01) & 0.06(0.01) & 0.31(0.06) \\ 
  100 & 5 &  & 0.94 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.22(0.05) \\ 
  200 & 5 &  & 0.93 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.15(0.03) \\ 
  30 & 10 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.26(0.04) \\ 
  50 & 10 &  & 0.98 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0) & 0.2(0.04) \\ 
  100 & 10 &  & 0.94 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.14(0.02) \\ 
  200 & 10 &  & 0.87 & 1(0) & 1(0) & 0.01(0) & 0.02(0) & 0.1(0.01) \\ 
  30 & 30 &  & 0.99 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0.96 & 1(0) & 1(0) & 0.01(0) & 0.02(0) & 0.12(0.02) \\ 
  100 & 30 &  & 0.84 & 1(0) & 1(0) & 0.01(0) & 0.01(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0.62 & 1(0) & 1(0) & 0.01(0) & 0.01(0) & 0.07(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.96(0.06) & 0.95(0.07) & 0.01(0.01) & 0.08(0.01) & 0.15(0.04) \\ 
  50 & 5 &  & 0.79 & 0.93(0.06) & 0.91(0.07) & 0.02(0.01) & 0.07(0.01) & 0.13(0.03) \\ 
  100 & 5 &  & 0.25 & 0.92(0.05) & 0.9(0.06) & 0.03(0.01) & 0.05(0.01) & 0.11(0.02) \\ 
  200 & 5 &  & 0 & 0.9(0.04) & 0.88(0.04) & 0.03(0.01) & 0.04(0.01) & 0.1(0.01) \\ 
  30 & 10 &  & 0.87 & 0.93(0.08) & 0.91(0.1) & 0.02(0.01) & 0.06(0.01) & 0.13(0.03) \\ 
  50 & 10 &  & 0.34 & 0.89(0.06) & 0.87(0.07) & 0.03(0.01) & 0.05(0.01) & 0.11(0.02) \\ 
  100 & 10 &  & 0 & 0.87(0.05) & 0.84(0.06) & 0.03(0.01) & 0.04(0.01) & 0.1(0.02) \\ 
  200 & 10 &  & 0 & 0.85(0.04) & 0.82(0.05) & 0.03(0) & 0.03(0) & 0.09(0.01) \\ 
  30 & 30 &  & 0.88 & 0.95(0.05) & 0.94(0.06) & 0.01(0.01) & 0.04(0.01) & 0.11(0.02) \\ 
  50 & 30 &  & 0.12 & 0.87(0.06) & 0.85(0.07) & 0.02(0) & 0.03(0.01) & 0.1(0.02) \\ 
  100 & 30 &  & 0 & 0.81(0.06) & 0.77(0.07) & 0.03(0) & 0.03(0.01) & 0.09(0.01) \\ 
  200 & 30 &  & 0 & 0.77(0.05) & 0.73(0.06) & 0.03(0) & 0.03(0) & 0.09(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M2
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.99 & 0.96(0.06) & 0.95(0.07) & 0.01(0.01) & 0.08(0.01) & 0.21(0.04) \\ 
  50 & 5 &  & 0.97 & 0.97(0.04) & 0.97(0.04) & 0.01(0.01) & 0.06(0.01) & 0.16(0.02) \\ 
  100 & 5 &  & 0.97 & 0.99(0.02) & 0.98(0.02) & 0.01(0.01) & 0.04(0.01) & 0.11(0.01) \\ 
  200 & 5 &  & 0.92 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.08(0.01) \\ 
  30 & 10 &  & 0.99 & 0.98(0.03) & 0.97(0.04) & 0.01(0.01) & 0.05(0.01) & 0.16(0.02) \\ 
  50 & 10 &  & 0.98 & 0.98(0.02) & 0.98(0.02) & 0.01(0.01) & 0.04(0) & 0.12(0.01) \\ 
  100 & 10 &  & 0.95 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0.92 & 1(0) & 1(0.01) & 0.01(0) & 0.02(0) & 0.06(0.01) \\ 
  30 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.03(0) & 0.13(0.01) \\ 
  50 & 30 &  & 0.99 & 1(0.01) & 0.99(0.01) & 0(0) & 0.02(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0.96 & 1(0.01) & 1(0.01) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.87 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.98 & 0.93(0.08) & 0.92(0.09) & 0.02(0.01) & 0.09(0.01) & 0.14(0.03) \\ 
  50 & 5 &  & 0.84 & 0.93(0.06) & 0.92(0.08) & 0.02(0.01) & 0.07(0.01) & 0.11(0.02) \\ 
  100 & 5 &  & 0.46 & 0.93(0.05) & 0.91(0.06) & 0.02(0.01) & 0.06(0.01) & 0.09(0.01) \\ 
  200 & 5 &  & 0.05 & 0.92(0.03) & 0.9(0.04) & 0.03(0.01) & 0.04(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.96 & 0.95(0.07) & 0.93(0.08) & 0.01(0.01) & 0.07(0.01) & 0.12(0.02) \\ 
  50 & 10 &  & 0.72 & 0.93(0.06) & 0.91(0.07) & 0.02(0.01) & 0.05(0.01) & 0.09(0.02) \\ 
  100 & 10 &  & 0.17 & 0.91(0.05) & 0.89(0.06) & 0.02(0.01) & 0.04(0.01) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.9(0.03) & 0.89(0.04) & 0.02(0) & 0.04(0.01) & 0.07(0.01) \\ 
  30 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.05(0.01) & 0.1(0.02) \\ 
  50 & 30 &  & 0.99 & 0.99(0.03) & 0.98(0.03) & 0(0) & 0.04(0.01) & 0.08(0.01) \\ 
  100 & 30 &  & 0.26 & 0.93(0.04) & 0.92(0.04) & 0.01(0) & 0.03(0.01) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.9(0.03) & 0.88(0.03) & 0.02(0) & 0.03(0.01) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M2
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.96 & 0.9(0.13) & 0.88(0.16) & 0.01(0.01) & 0.09(0.02) & 0.15(0.02) \\ 
  50 & 5 &  & 0.97 & 0.95(0.07) & 0.94(0.08) & 0.01(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 5 &  & 0.97 & 0.97(0.03) & 0.97(0.04) & 0.01(0.01) & 0.04(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.94 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 1 & 0.97(0.06) & 0.97(0.07) & 0(0.01) & 0.06(0.01) & 0.13(0.02) \\ 
  50 & 10 &  & 0.99 & 0.97(0.04) & 0.96(0.05) & 0.01(0.01) & 0.04(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.95 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.03(0) & 0.07(0.01) \\ 
  200 & 10 &  & 0.92 & 0.99(0.01) & 0.99(0.01) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0.01) & 0.12(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.09(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.99 & 1(0.01) & 1(0.01) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.99 & 0.91(0.11) & 0.89(0.13) & 0.01(0.01) & 0.11(0.02) & 0.12(0.02) \\ 
  50 & 5 &  & 0.95 & 0.93(0.08) & 0.92(0.1) & 0.01(0.01) & 0.08(0.01) & 0.09(0.01) \\ 
  100 & 5 &  & 0.74 & 0.93(0.05) & 0.92(0.06) & 0.02(0.01) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 5 &  & 0.33 & 0.93(0.04) & 0.92(0.05) & 0.02(0.01) & 0.05(0.01) & 0.06(0.01) \\ 
  30 & 10 &  & 1 & 0.98(0.05) & 0.98(0.06) & 0(0.01) & 0.08(0.02) & 0.11(0.02) \\ 
  50 & 10 &  & 0.96 & 0.96(0.06) & 0.95(0.07) & 0.01(0.01) & 0.06(0.01) & 0.09(0.01) \\ 
  100 & 10 &  & 0.71 & 0.94(0.05) & 0.93(0.06) & 0.01(0.01) & 0.05(0.01) & 0.06(0.01) \\ 
  200 & 10 &  & 0.19 & 0.93(0.03) & 0.92(0.04) & 0.02(0) & 0.04(0.01) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.06(0.02) & 0.1(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.05(0.01) & 0.08(0.01) \\ 
  100 & 30 &  & 1 & 1(0.01) & 1(0.01) & 0(0) & 0.04(0.01) & 0.06(0.01) \\ 
  200 & 30 &  & 0.65 & 0.97(0.03) & 0.96(0.03) & 0.01(0) & 0.03(0.01) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M2
Estimator:   WLSMV 

===============================

Model:   M2
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.98(0.03) & 0.98(0.04) & 0.01(0.01) & 0.07(0.01) & 0.35(0.06) \\ 
  50 & 5 &  & 1 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.06(0.01) & 0.3(0.06) \\ 
  100 & 5 &  & 0.93 & 0.99(0.02) & 0.98(0.02) & 0.01(0.01) & 0.04(0.01) & 0.22(0.04) \\ 
  200 & 5 &  & 0.92 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.15(0.03) \\ 
  30 & 10 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.25(0.04) \\ 
  50 & 10 &  & 0.96 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0) & 0.19(0.03) \\ 
  100 & 10 &  & 0.93 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.13(0.02) \\ 
  200 & 10 &  & 0.83 & 1(0) & 0.99(0.01) & 0.01(0) & 0.02(0) & 0.1(0.01) \\ 
  30 & 30 &  & 0.98 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0.95 & 1(0) & 0.99(0.01) & 0.01(0) & 0.02(0) & 0.12(0.02) \\ 
  100 & 30 &  & 0.79 & 1(0) & 1(0) & 0.01(0) & 0.01(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0.49 & 1(0) & 1(0) & 0.01(0) & 0.01(0) & 0.07(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.97(0.03) & 0.97(0.04) & 0.01(0.01) & 0.07(0.01) & 0.19(0.05) \\ 
  50 & 5 &  & 0.74 & 0.95(0.04) & 0.94(0.05) & 0.02(0.01) & 0.06(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.43 & 0.95(0.03) & 0.94(0.03) & 0.02(0.01) & 0.05(0.01) & 0.12(0.02) \\ 
  200 & 5 &  & 0.01 & 0.94(0.02) & 0.93(0.02) & 0.03(0.01) & 0.03(0) & 0.11(0.01) \\ 
  30 & 10 &  & 0.97 & 0.97(0.02) & 0.97(0.03) & 0.02(0.01) & 0.05(0.01) & 0.15(0.03) \\ 
  50 & 10 &  & 0.7 & 0.97(0.02) & 0.96(0.03) & 0.02(0.01) & 0.04(0.01) & 0.13(0.02) \\ 
  100 & 10 &  & 0.05 & 0.95(0.02) & 0.94(0.02) & 0.02(0) & 0.03(0) & 0.11(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.93(0.02) & 0.03(0) & 0.02(0) & 0.1(0.01) \\ 
  30 & 30 &  & 0.97 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.13(0.02) \\ 
  50 & 30 &  & 0.6 & 0.98(0.01) & 0.98(0.01) & 0.01(0) & 0.02(0) & 0.12(0.01) \\ 
  100 & 30 &  & 0 & 0.97(0.01) & 0.97(0.01) & 0.02(0) & 0.02(0) & 0.11(0.01) \\ 
  200 & 30 &  & 0 & 0.97(0.01) & 0.96(0.01) & 0.02(0) & 0.01(0) & 0.11(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M2
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.97 & 0.96(0.04) & 0.96(0.05) & 0.02(0.01) & 0.08(0.01) & 0.21(0.04) \\ 
  50 & 5 &  & 0.95 & 0.98(0.03) & 0.97(0.04) & 0.01(0.01) & 0.06(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.97 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.11(0.01) \\ 
  200 & 5 &  & 0.92 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.08(0.01) \\ 
  30 & 10 &  & 0.97 & 0.98(0.02) & 0.98(0.03) & 0.01(0.01) & 0.05(0.01) & 0.16(0.02) \\ 
  50 & 10 &  & 0.98 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0) & 0.12(0.01) \\ 
  100 & 10 &  & 0.94 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0.92 & 1(0) & 1(0) & 0.01(0) & 0.02(0) & 0.06(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.13(0.01) \\ 
  50 & 30 &  & 0.99 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0.96 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.91 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.94 & 0.95(0.05) & 0.94(0.06) & 0.02(0.01) & 0.08(0.01) & 0.16(0.03) \\ 
  50 & 5 &  & 0.89 & 0.96(0.03) & 0.95(0.04) & 0.02(0.01) & 0.06(0.01) & 0.13(0.02) \\ 
  100 & 5 &  & 0.61 & 0.96(0.02) & 0.96(0.03) & 0.02(0.01) & 0.04(0.01) & 0.1(0.01) \\ 
  200 & 5 &  & 0.14 & 0.96(0.02) & 0.96(0.02) & 0.02(0.01) & 0.03(0) & 0.08(0.01) \\ 
  30 & 10 &  & 0.97 & 0.98(0.02) & 0.97(0.03) & 0.01(0.01) & 0.05(0.01) & 0.14(0.02) \\ 
  50 & 10 &  & 0.85 & 0.98(0.02) & 0.97(0.02) & 0.02(0.01) & 0.04(0.01) & 0.11(0.02) \\ 
  100 & 10 &  & 0.34 & 0.97(0.01) & 0.97(0.02) & 0.02(0.01) & 0.03(0) & 0.09(0.01) \\ 
  200 & 10 &  & 0.01 & 0.97(0.01) & 0.97(0.01) & 0.02(0) & 0.02(0) & 0.08(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.12(0.02) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0.52 & 0.99(0) & 0.99(0.01) & 0.01(0) & 0.02(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0 & 0.99(0) & 0.99(0) & 0.01(0) & 0.01(0) & 0.08(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M2
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.95 & 0.96(0.05) & 0.95(0.06) & 0.02(0.01) & 0.08(0.01) & 0.16(0.02) \\ 
  50 & 5 &  & 0.97 & 0.98(0.03) & 0.97(0.03) & 0.01(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 5 &  & 0.97 & 0.99(0.01) & 0.99(0.02) & 0.01(0.01) & 0.04(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.96 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 0.99 & 0.99(0.02) & 0.99(0.02) & 0.01(0.01) & 0.05(0.01) & 0.13(0.01) \\ 
  50 & 10 &  & 0.99 & 0.99(0.01) & 0.99(0.01) & 0.01(0.01) & 0.04(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.96 & 1(0.01) & 0.99(0.01) & 0.01(0.01) & 0.03(0) & 0.07(0.01) \\ 
  200 & 10 &  & 0.94 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.12(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.09(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.07(0.01) \\ 
  200 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.05(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M2
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.98 & 0.96(0.04) & 0.95(0.05) & 0.02(0.01) & 0.08(0.01) & 0.15(0.02) \\ 
  50 & 5 &  & 0.95 & 0.97(0.03) & 0.96(0.04) & 0.02(0.01) & 0.06(0.01) & 0.11(0.01) \\ 
  100 & 5 &  & 0.77 & 0.97(0.02) & 0.97(0.03) & 0.02(0.01) & 0.05(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.42 & 0.98(0.01) & 0.97(0.02) & 0.02(0.01) & 0.03(0) & 0.06(0.01) \\ 
  30 & 10 &  & 0.99 & 0.99(0.02) & 0.99(0.02) & 0(0.01) & 0.05(0.01) & 0.13(0.02) \\ 
  50 & 10 &  & 0.97 & 0.99(0.01) & 0.98(0.02) & 0.01(0.01) & 0.04(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.77 & 0.99(0.01) & 0.98(0.01) & 0.01(0.01) & 0.03(0) & 0.08(0.01) \\ 
  200 & 10 &  & 0.27 & 0.99(0.01) & 0.98(0.01) & 0.01(0) & 0.02(0) & 0.06(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.03(0) & 0.12(0.02) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.1(0.01) \\ 
  100 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.02(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0.73 & 1(0) & 1(0) & 0(0) & 0.01(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M2, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M12
Estimator:   MLR 

===============================

Model:   M12
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.1 & 0.77(0.14) & 0.73(0.16) & 0.07(0.02) & 0.08(0.04) & 0.32(0.06) \\ 
  50 & 5 &  & 0.1 & 0.86(0.06) & 0.83(0.07) & 0.05(0.01) & 0.06(0.01) & 0.28(0.04) \\ 
  100 & 5 &  & 0.01 & 0.89(0.04) & 0.87(0.04) & 0.04(0.01) & 0.05(0.01) & 0.22(0.03) \\ 
  200 & 5 &  & 0 & 0.91(0.02) & 0.9(0.03) & 0.04(0) & 0.05(0.01) & 0.17(0.02) \\ 
  30 & 10 &  & 0.03 & 0.86(0.05) & 0.83(0.06) & 0.05(0.01) & 0.06(0.01) & 0.26(0.04) \\ 
  50 & 10 &  & 0.01 & 0.89(0.04) & 0.87(0.04) & 0.04(0.01) & 0.05(0.01) & 0.22(0.03) \\ 
  100 & 10 &  & 0 & 0.91(0.02) & 0.9(0.03) & 0.04(0) & 0.05(0) & 0.16(0.02) \\ 
  200 & 10 &  & 0 & 0.92(0.01) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.12(0.02) \\ 
  30 & 30 &  & 0 & 0.9(0.03) & 0.88(0.03) & 0.04(0.01) & 0.05(0) & 0.19(0.03) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.89(0.02) & 0.04(0) & 0.04(0) & 0.15(0.02) \\ 
  100 & 30 &  & 0 & 0.91(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.11(0.01) \\ 
  200 & 30 &  & 0 & 0.91(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator MLR, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   MLR
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.03 & 0.83(0.06) & 0.8(0.07) & 0.07(0.02) & 0.08(0.01) & 0.2(0.04) \\ 
  50 & 5 &  & 0.01 & 0.87(0.04) & 0.85(0.05) & 0.06(0.01) & 0.07(0.01) & 0.17(0.03) \\ 
  100 & 5 &  & 0 & 0.89(0.03) & 0.88(0.03) & 0.05(0.01) & 0.06(0.01) & 0.14(0.02) \\ 
  200 & 5 &  & 0 & 0.9(0.02) & 0.88(0.02) & 0.05(0) & 0.05(0.01) & 0.13(0.02) \\ 
  30 & 10 &  & 0.02 & 0.86(0.05) & 0.84(0.05) & 0.06(0.01) & 0.06(0.01) & 0.17(0.04) \\ 
  50 & 10 &  & 0 & 0.89(0.03) & 0.87(0.03) & 0.05(0.01) & 0.05(0.01) & 0.15(0.03) \\ 
  100 & 10 &  & 0 & 0.9(0.02) & 0.88(0.02) & 0.05(0) & 0.05(0.01) & 0.13(0.02) \\ 
  200 & 10 &  & 0 & 0.9(0.01) & 0.89(0.01) & 0.04(0) & 0.05(0) & 0.12(0.01) \\ 
  30 & 30 &  & 0 & 0.9(0.02) & 0.88(0.03) & 0.04(0.01) & 0.05(0) & 0.16(0.04) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.89(0.02) & 0.04(0) & 0.04(0) & 0.14(0.02) \\ 
  100 & 30 &  & 0 & 0.91(0.01) & 0.89(0.01) & 0.04(0) & 0.04(0) & 0.13(0.02) \\ 
  200 & 30 &  & 0 & 0.91(0.01) & 0.89(0.01) & 0.04(0) & 0.04(0) & 0.12(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator MLR, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M12
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:26 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.28 & 0.8(0.13) & 0.76(0.15) & 0.05(0.02) & 0.07(0.01) & 0.23(0.03) \\ 
  50 & 5 &  & 0.35 & 0.88(0.07) & 0.86(0.08) & 0.04(0.01) & 0.06(0.01) & 0.19(0.02) \\ 
  100 & 5 &  & 0.14 & 0.91(0.05) & 0.89(0.05) & 0.03(0.01) & 0.05(0.01) & 0.14(0.02) \\ 
  200 & 5 &  & 0 & 0.91(0.03) & 0.9(0.03) & 0.03(0.01) & 0.05(0.01) & 0.1(0.01) \\ 
  30 & 10 &  & 0.13 & 0.87(0.06) & 0.84(0.07) & 0.04(0.01) & 0.06(0.01) & 0.2(0.02) \\ 
  50 & 10 &  & 0.06 & 0.9(0.04) & 0.88(0.05) & 0.04(0.01) & 0.05(0.01) & 0.15(0.02) \\ 
  100 & 10 &  & 0 & 0.91(0.02) & 0.89(0.03) & 0.03(0.01) & 0.05(0.01) & 0.11(0.01) \\ 
  200 & 10 &  & 0 & 0.92(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
  30 & 30 &  & 0 & 0.9(0.03) & 0.88(0.03) & 0.04(0.01) & 0.05(0.01) & 0.16(0.02) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.13(0.01) \\ 
  100 & 30 &  & 0 & 0.91(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator MLR, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   MLR
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.17 & 0.83(0.09) & 0.8(0.1) & 0.06(0.02) & 0.08(0.01) & 0.18(0.03) \\ 
  50 & 5 &  & 0.15 & 0.88(0.05) & 0.86(0.06) & 0.05(0.01) & 0.07(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.01 & 0.9(0.03) & 0.89(0.04) & 0.04(0.01) & 0.05(0.01) & 0.12(0.02) \\ 
  200 & 5 &  & 0 & 0.91(0.02) & 0.89(0.02) & 0.04(0) & 0.05(0) & 0.1(0.01) \\ 
  30 & 10 &  & 0.06 & 0.87(0.05) & 0.85(0.06) & 0.05(0.01) & 0.06(0.01) & 0.17(0.03) \\ 
  50 & 10 &  & 0.01 & 0.9(0.03) & 0.88(0.04) & 0.04(0.01) & 0.05(0.01) & 0.13(0.02) \\ 
  100 & 10 &  & 0 & 0.91(0.02) & 0.89(0.03) & 0.04(0) & 0.05(0) & 0.1(0.01) \\ 
  200 & 10 &  & 0 & 0.91(0.01) & 0.9(0.02) & 0.04(0) & 0.04(0) & 0.09(0.01) \\ 
  30 & 30 &  & 0 & 0.9(0.02) & 0.89(0.03) & 0.04(0.01) & 0.05(0) & 0.15(0.02) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.9(0.02) & 0.04(0) & 0.04(0) & 0.12(0.02) \\ 
  100 & 30 &  & 0 & 0.91(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.1(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.09(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator MLR, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M12
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.38 & 0.81(0.1) & 0.78(0.12) & 0.05(0.02) & 0.07(0.01) & 0.19(0.02) \\ 
  50 & 5 &  & 0.39 & 0.88(0.07) & 0.86(0.08) & 0.03(0.01) & 0.06(0.01) & 0.15(0.02) \\ 
  100 & 5 &  & 0.21 & 0.91(0.04) & 0.89(0.05) & 0.03(0.01) & 0.05(0.01) & 0.11(0.01) \\ 
  200 & 5 &  & 0.01 & 0.91(0.03) & 0.9(0.03) & 0.03(0) & 0.05(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.26 & 0.88(0.06) & 0.86(0.07) & 0.04(0.01) & 0.06(0.01) & 0.17(0.02) \\ 
  50 & 10 &  & 0.09 & 0.9(0.04) & 0.88(0.04) & 0.03(0.01) & 0.05(0.01) & 0.13(0.01) \\ 
  100 & 10 &  & 0 & 0.91(0.03) & 0.9(0.03) & 0.03(0) & 0.04(0) & 0.09(0.01) \\ 
  200 & 10 &  & 0 & 0.92(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0 & 0.9(0.02) & 0.88(0.03) & 0.04(0) & 0.05(0) & 0.16(0.02) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.12(0.01) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator MLR, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   MLR
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.3 & 0.82(0.09) & 0.79(0.11) & 0.05(0.02) & 0.07(0.01) & 0.18(0.03) \\ 
  50 & 5 &  & 0.36 & 0.89(0.07) & 0.87(0.08) & 0.04(0.01) & 0.06(0.01) & 0.13(0.02) \\ 
  100 & 5 &  & 0.07 & 0.9(0.04) & 0.89(0.04) & 0.03(0.01) & 0.05(0.01) & 0.1(0.01) \\ 
  200 & 5 &  & 0 & 0.91(0.02) & 0.9(0.03) & 0.03(0) & 0.05(0.01) & 0.08(0.01) \\ 
  30 & 10 &  & 0.18 & 0.88(0.06) & 0.85(0.07) & 0.04(0.01) & 0.06(0.01) & 0.16(0.02) \\ 
  50 & 10 &  & 0.07 & 0.9(0.04) & 0.89(0.04) & 0.03(0.01) & 0.05(0.01) & 0.12(0.02) \\ 
  100 & 10 &  & 0 & 0.91(0.02) & 0.9(0.03) & 0.03(0) & 0.04(0) & 0.09(0.01) \\ 
  200 & 10 &  & 0 & 0.92(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.07(0.01) \\ 
  30 & 30 &  & 0 & 0.9(0.03) & 0.89(0.03) & 0.03(0.01) & 0.04(0) & 0.15(0.02) \\ 
  50 & 30 &  & 0 & 0.91(0.02) & 0.9(0.02) & 0.03(0) & 0.04(0) & 0.12(0.02) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.9(0.01) & 0.03(0) & 0.04(0) & 0.07(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator MLR, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M12
Estimator:   ULSMV 

===============================

Model:   M12
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 1 & 0.95(0.05) & 0.94(0.05) & 0.02(0.01) & 0.09(0.01) & 0.35(0.06) \\ 
  50 & 5 &  & 0.61 & 0.93(0.05) & 0.92(0.06) & 0.03(0.01) & 0.07(0.01) & 0.32(0.06) \\ 
  100 & 5 &  & 0.09 & 0.92(0.03) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.22(0.05) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.91(0.03) & 0.04(0.01) & 0.05(0.01) & 0.15(0.03) \\ 
  30 & 10 &  & 0.43 & 0.93(0.04) & 0.91(0.04) & 0.03(0.01) & 0.07(0.01) & 0.26(0.05) \\ 
  50 & 10 &  & 0.05 & 0.93(0.03) & 0.91(0.03) & 0.03(0.01) & 0.06(0.01) & 0.2(0.04) \\ 
  100 & 10 &  & 0 & 0.92(0.02) & 0.91(0.02) & 0.04(0.01) & 0.05(0.01) & 0.13(0.02) \\ 
  200 & 10 &  & 0 & 0.92(0.01) & 0.91(0.02) & 0.04(0) & 0.05(0) & 0.09(0.01) \\ 
  30 & 30 &  & 0.01 & 0.93(0.02) & 0.92(0.02) & 0.03(0.01) & 0.05(0.01) & 0.16(0.02) \\ 
  50 & 30 &  & 0 & 0.93(0.02) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.12(0.02) \\ 
  100 & 30 &  & 0 & 0.92(0.01) & 0.91(0.01) & 0.04(0) & 0.05(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0 & 0.92(0.01) & 0.91(0.01) & 0.04(0) & 0.05(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   ULSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.82 & 0.9(0.12) & 0.88(0.14) & 0.02(0.02) & 0.09(0.01) & 0.16(0.04) \\ 
  50 & 5 &  & 0.44 & 0.87(0.07) & 0.85(0.08) & 0.03(0.01) & 0.08(0.01) & 0.14(0.03) \\ 
  100 & 5 &  & 0.06 & 0.87(0.04) & 0.85(0.05) & 0.04(0.01) & 0.07(0.01) & 0.12(0.02) \\ 
  200 & 5 &  & 0 & 0.86(0.04) & 0.83(0.05) & 0.04(0.01) & 0.06(0.01) & 0.11(0.02) \\ 
  30 & 10 &  & 0.47 & 0.86(0.08) & 0.83(0.1) & 0.03(0.01) & 0.07(0.01) & 0.15(0.04) \\ 
  50 & 10 &  & 0.14 & 0.85(0.07) & 0.82(0.08) & 0.03(0.01) & 0.06(0.01) & 0.12(0.03) \\ 
  100 & 10 &  & 0 & 0.82(0.05) & 0.79(0.06) & 0.04(0.01) & 0.06(0.01) & 0.1(0.02) \\ 
  200 & 10 &  & 0 & 0.77(0.05) & 0.73(0.05) & 0.04(0) & 0.05(0.01) & 0.11(0.02) \\ 
  30 & 30 &  & 0.36 & 0.88(0.05) & 0.86(0.06) & 0.02(0.01) & 0.06(0.01) & 0.12(0.03) \\ 
  50 & 30 &  & 0 & 0.81(0.05) & 0.78(0.06) & 0.03(0) & 0.06(0) & 0.11(0.02) \\ 
  100 & 30 &  & 0 & 0.75(0.03) & 0.7(0.04) & 0.03(0) & 0.05(0) & 0.09(0.02) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator ULSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M12
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.95 & 0.92(0.08) & 0.9(0.09) & 0.02(0.01) & 0.09(0.01) & 0.21(0.04) \\ 
  50 & 5 &  & 0.76 & 0.92(0.06) & 0.91(0.07) & 0.02(0.01) & 0.07(0.01) & 0.16(0.02) \\ 
  100 & 5 &  & 0.3 & 0.93(0.04) & 0.92(0.04) & 0.03(0.01) & 0.06(0.01) & 0.11(0.01) \\ 
  200 & 5 &  & 0.02 & 0.93(0.02) & 0.92(0.03) & 0.03(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  30 & 10 &  & 0.84 & 0.92(0.05) & 0.91(0.06) & 0.02(0.01) & 0.07(0.01) & 0.16(0.02) \\ 
  50 & 10 &  & 0.38 & 0.93(0.03) & 0.91(0.04) & 0.02(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 10 &  & 0.02 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.93(0.02) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0.93 & 0.97(0.03) & 0.96(0.03) & 0.01(0.01) & 0.06(0.01) & 0.13(0.01) \\ 
  50 & 30 &  & 0.31 & 0.95(0.02) & 0.94(0.02) & 0.02(0) & 0.05(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.02(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.02(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   ULSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.93 & 0.9(0.1) & 0.88(0.12) & 0.02(0.01) & 0.11(0.01) & 0.14(0.03) \\ 
  50 & 5 &  & 0.66 & 0.89(0.08) & 0.87(0.09) & 0.03(0.01) & 0.09(0.01) & 0.11(0.02) \\ 
  100 & 5 &  & 0.17 & 0.89(0.05) & 0.87(0.06) & 0.03(0.01) & 0.07(0.01) & 0.09(0.01) \\ 
  200 & 5 &  & 0 & 0.89(0.03) & 0.87(0.04) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.89 & 0.91(0.08) & 0.89(0.1) & 0.02(0.01) & 0.08(0.01) & 0.12(0.02) \\ 
  50 & 10 &  & 0.48 & 0.89(0.06) & 0.87(0.07) & 0.02(0.01) & 0.07(0.01) & 0.1(0.02) \\ 
  100 & 10 &  & 0.02 & 0.88(0.04) & 0.85(0.05) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0 & 0.87(0.03) & 0.84(0.04) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
  30 & 30 &  & 1 & 1(0.02) & 1(0.02) & 0(0) & 0.06(0.01) & 0.1(0.02) \\ 
  50 & 30 &  & 0.93 & 0.97(0.04) & 0.96(0.04) & 0.01(0) & 0.06(0.01) & 0.08(0.01) \\ 
  100 & 30 &  & 0.01 & 0.9(0.03) & 0.88(0.04) & 0.02(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.86(0.03) & 0.84(0.03) & 0.02(0) & 0.05(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator ULSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M12
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.95 & 0.87(0.14) & 0.84(0.17) & 0.02(0.01) & 0.1(0.02) & 0.15(0.02) \\ 
  50 & 5 &  & 0.94 & 0.9(0.09) & 0.89(0.1) & 0.02(0.01) & 0.08(0.01) & 0.12(0.01) \\ 
  100 & 5 &  & 0.77 & 0.93(0.05) & 0.92(0.06) & 0.02(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0.36 & 0.94(0.03) & 0.93(0.03) & 0.02(0) & 0.06(0.01) & 0.06(0.01) \\ 
  30 & 10 &  & 0.99 & 0.95(0.07) & 0.94(0.09) & 0.01(0.01) & 0.07(0.01) & 0.13(0.01) \\ 
  50 & 10 &  & 0.94 & 0.93(0.06) & 0.92(0.07) & 0.01(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.66 & 0.94(0.04) & 0.93(0.04) & 0.01(0.01) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0.13 & 0.94(0.02) & 0.93(0.02) & 0.02(0) & 0.05(0) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.06(0.01) & 0.12(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.05(0) & 0.09(0.01) \\ 
  100 & 30 &  & 0.99 & 0.98(0.02) & 0.98(0.02) & 0(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0.22 & 0.96(0.01) & 0.95(0.02) & 0.01(0) & 0.05(0) & 0.05(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   ULSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.99 & 0.89(0.12) & 0.87(0.14) & 0.02(0.01) & 0.12(0.02) & 0.12(0.02) \\ 
  50 & 5 &  & 0.93 & 0.91(0.09) & 0.89(0.1) & 0.02(0.01) & 0.09(0.01) & 0.09(0.01) \\ 
  100 & 5 &  & 0.57 & 0.9(0.06) & 0.89(0.07) & 0.02(0.01) & 0.08(0.01) & 0.07(0.01) \\ 
  200 & 5 &  & 0.11 & 0.91(0.04) & 0.89(0.04) & 0.02(0) & 0.06(0.01) & 0.05(0.01) \\ 
  30 & 10 &  & 0.99 & 0.97(0.07) & 0.96(0.08) & 0(0.01) & 0.09(0.01) & 0.11(0.02) \\ 
  50 & 10 &  & 0.94 & 0.93(0.07) & 0.92(0.08) & 0.01(0.01) & 0.08(0.01) & 0.08(0.01) \\ 
  100 & 10 &  & 0.48 & 0.91(0.05) & 0.9(0.06) & 0.02(0.01) & 0.06(0.01) & 0.06(0.01) \\ 
  200 & 10 &  & 0.02 & 0.91(0.03) & 0.89(0.04) & 0.02(0) & 0.06(0.01) & 0.05(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.08(0.01) & 0.1(0.01) \\ 
  50 & 30 &  & 1 & 1(0) & 1(0) & 0(0) & 0.07(0.01) & 0.08(0.01) \\ 
  100 & 30 &  & 1 & 0.99(0.02) & 0.99(0.02) & 0(0) & 0.06(0.01) & 0.06(0.01) \\ 
  200 & 30 &  & 0.32 & 0.94(0.03) & 0.93(0.03) & 0.01(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator ULSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}


 ===============================

Model:   M12
Estimator:   WLSMV 

===============================

Model:   M12
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.94 & 0.94(0.05) & 0.93(0.06) & 0.02(0.01) & 0.09(0.01) & 0.35(0.06) \\ 
  50 & 5 &  & 0.68 & 0.93(0.05) & 0.92(0.06) & 0.03(0.01) & 0.07(0.01) & 0.3(0.05) \\ 
  100 & 5 &  & 0.2 & 0.93(0.03) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.22(0.04) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.05(0.01) & 0.15(0.03) \\ 
  30 & 10 &  & 0.62 & 0.93(0.04) & 0.92(0.05) & 0.03(0.01) & 0.07(0.01) & 0.25(0.05) \\ 
  50 & 10 &  & 0.15 & 0.93(0.03) & 0.92(0.03) & 0.03(0.01) & 0.06(0.01) & 0.19(0.03) \\ 
  100 & 10 &  & 0 & 0.93(0.02) & 0.92(0.02) & 0.03(0) & 0.05(0.01) & 0.13(0.02) \\ 
  200 & 10 &  & 0 & 0.93(0.01) & 0.92(0.02) & 0.03(0) & 0.05(0) & 0.09(0.01) \\ 
  30 & 30 &  & 0 & 0.93(0.02) & 0.92(0.02) & 0.03(0) & 0.05(0.01) & 0.16(0.02) \\ 
  50 & 30 &  & 0 & 0.93(0.02) & 0.92(0.02) & 0.03(0) & 0.05(0) & 0.12(0.01) \\ 
  100 & 30 &  & 0 & 0.93(0.01) & 0.92(0.01) & 0.03(0) & 0.05(0) & 0.09(0.01) \\ 
  200 & 30 &  & 0 & 0.93(0.01) & 0.91(0.01) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   WLSMV
ICC Obs. Var.:   0.1
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.79 & 0.91(0.09) & 0.89(0.1) & 0.03(0.02) & 0.09(0.01) & 0.2(0.06) \\ 
  50 & 5 &  & 0.22 & 0.89(0.04) & 0.87(0.05) & 0.04(0.01) & 0.08(0.01) & 0.16(0.03) \\ 
  100 & 5 &  & 0.02 & 0.9(0.04) & 0.88(0.04) & 0.04(0.01) & 0.06(0.01) & 0.12(0.02) \\ 
  200 & 5 &  & 0 & 0.88(0.03) & 0.86(0.03) & 0.04(0) & 0.06(0.01) & 0.11(0.02) \\ 
  30 & 10 &  & 0.34 & 0.91(0.06) & 0.89(0.07) & 0.03(0.01) & 0.07(0.01) & 0.16(0.04) \\ 
  50 & 10 &  & 0.03 & 0.89(0.04) & 0.87(0.05) & 0.04(0.01) & 0.06(0.01) & 0.12(0.02) \\ 
  100 & 10 &  & 0 & 0.87(0.04) & 0.85(0.04) & 0.04(0.01) & 0.06(0.01) & 0.1(0.02) \\ 
  200 & 10 &  & 0 & 0.87(0.02) & 0.84(0.03) & 0.04(0) & 0.05(0) & 0.1(0.02) \\ 
  30 & 30 &  & 0.03 & 0.92(0.03) & 0.91(0.03) & 0.03(0.01) & 0.06(0.01) & 0.13(0.02) \\ 
  50 & 30 &  & 0 & 0.9(0.02) & 0.88(0.03) & 0.03(0) & 0.05(0) & 0.11(0.02) \\ 
  100 & 30 &  & 0 & 0.87(0.02) & 0.84(0.03) & 0.04(0) & 0.05(0) & 0.1(0.01) \\ 
  200 & 30 &  & 0 & 0.86(0.02) & 0.83(0.02) & 0.04(0) & 0.05(0) & 0.09(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator WLSMV, ICC_O 0.1 and ICC_L 0.5} 
\end{table}

===============================

Model:   M12
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.9 & 0.91(0.07) & 0.9(0.08) & 0.03(0.01) & 0.09(0.01) & 0.21(0.04) \\ 
  50 & 5 &  & 0.63 & 0.93(0.05) & 0.91(0.06) & 0.03(0.01) & 0.07(0.01) & 0.16(0.02) \\ 
  100 & 5 &  & 0.21 & 0.93(0.04) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.11(0.01) \\ 
  200 & 5 &  & 0.01 & 0.93(0.02) & 0.92(0.03) & 0.03(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  30 & 10 &  & 0.57 & 0.93(0.04) & 0.91(0.05) & 0.03(0.01) & 0.07(0.01) & 0.15(0.02) \\ 
  50 & 10 &  & 0.16 & 0.93(0.03) & 0.91(0.04) & 0.03(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  100 & 10 &  & 0.01 & 0.93(0.02) & 0.92(0.02) & 0.03(0) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.92(0.02) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
  30 & 30 &  & 0.14 & 0.95(0.02) & 0.94(0.02) & 0.02(0) & 0.06(0.01) & 0.13(0.01) \\ 
  50 & 30 &  & 0 & 0.94(0.01) & 0.93(0.02) & 0.03(0) & 0.05(0) & 0.1(0.01) \\ 
  100 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.03(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.92(0.01) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   WLSMV
ICC Obs. Var.:   0.3
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.81 & 0.91(0.07) & 0.89(0.08) & 0.03(0.01) & 0.09(0.01) & 0.16(0.03) \\ 
  50 & 5 &  & 0.51 & 0.91(0.05) & 0.89(0.06) & 0.03(0.01) & 0.08(0.01) & 0.13(0.02) \\ 
  100 & 5 &  & 0.06 & 0.91(0.03) & 0.9(0.04) & 0.03(0.01) & 0.06(0.01) & 0.09(0.01) \\ 
  200 & 5 &  & 0 & 0.91(0.02) & 0.9(0.03) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  30 & 10 &  & 0.53 & 0.92(0.04) & 0.91(0.05) & 0.03(0.01) & 0.07(0.01) & 0.14(0.02) \\ 
  50 & 10 &  & 0.11 & 0.92(0.03) & 0.9(0.04) & 0.03(0.01) & 0.06(0.01) & 0.11(0.02) \\ 
  100 & 10 &  & 0 & 0.91(0.03) & 0.9(0.03) & 0.03(0) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 10 &  & 0 & 0.91(0.02) & 0.89(0.02) & 0.04(0) & 0.05(0) & 0.07(0.01) \\ 
  30 & 30 &  & 0.74 & 0.97(0.02) & 0.96(0.02) & 0.01(0.01) & 0.06(0.01) & 0.12(0.02) \\ 
  50 & 30 &  & 0.04 & 0.95(0.02) & 0.94(0.02) & 0.02(0) & 0.05(0.01) & 0.09(0.01) \\ 
  100 & 30 &  & 0 & 0.93(0.01) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.08(0.01) \\ 
  200 & 30 &  & 0 & 0.91(0.01) & 0.9(0.01) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator WLSMV, ICC_O 0.3 and ICC_L 0.5} 
\end{table}

===============================

Model:   M12
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.1 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.8 & 0.91(0.07) & 0.89(0.08) & 0.03(0.02) & 0.09(0.01) & 0.15(0.02) \\ 
  50 & 5 &  & 0.7 & 0.92(0.05) & 0.91(0.06) & 0.03(0.01) & 0.08(0.01) & 0.12(0.01) \\ 
  100 & 5 &  & 0.27 & 0.93(0.03) & 0.92(0.04) & 0.03(0.01) & 0.06(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.06(0.01) \\ 
  30 & 10 &  & 0.83 & 0.95(0.04) & 0.94(0.04) & 0.02(0.01) & 0.07(0.01) & 0.13(0.01) \\ 
  50 & 10 &  & 0.29 & 0.94(0.03) & 0.92(0.03) & 0.03(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0 & 0.94(0.02) & 0.93(0.02) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0 & 0.94(0.01) & 0.93(0.02) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
  30 & 30 &  & 0.98 & 0.99(0.02) & 0.99(0.02) & 0(0.01) & 0.06(0.01) & 0.12(0.01) \\ 
  50 & 30 &  & 0.41 & 0.97(0.01) & 0.96(0.02) & 0.01(0) & 0.05(0.01) & 0.09(0.01) \\ 
  100 & 30 &  & 0 & 0.95(0.01) & 0.94(0.01) & 0.02(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.03(0) & 0.05(0) & 0.05(0) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.1} 
\end{table}

===============================

Model:   M12
Estimator:   WLSMV
ICC Obs. Var.:   0.5
ICC Lat. Var.:   0.5 
% latex table generated in R 3.5.2 by xtable 1.8-3 package
% Tue May 07 23:52:27 2019
\begin{table}[ht]
\centering
\begin{tabular}{lllllllll}
  \toprule
N2 & N1 & Num\_Rep & chi2 & CFI & TLI & RMSEA & SRMRW & SRMRB \\ 
  \midrule
30 & 5 &  & 0.87 & 0.92(0.06) & 0.9(0.07) & 0.03(0.01) & 0.09(0.01) & 0.14(0.02) \\ 
  50 & 5 &  & 0.65 & 0.92(0.05) & 0.91(0.06) & 0.03(0.01) & 0.08(0.01) & 0.11(0.01) \\ 
  100 & 5 &  & 0.15 & 0.92(0.03) & 0.91(0.04) & 0.03(0.01) & 0.07(0.01) & 0.08(0.01) \\ 
  200 & 5 &  & 0 & 0.92(0.02) & 0.91(0.03) & 0.03(0) & 0.06(0.01) & 0.06(0.01) \\ 
  30 & 10 &  & 0.87 & 0.95(0.04) & 0.95(0.05) & 0.02(0.01) & 0.07(0.01) & 0.13(0.02) \\ 
  50 & 10 &  & 0.35 & 0.94(0.03) & 0.93(0.04) & 0.03(0.01) & 0.06(0.01) & 0.1(0.01) \\ 
  100 & 10 &  & 0.01 & 0.93(0.02) & 0.92(0.03) & 0.03(0) & 0.06(0.01) & 0.07(0.01) \\ 
  200 & 10 &  & 0 & 0.93(0.02) & 0.91(0.02) & 0.03(0) & 0.05(0) & 0.06(0.01) \\ 
  30 & 30 &  & 1 & 1(0) & 1(0.01) & 0(0) & 0.06(0.01) & 0.12(0.01) \\ 
  50 & 30 &  & 0.85 & 0.98(0.02) & 0.98(0.02) & 0.01(0) & 0.06(0.01) & 0.09(0.01) \\ 
  100 & 30 &  & 0 & 0.95(0.01) & 0.94(0.01) & 0.02(0) & 0.05(0) & 0.07(0.01) \\ 
  200 & 30 &  & 0 & 0.94(0.01) & 0.93(0.01) & 0.03(0) & 0.05(0) & 0.05(0.01) \\ 
   \bottomrule
\end{tabular}
\caption{Summary of Fit Statistics Across Conditions: Model M12, Estimator WLSMV, ICC_O 0.5 and ICC_L 0.5} 
\end{table}

sessionInfo()
R version 3.5.2 (2018-12-20)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 17134)

Matrix products: default

locale:
[1] LC_COLLATE=English_United States.1252 
[2] LC_CTYPE=English_United States.1252   
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C                          
[5] LC_TIME=English_United States.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] xtable_1.8-3     kableExtra_1.0.1 forcats_0.3.0    stringr_1.3.1   
 [5] dplyr_0.8.0.1    purrr_0.2.5      readr_1.3.1      tidyr_0.8.2     
 [9] tibble_2.0.1     ggplot2_3.1.0    tidyverse_1.2.1 

loaded via a namespace (and not attached):
 [1] tidyselect_0.2.5  xfun_0.4          haven_2.0.0      
 [4] lattice_0.20-38   colorspace_1.4-0  generics_0.0.2   
 [7] htmltools_0.3.6   viridisLite_0.3.0 yaml_2.2.0       
[10] rlang_0.3.1       pillar_1.3.1      glue_1.3.0       
[13] withr_2.1.2       modelr_0.1.2      readxl_1.2.0     
[16] plyr_1.8.4        munsell_0.5.0     gtable_0.2.0     
[19] workflowr_1.3.0   cellranger_1.1.0  rvest_0.3.2      
[22] evaluate_0.12     knitr_1.21        highr_0.7        
[25] broom_0.5.1       Rcpp_1.0.0        scales_1.0.0     
[28] backports_1.1.3   formatR_1.5       webshot_0.5.1    
[31] jsonlite_1.6      fs_1.2.6          hms_0.4.2        
[34] digest_0.6.18     stringi_1.2.4     grid_3.5.2       
[37] rprojroot_1.3-2   cli_1.0.1         tools_3.5.2      
[40] magrittr_1.5      lazyeval_0.2.1    crayon_1.3.4     
[43] whisker_0.3-2     pkgconfig_2.0.2   xml2_1.2.0       
[46] lubridate_1.7.4   assertthat_0.2.0  rmarkdown_1.11   
[49] httr_1.4.0        rstudioapi_0.9.0  R6_2.3.0         
[52] nlme_3.1-137      git2r_0.24.0      compiler_3.5.2