Untitled

mail@pastecode.io avatar
unknown
plain_text
5 days ago
341 B
2
Indexable
Never
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()
Leave a Comment