Untitled
unknown
plain_text
a year ago
341 B
9
Indexable
import matplotlib.pyplot as plt
data = [565, 575, 562, 582, 598, 555, 557, 577, 544, 548, 588, 580, 552, 554, 555]
# Define bin edges
bins = [540, 549, 559, 569, 579, 589, 599]
plt.hist(data, bins=bins, edgecolor='black')
plt.xlabel('Amount (grams)')
plt.ylabel('Frequency')
plt.title('Histogram of Purified Antibody Amounts')
plt.show()
Editor is loading...
Leave a Comment