@@ -36,7 +36,7 @@ When / why does data become missing?
3636~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3737
3838Some might quibble over our usage of *missing *. By "missing" we simply mean
39- **na ** or "not present for whatever reason". Many data sets simply arrive with
39+ **NA ** or "not present for whatever reason". Many data sets simply arrive with
4040missing data, either because it exists and was not collected or it never
4141existed. For example, in a collection of financial time series, some of the time
4242series might start on different dates. Thus, values prior to the start date
@@ -63,12 +63,12 @@ to handling missing data. While ``NaN`` is the default missing value marker for
6363reasons of computational speed and convenience, we need to be able to easily
6464detect this value with data of different types: floating point, integer,
6565boolean, and general object. In many cases, however, the Python ``None `` will
66- arise and we wish to also consider that "missing" or "na ".
66+ arise and we wish to also consider that "missing" or "not available" or "NA ".
6767
6868.. note ::
6969
7070 Prior to version v0.10.0 ``inf `` and ``-inf `` were also
71- considered to be "na " in computations. This is no longer the case by
71+ considered to be "NA " in computations. This is no longer the case by
7272 default; use the ``mode.use_inf_as_na `` option to recover it.
7373
7474.. _missing.isna :
@@ -206,7 +206,7 @@ with missing data.
206206Filling missing values: fillna
207207~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
208208
209- The **fillna ** function can "fill in" NA values with non-na data in a couple
209+ The **fillna ** function can "fill in" NA values with non-NA data in a couple
210210of ways, which we illustrate:
211211
212212**Replace NA with a scalar value **
@@ -220,7 +220,7 @@ of ways, which we illustrate:
220220 **Fill gaps forward or backward **
221221
222222Using the same filling arguments as :ref: `reindexing <basics.reindexing >`, we
223- can propagate non-na values forward or backward:
223+ can propagate non-NA values forward or backward:
224224
225225.. ipython :: python
226226
@@ -540,7 +540,7 @@ String/Regular Expression Replacement
540540 <http://docs.python.org/2/reference/lexical_analysis.html#string-literals> `__
541541 if this is unclear.
542542
543- Replace the '.' with ``nan `` (str -> str)
543+ Replace the '.' with ``NaN `` (str -> str)
544544
545545.. ipython :: python
546546
0 commit comments