What does “argument to 'which' is not logical” mean in FactoMineR MCA?

前端 未结 4 473
后悔当初
后悔当初 2021-01-04 10:40

I\'m trying to run an MCA on a datatable using FactoMineR. It contains only 0/1 numerical columns, and its size is 200.000 * 20.

require(FactoMineR)
result &         


        
4条回答
  •  别那么骄傲
    2021-01-04 10:57

    It's difficult to tell without further input, but what you can do is:

    • Find the function where the error occurred (via traceback()),
    • Set a breakpoint and debug it:

      trace(tab.disjonctif, browser)
      

    I did the following (offline) to find the name of tab.disjonctif:

    • Found the package on the CRAN mirror on GitHub
    • Search for that particular expression that gives the error

提交回复
热议问题