- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 poLCA 包进行潜在聚类分析。
我的数据框可以在这里下载为 rda 文件并将其保存到您的工作目录中: https://drive.google.com/open?id=1eGJprHaXdoVhKNlGD5VcsoND7iyIoNwJ
load(file = "QuestionData.rda")
当我尝试运行 LCA 时:
library("MPsychoR")
library("poLCA")
formula <- cbind(Question1, Question2, Question3, Question4) ~ 1
OneClass <- poLCA(formula, data = Output, nclass = 1, nrep = 3)
TwoClass <- poLCA(formula, data = Output, nclass = 2, nrep = 3)
我收到以下错误:
Error in dimnames(x) <- dn :
length of 'dimnames' [2] not equal to array extent
通过阅读和查看遇到此错误的其他人,似乎是因为他们的数据框中的列数与他们输入函数的列名数之间存在差异......但是我的数据框中有 4 列,并且有 4 列添加到 poLCA 函数中。谁能帮助我理解为什么我会遇到此错误?
如果你不想下载我的数据,我的数据框的一般结构如下:
Question1 <- c('Sufficient', 'Problematic', 'Problematic', 'Sufficient',
'Excellent')
Question2 <- c('Insufficient', 'Insufficient', 'Insufficient', 'Sufficient',
'Sufficient')
Question3 <- c('Sufficient', 'Sufficient', 'Insufficient', 'Sufficient',
'Sufficient')
Question4 <- c('Problematic', 'Insufficient', 'Problematic', 'Problematic',
'Excellent')
Question5 <- c('Insufficient', 'Sufficient', 'Sufficient', 'Exceptional',
'Exceptional')
DF <- data.frame(Participants, Question1, Question2, Question3, Question4,
Question5)
DF$Question1 <- factor(DF$Question1, levels = c("Problematic",
"Insufficient", "Sufficient", "Excellent"), ordered=TRUE)
DF$Question2 <- factor(DF$Question2, levels = c("Problematic",
"Insufficient", "Sufficient", "Excellent"), ordered=TRUE)
DF$Question3 <- factor(DF$Question3, levels = c("Problematic",
"Insufficient", "Sufficient", "Excellent"), ordered=TRUE)
DF$Question4 <- factor(DF$Question4, levels = c("Problematic",
"Insufficient", "Sufficient", "Excellent"), ordered=TRUE)
DF$Question5 <- factor(DF$Question5, levels = c("Problematic",
"Insufficient", "Sufficient", "Excellent", "Exceptional"), ordered=TRUE)
最佳答案
每个响应变量都有不同的级别:
summary(Output)
Question1 Question2 Question3 Question4
Problematic :150 Problematic : 57 Problematic :181 Problematic :456
Insufficient:211 Insufficient:157 Insufficient:320 Insufficient :130
Sufficient :238 Sufficient :692 Sufficient :405 Sufficient : 48
Excellent :307 Excellent : 0 Excellent :272
ExcellentPlus: 0
如果我没看错(对你的数据不太熟悉),你可以让它们具有相同的级别:
NewOutput = Output
for(i in 1:ncol(NewOutput)){
NewOutput[,i] = factor(as.character(Output[,i]),order=TRUE,
levels=c("Problematic","Insufficient","Sufficient","Excellent"))
}
poLCA(cbind(Question1,Question2,Question3,Question4)~1,data=NewOutput,nclass=1)
我从你的因素中省略了“ExcellentPlus”,因为它在你的示例数据中找不到。
关于r - 聚类分析,dimnames(x) <- dn : length of 'dimnames' [2] not equal to array extent 中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59506814/
extent 是用来添加新数据的吗?什么是 segment 又是如何重新发布到 extent 的? 最佳答案 简而言之,每个非分区表、索引、表分区等都有 1 个段 来保存其数据。每个段由一个或多个范围
我是 D3 的新手。我刚开始从 csv 文件创建散点图。但是,我发现 d3.extent 给出了错误的范围,如下所述。我不知道我做错了什么。 数据(在 Python 中创建的 csv 格式)具有以下范
我正在尝试了解 jquery 扩展方法,根据 API documentation The merge performed by $.extend() is not recursive by defau
我已经通过使用绘图工具成功创建了一个 esri.geometry.Geometry.Extent 对象。在我的 addToMap 函数中,它是 onDrawEnd 事件的回调,我想提取框的四个 Ang
我正在编写一个基于 Mike Bostocks 示例的 d3 小部件 http://bl.ocks.org/mbostock/1667367因此,我尝试使用预定义日期设置画笔范围,但范围矩形不适用于这
我想在 GUI 中放置一些文本,我想知道 'text' 类型的 uicontrol 需要的确切大小! 我发现有几个线程解释说这可以使用包含相同文本的 'text' 对象的 'Extent' 属性来完成
我首先使用 EF6 代码来创建我的数据库。昨晚一切正常,现在当我运行 update-database 命令时,出现以下异常: PM> update-database Specify the '-Ver
我正在尝试使用 std::extent 获取二维数组的第二维,但输出为 0 . #include #include int32_t main(int32_t argc, char *argv[])
在此示例中,我在动态设置 Y 比例时遇到问题。如果有人可以提供帮助,我会很高兴!我能够完美地获得 X 轴设置,但我找不到如何引用 Y 数据来定义轴的范围。现在我的比例从-2到500,代码中不起作用的部
尝试在 Windbg 中使用 !heap 扩展来调查转储时,出现以下错误: 0:000> !heap -s -v -a SEGMENT HEAP ERROR: failed to initialize
我读了here Common Lisp 中的动态范围声明“允许实现忽略”,我想知道它是否在 CLISP 实现中实际上被忽略了。 我已尝试使用以下代码进行测试: (let ((b (cons 1 2))
说我有 #include using intArray3D = boost::multi_array; 我想创建一堆具有相同形状的 intArray3D: auto my_shape = boost
我的 config.php 文件中有 $config['sess_expiration'] = 7200;,这意味着该 session 持续 2 小时。 默认情况下, session 是在用户登录时创
当我尝试将屏幕截图添加到 klov 报告时,会捕获此异常。 Servlet.service() for servlet [dispatcherServlet] in context with path
所以我的“ View ”程序集中有这个 xaml 代码: 在“view-model”组件中,我将一些数据加载到 Scat
我有一个散点图,它使用约束松弛来消除它绘制的点的标签冲突 ( Plunker here )。问题是,当我放松约束时,这会导致点标签和 x 轴标签之间发生冲突。轴是使用 d3.extent 和 d3.s
我有一个看起来像这样的对象, { "1420165140": 172.52, "1420254360": 63.78, "1420341900": 141.55, "1
我想在 Extent 报告中的 Selenium 测试的每个步骤后记录评论。因此,当某个步骤抛出异常时,我想捕获堆栈跟踪并将其打印在 Extent Reports 上。我在网上找不到任何帮助。有没有人
gnuc++ 4.8.2 extent实现如下: /// extent template struct extent: public integral_constant {static const i
在 openlayers 3 应用程序中,我能够检索边界范围并适合 View 。但是我现在想通过使用边界范围来创建要素/多边形。 let boundingExtent = ol.extent.
我是一名优秀的程序员,十分优秀!