Colin Ross wrote:
> Hi all,
>
> Goal: To plot asymmetric x error bars for a single point using errorbar. I
> am interested in displaying the inter quartile range (IQR) for a data set.
>
> Code:
>
> import numpy as np
> import matplotlib.pyplot as plt
>
> y = 1.0
> data = np.random.rand(100)
>
Hi all,
Goal: To plot asymmetric x error bars for a single point using errorbar. I
am interested in displaying the inter quartile range (IQR) for a data set.
Code:
import numpy as np
import matplotlib.pyplot as plt
y = 1.0
data = np.random.rand(100)
median = np.median(data)
upper_quartile = np