我有一张有 80 个变量、512 个观察值的表
并且所有值都是数字
我想用我的表(类:数据集)作为数据集进行因子分析。
仍然是现在,我正在使用这个表达式来做到这一点
factoran(double(table),m)
我想使用这样的带有 datasetfun 的表达式来保存表信息。
datasetfun(@(x) factoran(x,m), table, 'datasetoutput', true)
但它不工作。
Error using factoran (line 133)
X must have more than one row (observation) and more than one column (variable).
Error in @(x)factoran(x,3)
Error in dataset/datasetfun (line 101)
怎么做?