简体   繁体   English

SEMinR 包中的函数 multi_items 存在问题

[英]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.在 SEMinR 包文档中,似乎没有任何解决此问题的方法。

Here is the script for one of those constructs :这是其中一种构造的脚本:

composite("LMX", multi_items("LMX", 1:6)) Items 3 and 5 should be deleted. composite("LMX", multi_items("LMX", 1:6))项目 3 和 5 应该被删除。 How do I rewrite the code for multi_items?如何重写 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...应该管用...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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