Skip to content

Commit b148db7

Browse files
hutch3232pmhatre1
authored andcommitted
DOC: fix minor typos and grammar missing_data.rst (pandas-dev#57929)
fix minor typos and grammar missing_data.rst
1 parent 5ac1215 commit b148db7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/source/user_guide/missing_data.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ To detect these missing value, use the :func:`isna` or :func:`notna` methods.
8888

8989
.. warning::
9090

91-
Experimental: the behaviour of :class:`NA`` can still change without warning.
91+
Experimental: the behaviour of :class:`NA` can still change without warning.
9292

9393
Starting from pandas 1.0, an experimental :class:`NA` value (singleton) is
9494
available to represent scalar missing values. The goal of :class:`NA` is provide a
@@ -105,7 +105,7 @@ dtype, it will use :class:`NA`:
105105
s[2]
106106
s[2] is pd.NA
107107
108-
Currently, pandas does not yet use those data types using :class:`NA` by default
108+
Currently, pandas does not use those data types using :class:`NA` by default in
109109
a :class:`DataFrame` or :class:`Series`, so you need to specify
110110
the dtype explicitly. An easy way to convert to those dtypes is explained in the
111111
:ref:`conversion section <missing_data.NA.conversion>`.
@@ -253,8 +253,8 @@ Conversion
253253
^^^^^^^^^^
254254

255255
If you have a :class:`DataFrame` or :class:`Series` using ``np.nan``,
256-
:meth:`Series.convert_dtypes` and :meth:`DataFrame.convert_dtypes`
257-
in :class:`DataFrame` that can convert data to use the data types that use :class:`NA`
256+
:meth:`DataFrame.convert_dtypes` and :meth:`Series.convert_dtypes`, respectively,
257+
will convert your data to use the nullable data types supporting :class:`NA`,
258258
such as :class:`Int64Dtype` or :class:`ArrowDtype`. This is especially helpful after reading
259259
in data sets from IO methods where data types were inferred.
260260

0 commit comments

Comments
 (0)