You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/about.rst
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,14 @@ About
7
7
8
8
Authors
9
9
--------
10
-
`dabest` is written in Python by `Joses W. Ho <https://twitter.com/jacuzzijo>`_, with design and input from `Adam Claridge-Chang <https://twitter.com/adamcchang>`_ and other lab members.
10
+
DABEST is written in Python by `Joses W. Ho <https://twitter.com/jacuzzijo>`_, with design and input from `Adam Claridge-Chang <https://twitter.com/adamcchang>`_ and other lab members.
11
11
12
12
To find out more about the authors’ research, please visit the `Claridge-Chang lab webpage <http://www.claridgechang.net/>`_.
13
13
14
14
Contributors
15
15
------------
16
16
17
-
- Mason Malone (`@MasonM <https://github.com/MasonM>`_) with `PR #30 <https://github.com/ACCLAB/DABEST-python/pull/30>`_: Fix plot error when effect size is 0
17
+
- Mason Malone (`@MasonM <https://github.com/MasonM>`_) with `PR #30 <https://github.com/ACCLAB/DABEST-python/pull/30>`_: Fix plot error when effect size is 0.
18
18
19
19
- Matthew Edwards (`@mje-nz <https://github.com/mje-nz>`_) with `PR #71 <https://github.com/ACCLAB/DABEST-python/pull/30>`_: Specify dependencies correctly in ``setup.py``.
20
20
@@ -29,7 +29,7 @@ This documentation uses `Spectral <https://spectral.prototypo.io/>`_ for the bod
29
29
License
30
30
-------
31
31
32
-
The `dabest` package in Python is licenced under the `BSD 3-clause Clear License <https://choosealicense.com/licenses/bsd-3-clause-clear/>`_.
32
+
The DABEST package in Python is licenced under the `BSD 3-clause Clear License <https://choosealicense.com/licenses/bsd-3-clause-clear/>`_.
Copy file name to clipboardExpand all lines: docs/source/getting-started.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Getting Started
8
8
Requirements
9
9
------------
10
10
11
-
Python 3.7 is strongly recommended. ``dabest`` has also been tested with Python 3.5 and 3.6.
11
+
Python 3.7 is strongly recommended. DABEST has also been tested with Python 3.5 and 3.6.
12
12
13
13
In addition, the following packages are also required:
14
14
@@ -47,7 +47,7 @@ Then, navigate to the cloned repo in the command line and run
47
47
Testing
48
48
-------
49
49
50
-
To test ``dabest``, you will need to install `pytest <https://docs.pytest.org/en/latest/>`_.
50
+
To test DABEST, you will need to install `pytest <https://docs.pytest.org/en/latest/>`_.
51
51
52
52
Run ``pytest`` in the root directory of the source distribution. This runs the test suite in ``dabest/tests`` folder. The test suite will ensure that the bootstrapping functions and the plotting functions perform as expected.
This creates a ``dabest`` object with effect sizes as instances.
72
+
This creates a :py:class:`Dabest` object with effect sizes as instances.
73
73
74
74
.. code-block:: python
75
75
:linenos:
@@ -123,14 +123,14 @@ v0.1.6
123
123
124
124
Several keywords have been added to allow more fine-grained control over a selection of plot elements.
125
125
126
-
* `swarm_dotsize`
127
-
* `difference_dotsize`
128
-
* `ci_linewidth`
129
-
* `summary_linewidth`
126
+
* ``swarm_dotsize``
127
+
* ``difference_dotsize``
128
+
* ``ci_linewidth``
129
+
* ``summary_linewidth``
130
130
131
-
The new keyword `context` allows you to set the plotting context as defined by seaborn's `plotting_context() <https://seaborn.pydata.org/generated/seaborn.plotting_context.html>`_ .
131
+
The new keyword ``context`` allows you to set the plotting context as defined by seaborn's `plotting_context() <https://seaborn.pydata.org/generated/seaborn.plotting_context.html>`_ .
132
132
133
-
Now, if `paired=True`, you will need to supply an `id_col`, which is a column in the DataFrame which specifies which sample the datapoint belongs to. See the :doc:`tutorial` for more details.
133
+
Now, if ``paired=True``, you will need to supply an ``id_col``, which is a column in the DataFrame which specifies which sample the datapoint belongs to. See the :doc:`tutorial` for more details.
134
134
135
135
136
136
v0.1.5
@@ -149,7 +149,7 @@ Update dependencies to
149
149
150
150
Aesthetic changes
151
151
152
-
* add `tick_length` and `tick_pad` arguments to allow tweaking of the axes tick lengths, and padding of the tick labels, respectively.
152
+
* add ``tick_length`` and ``tick_pad`` arguments to allow tweaking of the axes tick lengths, and padding of the tick labels, respectively.
153
153
154
154
155
155
v0.1.3
@@ -160,7 +160,7 @@ Update dependencies to
160
160
161
161
Bugfixes
162
162
163
-
* fix bug that did not label `swarm_label` if raw data was in tidy form
163
+
* fix bug that did not label ``swarm_label`` if raw data was in tidy form
0 commit comments