Source code for imputena.simple_imputation.locf

import pandas as pd


[docs]def locf(data=None, fill_leading=False, columns=None, inplace=False): """Fills in NA values with the last observation in the same column. If fill_leading is true, leading values are filled in with the first observation. The operation can be applied to a series, a whole dataframe, or a selection of columns of a dataframe. :param data: The data on which to perform the LOCF operation. :type data: pandas.Series or pandas.DataFrame :param columns: Columns on which to apply the operation. :type columns: array-like, optional :param fill_leading: Whether to fill in leading NA values with the first observation. :type fill_leading: bool, default False :param inplace: If True, do operation inplace and return None. :type inplace: bool, default False :return: The series or dataframe with NA values filled in, or None if inplace=True. :rtype: pandas.Series, pandas.DataFrame, or None :raises: TypeError, ValueError """ # Check that data is a Series or Dataframe: if not (isinstance(data, pd.Series) or isinstance(data, pd.DataFrame)): raise TypeError('The data has to be a Series or DataFrame.') # Check that each of the given columns is actually a column of data: if isinstance(data, pd.Series) and columns is not None: raise ValueError('Columns can only be selected if the data is a ' 'DataFrame.') if columns is None: # Treatment for a series or all columns of a dataframe if inplace: # Apply locf: data.fillna(method='ffill', inplace=True) # If fill_leading, apply nocb: if fill_leading: data.fillna(method='bfill', inplace=True) return None else: if fill_leading: # Apply locf, then nocb: return data.fillna(method='ffill').fillna(method='bfill') else: # Apply locf only: return data.fillna(method='ffill') else: # Treatment for selected columns of a dataframe if inplace: res = data else: res = data.copy() for column in columns: # Raise error if the column name doesn't exist in the data: if column not in data.columns: raise ValueError( '\'' + column + '\' is not a column of the data.' ) # Apply locf: res[column].fillna(method='ffill', inplace=True) # If fill_leading, apply nocb: if fill_leading: res[column].fillna(method='bfill', inplace=True) if inplace: return None else: return res