Skip to content

Commit

Permalink
Merge pull request #466 from GavinHuttley/develop
Browse files Browse the repository at this point in the history
DOC: updated docs to remove all refs to LoadTable etc..
  • Loading branch information
GavinHuttley committed Jan 6, 2020
2 parents 1f8bab0 + 7b9e890 commit 08c578f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/cookbook/tables.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Tabular data
Loading delimited formats
^^^^^^^^^^^^^^^^^^^^^^^^^

We load a comma separated data file using the generic ``LoadTable`` function.
We load a comma separated data file using the generic ``load_table`` function.

.. doctest::

Expand All @@ -39,7 +39,7 @@ We load a comma separated data file using the generic ``LoadTable`` function.
Reading large files
^^^^^^^^^^^^^^^^^^^

For really large files the automated conversion used by the standard read mechanism can be quite slow. If the data within a column is consistently of one type, set the ``LoadTable`` argument ``static_column_types=True``. This causes the ``Table`` object to create a custom reader.
For really large files the automated conversion used by the standard read mechanism can be quite slow. If the data within a column is consistently of one type, set the ``load_table`` argument ``static_column_types=True``. This causes the ``Table`` object to create a custom reader.

.. doctest::

Expand Down
2 changes: 1 addition & 1 deletion doc/examples/handling_tabular_data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2006,7 +2006,7 @@ Tables can be transposed.

.. doctest::

>>> from cogent3 import LoadTable
>>> from cogent3 import make_table
>>> title='#Full OTU Counts'
>>> header = ['#OTU ID', '14SK041', '14SK802']
>>> rows = [[-2920, '332', 294],
Expand Down

0 comments on commit 08c578f

Please sign in to comment.