Как добавить центральные точки в дизайн эксперимента? - PullRequest
0 голосов
/ 18 октября 2019

Я хочу добавить центр очков к моему эксперименту , что на самом деле:

experiment<- FrF2(nruns = NULL, 
                  nfactors = 6, 
                  factor.names = c("T", "rH", "p", "H2", "CO", "C2H4"),
                  default.levels = c("low", "high"),
                  resolution = 6,
                  # ncenter = 1,
                  randomize = TRUE
)

Когда я выполняю

experiment2<- FrF2(nruns = NULL, 
                  nfactors = 6, 
                  factor.names = c("T", "rH", "p", "H2", "CO", "C2H4"),
                  default.levels = c("low", "high"),
                  resolution = 6,
                  ncenter = 1,
                  randomize = TRUE
)

Iполучать

Error in qua.design(design, quantitative = "all") : 
  some inherently qualitative factors were wrongly declared quantitative
In addition: Warning message:
In FrF2(nruns = NULL, nfactors = 6, factor.names = c("T", "rH",  :
  running all center point runs together is usually not a good idea.

Когда я пытаюсь add.center(experiment, 1, distribute=NULL) на experiment, я получаю

Error in qua.design(design, quantitative = "all") : 
  some inherently qualitative factors were wrongly declared quantitative

Как я могу добавить центральные точки? Я не понимаю, почему это не выполнимо.

В документации написано:

ncenter   number of center points per block; 
          ncenter > 0 is permitted, 
          if all factors are quantitative 
          and the design is not a split-plot design

ncenter больше 0, сплит-дизайн отсутствует, поэтому проблема должнабыть вызвано факторами. Как мне принять это во внимание?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...