Difference between revisions of "DOX Tools"


(Recommendations)
(Recommendations)
Line 38: Line 38:
 
[[wikipedia:SPSS|SPSS]]
 
[[wikipedia:SPSS|SPSS]]
 
</td>
 
</td>
<td>[http://www.eviews.com/help/helpintro.html EViews Help]<br>[https://www.maplesoft.com/support/helpJP/Maple/view.aspx?path=NAG/g04 Maple Help]<br>[https://support.minitab.com/en-us/minitab/18/getting-started/designing-an-experiment/ Minitab Support]<br>[https://reference.wolfram.com/language/guide/Statistics.html Statistical Data Analysis]<br>[https://www.mathworks.com/help/stats/design-of-experiments-1.html Mathworks Documentation]<br>Search Google!</td>
+
<td>[http://www.eviews.com/help/helpintro.html EViews Help]<br>[https://www.maplesoft.com/support/helpJP/Maple/view.aspx?path=NAG/g04 Maple Help]<br>[https://support.minitab.com/en-us/minitab/18/getting-started/designing-an-experiment/ Minitab Support]<br>[https://reference.wolfram.com/language/guide/Statistics.html Statistical Data Analysis]<br>[https://www.mathworks.com/help/stats/design-of-experiments-1.html Mathworks Documentation]<br>[https://www.ibm.com/products/spss-statistics/support SPSS Help]</td>
 
</tr>
 
</tr>
 
</table>
 
</table>

Revision as of 01:14, 19 October 2019

H. Kemal Ilter
October 19, 2019


The design of experiments (DOE, DOX, or experimental design) is the design of any task that aims to describe or explain the variation of information under conditions that are hypothesized to reflect the variation[1]. Montgomery specifies [2] experimental design is a tool for engineers and scientists to use for product design and development as well as process development and improvement.

Statistical software are specialized computer programs for analysis in statistics. In general, statistical software is needed to calculate necessary numerical values when you analyze the subject in DOX. There are various statistical software tools[3] you can use in your study. Some authors prefer to use open-source, public domain, or freeware tools in their DOX books while others use proprietary software or add-ons.

Recommendations

You can see couple of products in below table which I prefer to use in my studies.

Open Source Help

GNU Octave
gretl
R
SciPy

GNU Octave Wiki
Gretl User's Guide
R packages for DOX
DOX packages for Python
Proprietary Help

EViews
Maple
Minitab
Mathematica
MATLAB
SPSS

EViews Help
Maple Help
Minitab Support
Statistical Data Analysis
Mathworks Documentation
SPSS Help

An R Example

Example from Montgomery[2], p.25.

An engineer is studying the formulation of a Portland cement mortar. He has added a polymer latex emulsion during mixing to determine if this impacts the curing time and tension bond strength of the mortar. The experimenter prepared 10 samples of the original formulation and 10 samples of the modified formulation.

Mont-1.png

Figure: Screenshot of the Table 2.1. in Montgomery's book[2], p.26.

> t.test(y1,y2,var.equal=TRUE)

	Two Sample t-test

data:  y1 and y2
t = -2.1869, df = 18, p-value = 0.0422
alternative hypothesis: true difference
                        in means is not equal to 0
95 percent confidence interval:
 -0.54507339 -0.01092661
sample estimates:
mean of x mean of y 
   16.764    17.042 
> t.test(y1,y2)

	Welch Two Sample t-test

data:  y1 and y2
t = -2.1869, df = 17.025, p-value = 0.043
alternative hypothesis: true difference
                        in means is not equal to 0
95 percent confidence interval:
 -0.546174139 -0.009825861
sample estimates:
mean of x mean of y 
   16.764    17.042 
Mont-2.png

Figure: Dot diagram, created with R.

Mont-3.png

Figure: Histogram, created with R.

Mont-4.png

Figure: Box plots, created with R.

Mont-5.png

Figure: The normal density function, created with R.

Appendix: R Code



References

  1. Wikipedia. 2019. WikipediA: the Free Encyclopedia. Retrieved from wikipedia:Design of experiments.
  2. 2.0 2.1 2.2 Douglas C. Montgomery. 2013. Design and Analysis of Experiments (8th. ed.). Wiley, New York, NY.
  3. Wikipedia. 2019. WikipediA: the Free Encyclopedia. Retrieved from wikipedia:List of statistical software.