I'm guessing that when a participant has both positive and negatively converged edges between the same two nodes, that means that both were observed at different times during the time series. Is that correct? Is there anything else this signifies, or that we might discuss about this?
Also for those that don't converge, is it worth trying to tweak the code to make them converge? Increasing the number of iterations.
Chat GPT gave us this: # Load previous output if saved
load("last_known_convergence.RData")
# Modify or pass it into a fresh call
gimme(data = your_data,
out_name = "retry_model",
group_paths = last_model$group_paths, # reuse successful paths
ind_paths = last_model$ind_paths,
max_iter = 1000, # possibly increase
conv_crit = 0.0001 # potentially tighten convergence
)
I'm most interested if this might help us get more models for the CS-GIMME which loses 4/30 participants to having no model at all.