Skip to content

Commit

Permalink
Update upgrade file for DoE changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JTPetter committed Apr 15, 2024
1 parent 9b0bfd1 commit 78bcd44
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions inst/Upgrades.qml
Original file line number Diff line number Diff line change
Expand Up @@ -1318,4 +1318,77 @@ Upgrades
ChangeRename { from: "reportDate"; to: "reportDateText"}
ChangeRename { from: "reportReportedBy"; to: "reportPerformedByText"}
}

// DoE Analysis
Upgrade
{
functionName: "doeAnalysis"
fromVersion: "0.18.3"
toVersion: "0.19.0"

// Split dependent variable
ChangeRename
{
from: "dependent"
to: "dependentFactorial"
condition: function(options)
{
return options["designType"] == "factorialDesign"
}
}

ChangeRename
{
from: "dependent"
to: "dependentResponseSurface"
condition: function(options)
{
return options["designType"] == "responseSurfaceDesign"
}
}

// Split discrete factor variable
ChangeRename
{
from: "fixedFactors"
to: "fixedFactorsFactorial"
condition: function(options)
{
return options["designType"] == "factorialDesign"
}
}

ChangeRename
{
from: "fixedFactors"
to: "fixedFactorsResponseSurface"
condition: function(options)
{
return options["designType"] == "responseSurfaceDesign"
}
}

// Split continuous factor variable
ChangeRename
{
from: "continuousFactors"
to: "continuousFactorsFactorial"
condition: function(options)
{
return options["designType"] == "factorialDesign"
}
}

ChangeRename
{
from: "continuousFactors"
to: "continuousFactorsResponseSurface"
condition: function(options)
{
return options["designType"] == "responseSurfaceDesign"
}
}

ChangeRename { from: "continuousPredictors"; to: "continuousPredictorsPlots"}
}
}

0 comments on commit 78bcd44

Please sign in to comment.