8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b42f8 commit 8ec2f1aCopy full SHA for 8ec2f1a
pandas/core/strings.py
@@ -52,7 +52,7 @@ def _get_array_list(arr, others, align=True):
52
arr, others = arr.align(others, join='left')
53
arrays = [list(arr), list(others)]
54
elif len(others) and isinstance(com._values_from_object(others)[0],
55
- (list, np.ndarray, Series)):
+ (list, np.ndarray, Series)):
56
arrays = [arr] + list(others)
57
else:
58
arrays = [arr, others]
@@ -78,6 +78,11 @@ def str_cat(arr, others=None, sep=None, na_rep=None, align=None):
78
If None, concatenates without any separator.
79
na_rep : string or None, default None
80
If None, NA in the series are ignored.
81
+ align : bool or None, default None
82
+ If used between two Series, determines whether they are aligned
83
+ before concatenation. Currently, None is interpreted as False
84
+ but raises a UserWarning. In a future version of pandas, this
85
+ default of align will change to True.
86
87
Returns
88
-------
0 commit comments