0% found this document useful (0 votes)
9 views1 page

Plotting Data with Matplotlib

Uploaded by

sreekala g
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views1 page

Plotting Data with Matplotlib

Uploaded by

sreekala g
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

imimport matplotlib.

pyplot as plt

data = """

x = []

y = []

for line in [Link]().split("\n"):

a, b = [Link]()

[Link](float(a))

[Link](float(b))

print("x =", x)

print("y =", y)

import [Link] as plt

[Link](x, y, marker='o')

[Link]("X")

[Link]("Y")

[Link]("Plot from column data")

[Link]()

You might also like