Skip to content

Commit

Permalink
move links around for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
d33bs committed Jan 12, 2024
1 parent 60c34f1 commit 9b0f9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ _Example of data chunking performed on a simple table of data._
Data chunking within CytoTable involves slicing data sources into "chunks" of rows which all contain the same columns and have a lower number of rows than the original data source.
CytoTable uses data chunking to reduce the memory footprint of operations on subsets of data.
CytoTable may be used to create chunked data output by disabling concatenation and joins, e.g. :code:`convert(..., concat=False,join=False, ...)` (:mod:`convert() <cytotable.convert.convert>`).
Parquet "datasets" (for example, see `PyArrow documentation <https://arrow.apache.org/docs/python/generated/pyarrow.parquet.ParquetDataset.html>`_ or `Pandas documentation <https://pandas.pydata.org/docs/reference/api/pandas.read_parquet.html>`_ on using source paths which are directories) are an abstraction which may be used to read CytoTable output data chunks which are not concatenated or joined.
Parquet "datasets" are an abstraction which may be used to read CytoTable output data chunks which are not concatenated or joined (for example, see `PyArrow documentation <https://arrow.apache.org/docs/python/generated/pyarrow.parquet.ParquetDataset.html>`_ or `Pandas documentation <https://pandas.pydata.org/docs/reference/api/pandas.read_parquet.html>`_ on using source paths which are directories).
```

### Data Concatenations
Expand Down

0 comments on commit 9b0f9bd

Please sign in to comment.