File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ implemented within pandas.
32
32
arr = pd.array([1 , 2 , None ], dtype = pd.Int64Dtype())
33
33
arr
34
34
35
- Or the string alias ``"Int64" `` (note the capital ``"I" ``, to differentiate from
35
+ Or the string alias ``"Int64" `` (note the capital ``"I" ``) to differentiate from
36
36
NumPy's ``'int64' `` dtype:
37
37
38
38
.. ipython :: python
@@ -67,7 +67,7 @@ with the dtype.
67
67
pd.array([1 , 2 ])
68
68
69
69
For backwards-compatibility, :class: `Series ` infers these as either
70
- integer or float dtype
70
+ integer or float dtype.
71
71
72
72
.. ipython :: python
73
73
@@ -101,7 +101,7 @@ dtype if needed.
101
101
# comparison
102
102
s == 1
103
103
104
- # indexing
104
+ # slicing operation
105
105
s.iloc[1 :3 ]
106
106
107
107
# operate with other dtypes
@@ -110,7 +110,7 @@ dtype if needed.
110
110
# coerce when needed
111
111
s + 0.01
112
112
113
- These dtypes can operate as part of ``DataFrame ``.
113
+ These dtypes can operate as part of a ``DataFrame ``.
114
114
115
115
.. ipython :: python
116
116
@@ -119,7 +119,7 @@ These dtypes can operate as part of ``DataFrame``.
119
119
df.dtypes
120
120
121
121
122
- These dtypes can be merged & reshaped & casted.
122
+ These dtypes can be merged, reshaped & casted.
123
123
124
124
.. ipython :: python
125
125
You can’t perform that action at this time.
0 commit comments