Skip to content

Commit ddf0cd2

Browse files
committed
standardize references to DABEST
1 parent 62b1527 commit ddf0cd2

4 files changed

Lines changed: 23 additions & 23 deletions

File tree

docs/source/about.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ About
77

88
Authors
99
--------
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.
1111

1212
To find out more about the authors’ research, please visit the `Claridge-Chang lab webpage <http://www.claridgechang.net/>`_.
1313

1414
Contributors
1515
------------
1616

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.
1818

1919
- 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``.
2020

@@ -29,7 +29,7 @@ This documentation uses `Spectral <https://spectral.prototypo.io/>`_ for the bod
2929
License
3030
-------
3131

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/>`_.
3333

3434
Copyright (c) 2016-2019, Joses W. Ho
3535
All rights reserved.

docs/source/getting-started.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Getting Started
88
Requirements
99
------------
1010

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.
1212

1313
In addition, the following packages are also required:
1414

@@ -47,7 +47,7 @@ Then, navigate to the cloned repo in the command line and run
4747
Testing
4848
-------
4949

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/>`_.
5151

5252
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.
5353

docs/source/release-notes.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Now, every analysis session begins with ``dabest.load()``.
6969
7070
my_data = dabest.load(my_dataframe, idx=("Control", "Test"))
7171
72-
This creates a ``dabest`` object with effect sizes as instances.
72+
This creates a :py:class:`Dabest` object with effect sizes as instances.
7373

7474
.. code-block:: python
7575
:linenos:
@@ -123,14 +123,14 @@ v0.1.6
123123

124124
Several keywords have been added to allow more fine-grained control over a selection of plot elements.
125125

126-
* `swarm_dotsize`
127-
* `difference_dotsize`
128-
* `ci_linewidth`
129-
* `summary_linewidth`
126+
* ``swarm_dotsize``
127+
* ``difference_dotsize``
128+
* ``ci_linewidth``
129+
* ``summary_linewidth``
130130

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>`_ .
132132

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.
134134

135135

136136
v0.1.5
@@ -149,7 +149,7 @@ Update dependencies to
149149

150150
Aesthetic changes
151151

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.
153153

154154

155155
v0.1.3
@@ -160,7 +160,7 @@ Update dependencies to
160160

161161
Bugfixes
162162

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
164164
* fix bug that did not dropnans for unpaired diff
165165

166166

docs/source/tutorial.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Load Libraries
2525
Create dataset for demo
2626
-----------------------
2727

28-
Here, we create a dataset to illustrate how ``dabest`` functions. In
28+
Here, we create a dataset to illustrate how DABEST functions. In
2929
this dataset, each column corresponds to a group of observations.
3030

3131
.. code-block:: python3
@@ -207,7 +207,7 @@ list.
207207
208208
two_groups_unpaired = dabest.load(df, idx=("Control 1", "Test 1"), resamples=5000)
209209
210-
Calling this ``Dabest`` object gives you a gentle greeting, as well as
210+
Calling this :py:class:`Dabest`; object gives you a gentle greeting, as well as
211211
the comparisons that can be computed.
212212

213213
.. code-block:: python3
@@ -304,7 +304,7 @@ produced.
304304
Effect sizes
305305
------------
306306

307-
``dabest`` now features a range of effect sizes: - the mean difference
307+
DABEST now features a range of effect sizes: - the mean difference
308308
(``mean_diff``) - the median difference (``median_diff``) - `Cohen's
309309
*d* <https://en.wikipedia.org/wiki/Effect_size#Cohen's_d>`__
310310
(``cohens_d``) - `Hedges'
@@ -313,7 +313,7 @@ Effect sizes
313313
delta <https://en.wikipedia.org/wiki/Effect_size#Effect_size_for_ordinal_data>`__
314314
(``cliffs_delta``)
315315

316-
Each of these are attributes of the ``Dabest`` object.
316+
Each of these are attributes of the :py:class:`Dabest` object.
317317

318318
.. code-block:: python3
319319
:linenos:
@@ -719,7 +719,7 @@ Both Gardner-Altman and Cumming plots support this.
719719
.. image:: _images/tutorial_34_0.png
720720

721721

722-
The ``dabest`` package also implements a range of estimation plot
722+
The DABEST package also implements a range of estimation plot
723723
designs aimed at depicting common experimental designs.
724724

725725
The **multi-two-group estimation plot** tiles two or more Cumming plots
@@ -857,7 +857,7 @@ to ``idx`` has more than two data columns.
857857
.. image:: _images/tutorial_43_0.png
858858

859859

860-
``dabest`` thus empowers you to robustly perform and elegantly present
860+
DABEST thus empowers you to robustly perform and elegantly present
861861
complex visualizations and statistics.
862862

863863
.. code-block:: python3
@@ -952,7 +952,7 @@ complex visualizations and statistics.
952952
Using long (aka 'melted') data frames
953953
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
954954

955-
``dabest`` can also work with 'melted' or 'long' data. This term is
955+
DABEST can also work with 'melted' or 'long' data. This term is
956956
so used because each row will now correspond to a single datapoint, with
957957
one column carrying the value and other columns carrying 'metadata'
958958
describing that datapoint.
@@ -1240,7 +1240,7 @@ better outcome), you can simply invert the tuple passed to
12401240
You can add minor ticks and also change the tick frequency by accessing
12411241
the axes directly.
12421242

1243-
Each estimation plot produced by ``dabest`` has 2 axes. The first one
1243+
The estimation plot produced by ``dabest.plot()`` has 2 axes. The first one
12441244
contains the rawdata swarmplot; the second one contains the bootstrap
12451245
effect size differences.
12461246

@@ -1343,7 +1343,7 @@ Applying style sheets
13431343

13441344
*Implemented in v0.2.0*.
13451345

1346-
``dabest`` can now apply `matplotlib style
1346+
DABEST can now apply `matplotlib style
13471347
sheets <https://matplotlib.org/tutorials/introductory/customizing.html>`__
13481348
to estimation plots. You can refer to this
13491349
`gallery <https://matplotlib.org/3.0.3/gallery/style_sheets/style_sheets_reference.html>`__

0 commit comments

Comments
 (0)