From 6160f68066d5ece156f08fe35c24dbfac8c606b7 Mon Sep 17 00:00:00 2001 From: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com> Date: Sun, 3 Mar 2024 18:02:55 +0000 Subject: [PATCH] reduce --- docs/user-guide/concepts/expressions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/concepts/expressions.md b/docs/user-guide/concepts/expressions.md index fa3503aa314e..9b857bb90aa0 100644 --- a/docs/user-guide/concepts/expressions.md +++ b/docs/user-guide/concepts/expressions.md @@ -22,9 +22,9 @@ Polars performs these core data transformations very quickly by: - automatic parallelization of expressions on many columns An expression is a tree of operations that describe how to construct one or more -Series. As the output is one or more Series, it is straightforward to +Series. As the outputs are Series, it is straightforward to apply a sequence of expressions (similar to method chaining in pandas) each of which -transforms the output Series from the previous step. +transforms the output from the previous step. If this seems abstract and confusing - don't worry! People quickly develop an intuition for expressions just by looking at a few examples. We'll do that next!