简体   繁体   中英

Issue with function multi_items from package SEMinR

I have a little problem. I have some indicators that do not load enough on their constructs and I would like to delete them. In the SEMinR package documentation, there doesn't seem any solution to this issue.

Here is the script for one of those constructs :

composite("LMX", multi_items("LMX", 1:6)) Items 3 and 5 should be deleted. How do I rewrite the code for multi_items?

I got you want to delete some indicators from measurement model. Usually the idea is to set a new formula/model, and run the analysis (again)... So, replacing that part of the code with:

composite("LMX", multi_items("LMX", c(1,2,4,6))

should work...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM