From 9b0f9bdc109b274a51fe0e27d3d35c470defb0e5 Mon Sep 17 00:00:00 2001 From: d33bs Date: Fri, 12 Jan 2024 15:25:00 -0700 Subject: [PATCH] move links around for readability --- docs/source/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/overview.md b/docs/source/overview.md index 87df6119..cbc37cff 100644 --- a/docs/source/overview.md +++ b/docs/source/overview.md @@ -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() `). -Parquet "datasets" (for example, see `PyArrow documentation `_ or `Pandas documentation `_ 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 `_ or `Pandas documentation `_ on using source paths which are directories). ``` ### Data Concatenations