From c5f35ae342d209be41e3657ce26d80af7eecd1f7 Mon Sep 17 00:00:00 2001 From: m_pettinato Date: Thu, 2 Aug 2018 19:54:39 +0100 Subject: [PATCH] added .join to 'see also' in cat --- pandas/core/strings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pandas/core/strings.py b/pandas/core/strings.py index 6349af4d2e0ac..0c0ddad5fb6d9 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -2063,6 +2063,7 @@ def cat(self, others=None, sep=None, na_rep=None, join=None): See Also -------- split : Split each string in the Series/Index + join : Join lists contained as elements in the Series/Index Examples --------