File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -953,12 +953,12 @@ DataFrame to construct a MultiIndex automatically:
953
953
df
954
954
955
955
All of the ``MultiIndex `` constructors accept a ``names `` argument which stores
956
- string names for the levels themselves. If no names are provided, some
957
- arbitrary ones will be assigned:
956
+ string names for the levels themselves. If no names are provided, `` None `` will
957
+ be assigned:
958
958
959
959
.. ipython :: python
960
960
961
- index.names
961
+ df. index.names
962
962
963
963
This index can back any axis of a pandas object, and the number of **levels **
964
964
of the index is up to you:
Original file line number Diff line number Diff line change @@ -425,7 +425,7 @@ class Series(pa.Array, generic.PandasObject):
425
425
dict.
426
426
dtype : numpy.dtype or None
427
427
If None, dtype will be inferred
428
- copy : boolean, default False, copyinput data
428
+ copy : boolean, default False, copy input data
429
429
"""
430
430
_AXIS_NUMBERS = {
431
431
'index' : 0
You can’t perform that action at this time.
0 commit comments