Hello @tokiwon,
Welcome in the Community !
There might be an option for the case you describe : when clicking on the red triangle in the "Custom Design" platform, you can change the value of the Sphere Radius : Custom Design Options (jmp.com)
In your case (with 2 continuous factors and 1 categorical factor), when setting the sphere radius to 1,414 (the value for rotatable CCD with 2 continuous factors), I get a rotatable design regarding the two continuous factors :
And here is the script to create such design :
DOE(
Custom Design,
{Add Response( Maximize, "Y", ., ., . ),
Add Factor( Continuous, -1, 1, "X1", 0 ),
Add Factor( Continuous, -1, 1, "X2", 0 ),
Add Factor( Categorical, {"L1", "L2"}, "X3", 0 ), Set Random Seed( 913807339 ),
Number of Starts( 32801 ), Add Term( {1, 0} ), Add Term( {1, 1} ),
Add Term( {2, 1} ), Add Term( {3, 1} ), Add Term( {1, 2} ),
Add Term( {1, 1}, {2, 1} ), Add Term( {2, 2} ), Add Term( {1, 1}, {3, 1} ),
Add Term( {2, 1}, {3, 1} ), Add Term( {1, 1}, {2, 1}, {3, 1} ),
Center Points( 2 ), Set Sample Size( 16 ),
Optimality Criterion( "Make I-Optimal Design" ), Sphere Radius( 1.414 ),
Simulate Responses( 0 ), Save X Matrix( 0 ), Make Design,
Set Run Order( Randomize ), Make Table}
)
I hope this answer will help you,
Victor GUILLER
"It is not unusual for a well-designed experiment to analyze itself" (Box, Hunter and Hunter)