diya7
March 26, 2024, 10:21am
1
C2W3
Programming assignment lab, I mistakenly edit an ungraded cell, and I can’t edit it back to it was, thus my graded showing error.
Lab link:
Learn online and earn valuable credentials from top universities like Yale, Michigan, Stanford, and leading companies like Google and IBM. Join Coursera for free and transform your career with degrees, certificates, Specializations, & MOOCs in...
Problem cell:
fig, ax = plt.subplots(1,1,figsize=(4,4))
ax.plot(x_ideal, y_ideal, “–”, color = “orangered”, label=“y_ideal”, lw=1)
ax.set_title(“Training, Test”,fontsize = 14)
ax.set_xlabel(“x”)%%!
ax.set_ylabel(“y”)
ax.scatter(X_train, y_train, color = “red”, label=“train”)
ax.scatter(X_test, y_test, color = dlc[“dlblue”], label=“test”)
ax.legend(loc=‘upper left’)
plt.show()
In 4th line of code I don’t know how those percentage sign got added.
I am unable to get grades. Please help
1 Like
Hello @diya7 ,
There are two approaches:
You may get a new copy of the whole lab with these steps .
You may scroll to the bottom of the lab, click " Please click here if you want to experiment with any of the non-graded code. " and find the instructions for unlocking an ungraded cell. After unlocked, you may edit it.
Cheers,
Raymond
2 Likes
diya7
March 26, 2024, 10:41am
3
Thank You so much Raymond for the immediate assistance.
2 Likes