OApackage


NameOApackage JSON
Version 2.7.13 PyPI version JSON
download
home_pagehttp://www.pietereendebak.nl/oapackage/index.html
SummaryPackage to generate and analyse orthogonal arrays, conference designs and optimal designs
upload_time2023-11-06 09:13:55
maintainer
docs_urlNone
authorPieter Eendebak
requires_python
licenseBSD
keywords orthogonal arrays design of experiments conference designs isomorphism testing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Orthogonal Array Package
========================

The Orthogonal Array package contains functionality to generate and analyse orthogonal arrays, optimal designs and conference designs.
Features include generation of complete series of orthogonal arrays,
reduction of arrays to normal form and calculation of properties such as the strength or D-efficiency of an array.
For more information about the package see the
documentation at [oapackage.readthedocs.io](https://oapackage.readthedocs.io/en/latest/). A large collection of results generated
with the package can be found at <http://pietereendebak.nl/oapackage/>.

Usage
-------

The package can be used from Python:
``` python
>>> import oapackage
>>> al=oapackage.exampleArray(0)
>>> al.showarraycompact()
00
00
01
01
10
10
11
11
>>> print('D-efficiency %f, rank %d' % (al.Defficiency(), al.rank()) )
D-efficiency 1.000000, rank 2
>>> print('Generalized wordlength pattern: %s' % str(al.GWLP()))
Generalized wordlength pattern: (1.0, 0.0, 0.0)
```

For more examples see the Jupyter notebooks in the
[docs/examples](docs/examples/).

Acknowledgements
----------------

If you use this code or any of the results, please cite this program as follows:

* [OApackage: A Python package for generation and analysis of orthogonal arrays, optimal designs and conference designs](https://doi.org/10.21105/joss.01097), P.T. Eendebak, A.R. Vazquez, Journal of Open Source Software, 2019
* [Complete Enumeration of Pure-Level and Mixed-Level Orthogonal Arrays](https://doi.org/10.1002/jcd.20236), E.D. Schoen, P.T. Eendebak, M.V.M. Nguyen, Volume 18, Issue 2, pages 123-140, 2010
* [Two-Level Designs to Estimate All Main Effects and Two-Factor Interactions](https://doi.org/10.1080/00401706.2016.1142903), Pieter T. Eendebak, Eric D. Schoen, Technometrics Vol. 59 , Iss. 1, 2017
* [A classification criterion for definitive screening designs](https://projecteuclid.org/euclid.aos/1547197252), E.D. Schoen, P.T. Eendebak, P. Goos, Ann. Statist. 47, no. 2, 2019.

The code was written by:

* Pieter Eendebak <pieter.eendebak@gmail.com>
* Alan Vazquez-Alcocer
* Vincent Brouerius van Nidek

Ideas contributed by:

* Eric Schoen <eric.schoen@tno.nl>
* Alan Vazquez-Alcocer <alanrvazquez@gmail.com>

See the file LICENSE for copyright details.

Installation
------------

[![PyPI version](https://badge.fury.io/py/OApackage.svg)](https://badge.fury.io/py/OApackage)
[![Build status](https://ci.appveyor.com/api/projects/status/f6ia9br95soimf9u/branch/master?svg=true)](https://ci.appveyor.com/project/eendebakpt/oapackage-4lws8)
[![Build Status](https://travis-ci.org/eendebakpt/oapackage.svg?branch=master)](https://travis-ci.org/eendebakpt/oapackage)
[![Documentation Status](https://readthedocs.org/projects/oapackage/badge/?version=latest)](https://oapackage.readthedocs.io/en/latest/?badge=latest)

The Python interface to the package is available on the [Python Package index](https://pypi.python.org/pypi/OApackage/).
Installation can be done using the following command:
``` console
$ pip install OApackage
```
(or `pip install OApackage --user` if you do not have admin rights). To compile the package you need Python, Numpy and Swig 3.x.

The command line tools have been tested using Linux, Windows Win7/Win10 and Raspberry Pi.
The program uses a `cmake` build system. From the command line type:
```
$ mkdir -p build; cd build
$ cmake ..
$ make
$ make install
````

Contributing, unit testing and support
--------------------------------------

See the file [CONTRIBUTING.md](https://github.com/eendebakpt/oapackage/blob/master/CONTRIBUTING.md) on GitHub.



            

Raw data

            {
    "_id": null,
    "home_page": "http://www.pietereendebak.nl/oapackage/index.html",
    "name": "OApackage",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "orthogonal arrays, design of experiments, conference designs, isomorphism testing",
    "author": "Pieter Eendebak",
    "author_email": "pieter.eendebak@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/42/46/f7d7ec3e3bc3fdbf6631152d3ceb46e9c789fd63b07b1226cd388c5fafe9/OApackage-2.7.13.tar.gz",
    "platform": null,
    "description": "Orthogonal Array Package\r\n========================\r\n\r\nThe Orthogonal Array package contains functionality to generate and analyse orthogonal arrays, optimal designs and conference designs.\r\nFeatures include generation of complete series of orthogonal arrays,\r\nreduction of arrays to normal form and calculation of properties such as the strength or D-efficiency of an array.\r\nFor more information about the package see the\r\ndocumentation at [oapackage.readthedocs.io](https://oapackage.readthedocs.io/en/latest/). A large collection of results generated\r\nwith the package can be found at <http://pietereendebak.nl/oapackage/>.\r\n\r\nUsage\r\n-------\r\n\r\nThe package can be used from Python:\r\n``` python\r\n>>> import oapackage\r\n>>> al=oapackage.exampleArray(0)\r\n>>> al.showarraycompact()\r\n00\r\n00\r\n01\r\n01\r\n10\r\n10\r\n11\r\n11\r\n>>> print('D-efficiency %f, rank %d' % (al.Defficiency(), al.rank()) )\r\nD-efficiency 1.000000, rank 2\r\n>>> print('Generalized wordlength pattern: %s' % str(al.GWLP()))\r\nGeneralized wordlength pattern: (1.0, 0.0, 0.0)\r\n```\r\n\r\nFor more examples see the Jupyter notebooks in the\r\n[docs/examples](docs/examples/).\r\n\r\nAcknowledgements\r\n----------------\r\n\r\nIf you use this code or any of the results, please cite this program as follows:\r\n\r\n* [OApackage: A Python package for generation and analysis of orthogonal arrays, optimal designs and conference designs](https://doi.org/10.21105/joss.01097), P.T. Eendebak, A.R. Vazquez, Journal of Open Source Software, 2019\r\n* [Complete Enumeration of Pure-Level and Mixed-Level Orthogonal Arrays](https://doi.org/10.1002/jcd.20236), E.D. Schoen, P.T. Eendebak, M.V.M. Nguyen, Volume 18, Issue 2, pages 123-140, 2010\r\n* [Two-Level Designs to Estimate All Main Effects and Two-Factor Interactions](https://doi.org/10.1080/00401706.2016.1142903), Pieter T. Eendebak, Eric D. Schoen, Technometrics Vol. 59 , Iss. 1, 2017\r\n* [A classification criterion for definitive screening designs](https://projecteuclid.org/euclid.aos/1547197252), E.D. Schoen, P.T. Eendebak, P. Goos, Ann. Statist. 47, no. 2, 2019.\r\n\r\nThe code was written by:\r\n\r\n* Pieter Eendebak <pieter.eendebak@gmail.com>\r\n* Alan Vazquez-Alcocer\r\n* Vincent Brouerius van Nidek\r\n\r\nIdeas contributed by:\r\n\r\n* Eric Schoen <eric.schoen@tno.nl>\r\n* Alan Vazquez-Alcocer <alanrvazquez@gmail.com>\r\n\r\nSee the file LICENSE for copyright details.\r\n\r\nInstallation\r\n------------\r\n\r\n[![PyPI version](https://badge.fury.io/py/OApackage.svg)](https://badge.fury.io/py/OApackage)\r\n[![Build status](https://ci.appveyor.com/api/projects/status/f6ia9br95soimf9u/branch/master?svg=true)](https://ci.appveyor.com/project/eendebakpt/oapackage-4lws8)\r\n[![Build Status](https://travis-ci.org/eendebakpt/oapackage.svg?branch=master)](https://travis-ci.org/eendebakpt/oapackage)\r\n[![Documentation Status](https://readthedocs.org/projects/oapackage/badge/?version=latest)](https://oapackage.readthedocs.io/en/latest/?badge=latest)\r\n\r\nThe Python interface to the package is available on the [Python Package index](https://pypi.python.org/pypi/OApackage/).\r\nInstallation can be done using the following command:\r\n``` console\r\n$ pip install OApackage\r\n```\r\n(or `pip install OApackage --user` if you do not have admin rights). To compile the package you need Python, Numpy and Swig 3.x.\r\n\r\nThe command line tools have been tested using Linux, Windows Win7/Win10 and Raspberry Pi.\r\nThe program uses a `cmake` build system. From the command line type:\r\n```\r\n$ mkdir -p build; cd build\r\n$ cmake ..\r\n$ make\r\n$ make install\r\n````\r\n\r\nContributing, unit testing and support\r\n--------------------------------------\r\n\r\nSee the file [CONTRIBUTING.md](https://github.com/eendebakpt/oapackage/blob/master/CONTRIBUTING.md) on GitHub.\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Package to generate and analyse orthogonal arrays, conference designs and optimal designs",
    "version": "2.7.13",
    "project_urls": {
        "Homepage": "http://www.pietereendebak.nl/oapackage/index.html"
    },
    "split_keywords": [
        "orthogonal arrays",
        " design of experiments",
        " conference designs",
        " isomorphism testing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a34d65f0260eeefaf355d65a928fa28ab8b42ef64e38aaff28b32620462e332",
                "md5": "9481d73a37a7fed49be99ae01799671d",
                "sha256": "a6678ed06a08c2b18e12f3b3e1b9e7ee59705d68ea1db81331c279d52a89878d"
            },
            "downloads": -1,
            "filename": "OApackage-2.7.13-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9481d73a37a7fed49be99ae01799671d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1467809,
            "upload_time": "2023-11-06T09:13:44",
            "upload_time_iso_8601": "2023-11-06T09:13:44.779930Z",
            "url": "https://files.pythonhosted.org/packages/7a/34/d65f0260eeefaf355d65a928fa28ab8b42ef64e38aaff28b32620462e332/OApackage-2.7.13-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5e1739df33ba8d3187eb328fb93e8063ecc9837e66ededde3afe1a95c3b6c6f",
                "md5": "8f265a803cf04b8cbfe06e5a11578e0f",
                "sha256": "6cafff448cf732f9b9b6c25dfdd1384db2101ca3f1b3902a8fbdf539c305ab54"
            },
            "downloads": -1,
            "filename": "OApackage-2.7.13-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8f265a803cf04b8cbfe06e5a11578e0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1386049,
            "upload_time": "2023-11-06T09:13:47",
            "upload_time_iso_8601": "2023-11-06T09:13:47.185854Z",
            "url": "https://files.pythonhosted.org/packages/c5/e1/739df33ba8d3187eb328fb93e8063ecc9837e66ededde3afe1a95c3b6c6f/OApackage-2.7.13-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f65db753a0a5994c17bb4ec7042f19da19030a9bc98a6cc32091bf53147eb7c",
                "md5": "a8b337dc0374b6db3764942440df1871",
                "sha256": "feea0366895c378e1debd805c0512beef8d6f7a5bfddbfae976bec5c8b339602"
            },
            "downloads": -1,
            "filename": "OApackage-2.7.13-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a8b337dc0374b6db3764942440df1871",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1388614,
            "upload_time": "2023-11-06T09:13:49",
            "upload_time_iso_8601": "2023-11-06T09:13:49.307895Z",
            "url": "https://files.pythonhosted.org/packages/8f/65/db753a0a5994c17bb4ec7042f19da19030a9bc98a6cc32091bf53147eb7c/OApackage-2.7.13-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab2a4405e4407577470f28e2674554339a2677bfc6115cbd2d691b335f41c556",
                "md5": "945c471836225783c5d6f55c61e1c4e3",
                "sha256": "0851116351f214a3b50ff2a08cb4c55d4c66da61673e5c0f67945e7a27f8c38e"
            },
            "downloads": -1,
            "filename": "OApackage-2.7.13-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "945c471836225783c5d6f55c61e1c4e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1467483,
            "upload_time": "2023-11-06T09:13:51",
            "upload_time_iso_8601": "2023-11-06T09:13:51.602401Z",
            "url": "https://files.pythonhosted.org/packages/ab/2a/4405e4407577470f28e2674554339a2677bfc6115cbd2d691b335f41c556/OApackage-2.7.13-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dbcfde94e0be6740848bc8d6dab095d500fb59c856231d97d4b5e447bf13474",
                "md5": "e1da2382a8f5ae845e72ccc579d8dd2b",
                "sha256": "9ad21d56e002ad85d3d24bd2ac1c1d151c26f74b034a353dc495616b82317bb7"
            },
            "downloads": -1,
            "filename": "OApackage-2.7.13-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e1da2382a8f5ae845e72ccc579d8dd2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1467819,
            "upload_time": "2023-11-06T09:13:53",
            "upload_time_iso_8601": "2023-11-06T09:13:53.892873Z",
            "url": "https://files.pythonhosted.org/packages/0d/bc/fde94e0be6740848bc8d6dab095d500fb59c856231d97d4b5e447bf13474/OApackage-2.7.13-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4246f7d7ec3e3bc3fdbf6631152d3ceb46e9c789fd63b07b1226cd388c5fafe9",
                "md5": "0cd518c723b84faf844ed15af53a1b05",
                "sha256": "c7ada7679358113beff12284afaded702588da1e86c86dbfbe0231e1f460635f"
            },
            "downloads": -1,
            "filename": "OApackage-2.7.13.tar.gz",
            "has_sig": false,
            "md5_digest": "0cd518c723b84faf844ed15af53a1b05",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1238546,
            "upload_time": "2023-11-06T09:13:55",
            "upload_time_iso_8601": "2023-11-06T09:13:55.610666Z",
            "url": "https://files.pythonhosted.org/packages/42/46/f7d7ec3e3bc3fdbf6631152d3ceb46e9c789fd63b07b1226cd388c5fafe9/OApackage-2.7.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-06 09:13:55",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "oapackage"
}
        
Elapsed time: 0.17003s