Consider the following code in the colab environment PYTHON 1 import matplotlib.pyplot as plt 2 x = [3,-2,5,6] 3 y = [1,

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

Consider the following code in the colab environment PYTHON 1 import matplotlib.pyplot as plt 2 x = [3,-2,5,6] 3 y = [1,

Post by answerhappygod »

Consider The Following Code In The Colab Environment Python 1 Import Matplotlib Pyplot As Plt 2 X 3 2 5 6 3 Y 1 1
Consider The Following Code In The Colab Environment Python 1 Import Matplotlib Pyplot As Plt 2 X 3 2 5 6 3 Y 1 1 (36.74 KiB) Viewed 49 times
Consider the following code in the colab environment PYTHON 1 import matplotlib.pyplot as plt 2 x = [3,-2,5,6] 3 y = [1,6,7,5] 4 fig, ax = plt.subplots() 5 ax.plot(x,y) 6 plt.show() Select all possible code lines that can change to remove the solid lines between the four points, and just draw the points? line 5: ax.scatter(x,y) line 5: ax.plot(x, y, "o") line 5: ax.bar(x,y) line 5: ax.subplot(x,y)
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply