pandas.Series.drop(index) | Drops the element positioned at the given index(es) |
pandas.DataFrame.drop(labels) | Drop specified labels (entire columns or rows) from the dataframe. |
pandas.DataFrame.pop(item) | Return the item and drop it from the frame. If not found, then raise a KeyError. |
pandas.DataFrame.insert(location, column, values) | Insert column having given values into DataFrame at specified location. |
pandas.DataFrame.rename(dictionary-like) | Rename label(s) (columns or row-indexes) as mentioned in the dictionary-like |
pandas.DataFrame.set_index(keys) | Set the DataFrame’s row-indexes using existing column-values. |
pandas.DataFrame.dropna(axis) | Remove rows (if axis=0) or columns (if axis=1) that contain missing values. |
pandas.DataFrame.fillna(value, method, axis) | Replace NaN values with the specified value along the given axis, and using the given method (‘backfill’, ‘bfill’, ‘pad’, ‘ffill’, None) |
pandas.DataFrame.interpolate(method, axis) | Replace the NaN values with the estimated value calculated using the given method along the given axis. |