Panel.clip()
is used to trim values at the input threshold. Thresholds can be single or massive.
Syntax: Panel.clip (lower = None, upper = None, axis = None, inplace = False, * args, ** kwargs)
Parameters: Parameters:
lower: Minimum threshold value. All values below this threshold will be set to it.
upper: Maximum threshold value. All values above this threshold will be set to it.
axis: Align object with lower and upper along the given axis.
inplace: Whether to perform the operation in place on the data.Returns: [Series or DataFrame] Same type as calling object with the values outside the clip boundaries replaced.
Code # 1: Create a panel with from_dict ()
|
Output:
Code # 2: Using the clip () function
|
Output:
Code # 3: Using the clip () function
|
Output: