pandas.Panel.update — pandas 0.24.0rc1 documentation (original) (raw)
other : Panel, or object coercible to Panel
The object from which the caller will be udpated.
join : {‘left’, ‘right’, ‘outer’, ‘inner’}, default ‘left’
How individual DataFrames are joined.
overwrite : bool, default True
If True then overwrite values for common keys in the calling Panel.
filter_func : callable(1d-array) -> 1d-array, default None
Can choose to replace values other than NA. Return True for values that should be updated.
errors : {‘raise’, ‘ignore’}, default ‘ignore’
If ‘raise’, will raise an error if a DataFrame and other both.
Changed in version 0.24.0: Changed from raise_conflict=False|Trueto errors=’ignore’|’raise’.